/* -------------------------------------------------
   GLOBAL STYLES
---------------------------------------------------*/
body {
  background: linear-gradient(to bottom right, #fff7f7, #ffecec, #ffffff);
  background-attachment: fixed;
  font-family: Arial, sans-serif;
  margin: 0 !important;
  padding: 0 !important;
}

/* Remove unnecessary global container spacing */
body > .container {
  padding: 0 !important;
  margin: 0 !important;
}

/* -------------------------------------------------
   NAVIGATION
---------------------------------------------------*/
.main-navbar {
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  padding: 8px 0 !important;
  margin-bottom: 0 !important;
  z-index: 9999;
}

.navbar-nav .nav-link {
  font-weight: 600;
  font-size: 1rem;
  padding: 0 1rem;
  color: #b30000 !important;
  transition: color 0.2s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: #ff4d4d !important;
}

.navbar-toggler {
  border-color: #b30000;
}

.navbar-toggler-icon {
  filter: invert(20%) sepia(70%) saturate(3000%)
          hue-rotate(350deg) brightness(90%) contrast(100%);
}

/* ------------------------------
   NAVBAR LINK HOVER & ACTIVE
------------------------------ */

.main-navbar .nav-link {
  position: relative;
  font-weight: 500;
  color: #1a1a1a;
  padding-bottom: 6px;
  transition: color 0.3s ease;
}

/* Underline animation */
.main-navbar .nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #c59d5f; /* Aduanepa gold accent */
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

/* Hover state */
.main-navbar .nav-link:hover {
  color: #c59d5f;
}

.main-navbar .nav-link:hover::after {
  width: 60%;
}

/* Active page */
.main-navbar .nav-link.active {
  color: #c59d5f;
}

.main-navbar .nav-link.active::after {
  width: 60%;
}

/* -------------------------------------------------
   HERO SECTION
---------------------------------------------------*/
.hero-section {
  min-height: 50vh; /* reduced hero height */
  background: linear-gradient(135deg, #fff7f7, #ffe5e5);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 35px 20px;
  border-bottom: 2px solid rgba(255, 120, 120, 0.2);
  margin-top: 0 !important;
}

.hero-title {
  font-size: 42px;
  font-weight: 800;
  color: #8b1e1e;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  color: #5a2a27;
  max-width: 650px;
  margin: 0 auto 30px;
  line-height: 1.6;
}

.hero-btn {
  background-color: #c0392b;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 17px;
  text-decoration: none;
  transition: 0.3s ease;
}

.hero-btn:hover {
  background-color: #8b1e1e;
  color: #fff;
}

/* -------------------------------------------------
   ABOUT SECTION
---------------------------------------------------*/
.about-section {
  padding-top: 50px !important;
  margin-top: 0 !important;
}

.section-title {
  font-size: 32px;
  color: #8b1e1e;
  font-weight: 700;
  margin-bottom: 20px;
}

.about-text {
  font-size: 16px;
  color: #5a2a27;
  line-height: 1.7;
}

/* -------------------------------------------------
   SERVICES PAGE HEADER
---------------------------------------------------*/
.page-header {
  position: relative;
  background: url('images/services-hero.jpg') center/cover no-repeat;
  padding: 100px 20px;
  text-align: center;
  color: #8b1e1e; /* darker reddish for contrast */
}

.page-header::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255, 235, 235, 0.65);
  z-index: 0;
}

.page-header h1,
.page-header p {
  position: relative;
  z-index: 1;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.page-header h1 {
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.page-header p {
  font-size: 1.2rem;
  margin-top: 15px;
}

/* -------------------------------------------------
   SERVICES CARDS
---------------------------------------------------*/
.service-card {
  border: none;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease;
  padding: 25px 15px;
  background: #fff;
  text-align: center;
  margin-bottom: 30px;
}

.service-card:hover {
  transform: translateY(-6px);
}

.service-card h4 {
  color: #c0392b;
  font-weight: 700;
  margin-top: 15px;
}

.service-card p {
  color: #5a2a27;
  margin-top: 10px;
}

.service-icon {
  font-size: 48px;
  color: #e67e22;
}

/* -------------------------------------------------
   GALLERY
---------------------------------------------------*/
.gallery-preview img {
  height: 230px;
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* -------------------------------------------------
   CALL TO ACTION
---------------------------------------------------*/
.cta-section {
  background: linear-gradient(135deg, #ffeaea, #fff);
  border-radius: 12px;
  padding: 60px 20px;
  text-align: center;
  margin-top: 60px;
}

.cta-section h2 {
  font-weight: 700;
  color: #8b1e1e;
}

.cta-section p {
  color: #5a2a27;
  margin-bottom: 20px;
}

.cta-section .btn {
  background-color: #c0392b;
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.cta-section .btn:hover {
  background-color: #8b1e1e;
  color: #fff;
}

/* -------------------------------------------------
   FOOTER
---------------------------------------------------*/
.aduanepa-footer {
  background: linear-gradient(135deg, #fdeaea, #fff5f5);
  color: #5a2a27;
  border-top: 2px solid rgba(200, 50, 50, 0.2);
  padding-top: 40px !important;
}

.footer-logo {
  width: 140px;
}

.footer-about {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 10px;
}

.footer-title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #c0392b;
}

.footer-links {
  list-style: none;
  padding-left: 0;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  text-decoration: none;
  color: #5a2a27;
  font-weight: 500;
}

.footer-links a:hover {
  color: #c0392b;
}

.footer-info {
  margin-bottom: 6px;
  font-size: 14px;
}

.footer-divider {
  border-color: rgba(0,0,0,0.1);
}

.footer-bottom-text {
  font-size: 14px;
  margin-top: 10px;
}

.footer-bottom-text a {
  color: #c0392b;
  font-weight: 600;
  text-decoration: none;
}

.footer-bottom-text a:hover {
  text-decoration: underline;
}

/* -------------------------------------------------
   GALLERY PAGE
---------------------------------------------------*/
/* ---------------------------
   GALLERY GRID
--------------------------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.gallery-item {
  overflow: hidden;
  border-radius: 12px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.3s ease;
}

.gallery-item:hover img {
  opacity: 0.85;
  transform: scale(1.03);
}

/* ---------------------------
   FILTER BUTTONS
--------------------------- */
.gallery-filter {
  text-align: center;
  margin-bottom: 30px;
}

.filter-btn {
  background: #fff;
  border: 1px solid #c0392b;
  color: #c0392b;
  padding: 8px 20px;
  margin: 5px;
  font-weight: 600;
  border-radius: 25px;
  cursor: pointer;
  transition: 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: #c0392b;
  color: #fff;
}

/* ---------------------------
   LIGHTBOX (NAVIGABLE)
--------------------------- */
#lightbox-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  opacity: 0;
  animation: fadeInOverlay 0.3s forwards;
}

#lightbox-img {
  max-width: 90%;
  max-height: 80%;
  border-radius: 12px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.8);
  transform: scale(0.8);
  transition: transform 0.3s ease, opacity 0.3s ease;
  opacity: 0;
}

#lightbox-overlay.show #lightbox-img {
  transform: scale(1);
  opacity: 1;
}

/* Close Button */
#lightbox-close {
  position: fixed;
  top: 25px;
  right: 25px;
  font-size: 45px;
  color: #fff;
  cursor: pointer;
  font-weight: 700;
  z-index: 10000;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  transition: transform 0.2s ease;
}

#lightbox-close:hover {
  transform: scale(1.2);
}

/* Navigation Arrows */
#lightbox-prev,
#lightbox-next {
  position: fixed;
  top: 50%;
  font-size: 60px;
  color: #fff;
  cursor: pointer;
  z-index: 10000;
  user-select: none;
  transform: translateY(-50%);
  text-shadow: 1px 1px 5px rgba(0,0,0,0.7);
  transition: transform 0.2s ease;
}

#lightbox-prev:hover,
#lightbox-next:hover {
  transform: translateY(-50%) scale(1.2);
}

#lightbox-prev { left: 20px; }
#lightbox-next { right: 20px; }

/* Fade-in animation */
@keyframes fadeInOverlay {
  from { opacity: 0; }
  to { opacity: 1; }
}

/* Responsive */
@media (max-width: 768px) {
  #lightbox-close {
    top: 15px;
    right: 15px;
    font-size: 35px;
  }

  #lightbox-prev,
  #lightbox-next {
    font-size: 40px;
  }

  #lightbox-img {
    max-height: 70%;
  }
}

/* Contact / Book Us Section */
.contact-section {
  background: linear-gradient(to bottom right, #fff7f7, #ffecec);
  padding: 80px 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border: 1px solid #c0392b;
  border-radius: 10px;
  font-size: 16px;
  color: #5a2a27;
}

.contact-form select {
  width: 100%;
  padding: 14px 16px;
  margin-bottom: 15px;
  border: 1px solid #c0392b;
  border-radius: 10px;
  font-size: 16px;
  color: #5a2a27;
  background-color: #fff;
}

.contact-form select:focus {
  outline: none;
  border-color: #8b1e1e;
  box-shadow: 0 0 5px rgba(139, 30, 30, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #8b1e1e;
  box-shadow: 0 0 5px rgba(139, 30, 30, 0.4);
}

.contact-form button {
  background-color: #c0392b;
  color: #fff;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 17px;
  font-weight: 600;
  transition: 0.3s ease;
}

.contact-form button:hover {
  background-color: #8b1e1e;
}

/* WhatsApp Button */
.whatsapp-btn {
  background-color: #25d366;
  color: #fff;
  font-weight: 600;
  border-radius: 30px;
  padding: 12px 28px;
  font-size: 17px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
}
.whatsapp-btn:hover {
  background-color: #1ebe5d;
  color: #fff;
  transform: translateY(-2px);
}

/* Thank You Message */
.thank-you-message {
  display: none;
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
  color: #155724;
  border-radius: 10px;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.thank-you-message.show {
  display: block;
  opacity: 1;
}




