/* ===== RESET & BASE STYLES ===== */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  box-sizing: border-box;
  background-color: #494949;
  color: #2a2c36;
  scroll-behavior: smooth;
}

*, *::before, *::after {
  box-sizing: inherit;
}

/* ===== HEADER ===== */
.site-header {
  background-color: #383b40;
  padding: 1rem 0;
  position: fixed;  /* FIXED instead of sticky */
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

/* Container */
.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  padding-bottom: 0;
}

/* Logo */
.logo-img {
  height: 160px;
  width: auto;
  position: absolute;
  bottom: -80px;
  left: 0;
  z-index: 10;
  margin: 0;
  margin-left: -100px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.4));
  transition: transform 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.05);
}

/* Navigation */
.nav ul {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
}

.nav a {
  text-decoration: none;
  color: #e3e3e3;
  font-weight: 400;
  transition: all 0.3s ease;
  font-family: 'Open Sans', sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.3px;
  align-items: right;
  border-radius: 3px;
}

.nav a:hover {
  color: #d06704;
  background-color: rgba(255, 255, 255, 0.1);
}

/* Book Now Button */
.btn-book {
  background-color: #f7f7f7;
  color: #2a2c36;
  padding: 11px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  font-family: 'Roboto', sans-serif;
  text-transform: uppercase;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.btn-book:hover {
  background-color: #eb8704;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
  color: #f3f5f9;
}

/* Mobile Header */
@media (max-width: 768px) {
  .site-header {
    padding: 0.5rem 0;
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .logo-img {
    height: 100px;
    bottom: -50px;
    margin-left: 0;
  }

  .nav ul {
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a {
    font-size: 0.9rem;
    padding: 3px 6px;
  }

  .btn-book {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}

/* Hamburger button */
.hamburger {
  display: none; 
  flex-direction: column;
  justify-content: space-between;
  width: 25px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  z-index: 1001;
}

.hamburger .bar {
  height: 3px;
  width: 100%;
  background-color: #ededed;
  border-radius: 2px;
  transition: all 0.3s ease;
  margin-left: -20px;
}

/* Mobile nav */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .nav,
  .btn-book {
    display: none;
  }

  .nav.active {
    display: block;
    position: absolute;
    top: 60px;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 1px solid #ddd;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    z-index: 1000;
  }

  .nav.active .nav-links {
    flex-direction: column;
    margin: 0;
    padding: 10px 20px;
  }

  .nav.active .nav-links li {
    margin-bottom: 15px;
  }

  .nav.active .nav-links li:last-child {
    margin-bottom: 0;
  }

  .nav.active .nav-links li a {
    font-size: 1.1rem;
    color: #333;
  }
}


/* ACTIVE PAGE */
/* Active navigation link underline */
.nav a.active {
  position: relative;
  color: #d4af37; /* optional: highlight color */
}

.nav a.active::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;  /* space below text */
  transform: translateX(-50%);
  width: 50%;    /* width of underline */
  height: 4px;   /* thickness */
  background-color: #d4af37; /* gold */
  border-radius: 5px; /* curved edges */
}



/* ===== FOOTER ===== */
.footer-section {
  position: relative;
  background-image: url('../images/bottom.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 60px 20px;
  z-index: 0;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.7);
}

.footer-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(59, 59, 68, 0.68);
  z-index: 1;
}

.footer-container {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.footer-col {
  flex: 1;
  min-width: 240px;
}

.footer-col h3 {
  margin-bottom: 15px;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
  font-size: 1.6rem ;
  color: #f7f7f7;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
  letter-spacing: -0.4px;
}

.footer-col p {
  font-size: 0.95rem;
  margin-bottom: 10px;
  color: #ddd;
  font-family: 'Inter', sans-serif;
}

.footer-logo {
  max-width: 160px;
  margin-bottom: 20px;
  margin-top: 40px;
}

.footer-form {
  margin-top: 20px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 15px;
}

.footer-form input[type="text"],
.footer-form input[type="email"] {
  flex: 1;
  padding: 10px 15px;
  border: none;
  border-radius: 5px;
  font-size: 0.95rem;
  box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.footer-form button {
  padding: 10px 30px;
  background-color: #d06704;
  border: none;
  color: #fff;
  font-weight: bold;
  border-radius: 5px;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.footer-form button:hover {
  background-color: #a94f00;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Social Icons */
.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 15px;
  justify-content: left; /* optional: center the icons */
  margin-left: 10px;
}

.social-icons a {
  color: #fff;
  font-size: 1.4rem;
  width: 50px;
  height: 50px;
  border: 2px solid #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.social-icons a:hover {
  color: #d06704;
  border-color: #d06704;
}

.bottom-footer {
  background-color: #1a1b1f;
  text-align: center;
  padding: 15px 10px;
  font-size: 0.9rem;
  color: #ccc;
  font-family: 'Inter', sans-serif;
  box-shadow: 0 -5px 15px rgba(0,0,0,0.2);
}

.bottom-footer p {
  margin: 0;
}

/* Mobile Footer */
@media (max-width: 768px) {
  .footer-section {
    padding: 40px 35px;
  }
  .footer-col {
    min-width: 100%;
    margin-bottom: 30px;
  }
  .footer-col h3 {
    font-size: 1.3rem;
  }
  .footer-col p {
    font-size: 0.9rem;
  }
  .footer-form button {
    padding: 8px 20px;
  }

.social-icons {
  justify-content: left;
}

.social-icons a {
  color: #fff;
  font-size: 1.1rem;
  width: 40px;
  height: 40px;
}

.footer-logo {
  margin-bottom: -60px;
  max-width: 100px;
}

.bottom-footer {
  font-size: 0.76rem;
}

}


/* Bert plus footer link */

.bottom-footer p a {
  color: #dca31f;        /* Yellow color */
  text-decoration: none; /* Remove underline */
  font-weight: 600;      /* Slightly bold */
  transition: color 0.3s ease;
}

.bottom-footer p a:hover {
  color: #ff9900;        /* Darker yellow on hover */
}


/* ================== BACK TO TOP BUTTON ================== */
#backToTop {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #d76903;
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.2rem;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

#backToTop:hover {
  background-color: #1c1d25;
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

#backToTop:active {
  transform: translateY(-1px);
}



#backToTop:hover::before {
  left: 100%;
}

/* Add a subtle border for depth */
#backToTop::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50%;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,255,255,0.2), transparent);
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
  #backToTop {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  #backToTop {
    width: 40px;
    height: 40px;
    bottom: 15px;
    right: 15px;
    font-size: 0.9rem;
  }
}



/* ===== HERO SLIDER ===== */
.hero-slider {
  width: 100%;
  height: 93vh;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
}

.hero-slide {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  animation: fadeSlider 12s infinite;
  transition: opacity 1s ease;
}

.slide1 { background-image: url('../images/pool1.webp'); }
.slide2 { 
  background-image: url('../images/elephantroom.webp');
  animation-delay: 4s;
}
.slide3 { 
  background-image: url('../images/gazebo.webp');
  animation-delay: 8s;
}

@keyframes fadeSlider {
  0% { opacity: 0; transform: scale(1.1); }
  10% { opacity: 1; transform: scale(1); }
  30% { opacity: 1; }
  40% { opacity: 0; }
  100% { opacity: 0; }
}

.hero-slide::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.1), rgba(0,0,0,0.5));
}

/* Mobile Hero */
@media (max-width: 768px) {
  .hero-slider {
    height: 60vh;
  }
}

/* ===== BOOK NOW SECTION ===== */
.book-now-section {
  position: relative;
  padding: 10px 20px;
  background-image: url('../images/bottom.jpg');
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 110px;
  overflow: hidden;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.book-now-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-color: rgba(28, 28, 28, 0.6);
  z-index: 1;
}

.btn-book-now {
  position: relative;
  z-index: 2;
  background-color: #ececec;
  border: none;
  padding: 18px 50px;
  font-size: 1.3rem;
  font-weight: 600;
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  font-family: 'Roboto', sans-serif;
  color: rgb(57, 57, 57);
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

.btn-book-now:hover {
  background-color: #c1c1c1;
  transform: translateY(-3px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.4);
}

/* Mobile Book Now */
@media (max-width: 768px) {
  .book-now-section {
    height: 80px;
  }
  .btn-book-now {
    padding: 12px 30px;
    font-size: 1rem;
  }
}

/* ===== ABOUT US ===== */
.about-us-section {
  max-width: 950px;
  margin: 60px auto;
  padding: 10px 20px;
  text-align: center;
  font-family: 'Open Sans', sans-serif;
  color: #e9e9e9;
  padding-top: 30px;
  padding-bottom: 40px;
}

.about-us-section h2 {
  font-size: 2.8rem;
  margin-bottom: 20px;
  letter-spacing: -0.6px;
  font-family: 'Poppins', sans-serif;
  text-shadow: 1px 1px 3px rgba(83, 82, 82, 0.3);
  font-weight: 600;
}

.about-us-section p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 40px;
  color: #e6e6e6;
  font-family: 'Inter', sans-serif;
  font-weight: 300;
}

.btn-about-us {
  background-color: #f4f4f4;
  color: rgb(68, 68, 68);
  text-decoration: none;
  padding: 15px 45px;
  font-weight: 700;
  border-radius: 0px;
  font-family: 'Poppins', sans-serif;
  display: inline-block;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.btn-about-us:hover {
  background-color: #9d9d9d;
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0,0,0,0.3);
}

/* Mobile About Us */
@media (max-width: 768px) {
  .about-us-section {
    margin: 40px auto;
    padding: 10px 15px;
  }
  .about-us-section h2 {
    font-size: 1.7rem;
    line-height: 1.2;
    margin-top: -10px;
    font-weight: 500;
    letter-spacing: -1px;
  }
  .about-us-section p {
    font-size: 0.9rem;
    margin-bottom: 30px;
  }
  .btn-about-us {
    padding: 12px 30px;
    font-size: 0.9rem;
  }
}


/* 3-IMAGE HIGHLIGHT SECTION */
.highlight-full-bg {
 background: linear-gradient(135deg, #e4e4e4, #dad8eb);

  padding: 80px 20px;
  text-align: center;
}

.three-image-section {
  max-width: 1200px;
  margin: 0 auto;
  
}

.three-image-section h2 {
  font-size: 32px;
  font-weight: 700;
  color: #2a2c36;
  margin-bottom: 15px;
  font-family: 'Poppins', sans-serif;
  text-align: left;
}

.three-image-section p {
  font-size: 18px;
  color: #555;
  max-width: 700px;

  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  text-align: left;
}

.btn-primary {
  display: inline-block;
  background-color: #2a2c36;
  color: white;
  padding: 12px 30px;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 600;
  margin-bottom: 50px;
  margin-top: 70px;
  margin-right: 90px;
  transition: all 0.3s ease;
  border: 2px solid #2a2c36;

}

.btn-primary:hover {
  background-color: transparent;
  color: #2a2c36;
}

.image-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 30px;
}

.image-card {
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border-bottom: 7px solid #c6c6ca;

}

.image-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.image-card img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: all 0.5s ease;
}

/* Image overlay effect */
.image-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 0%, rgba(0,0,0,0.01) 30%, rgba(0,0,0,0.1) 100%);
  z-index: 1;
  transition: all 0.4s ease;
}

.image-card:hover::before {
  background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0.4) 100%);
}

/* Optional: Add a shine effect on hover */
.image-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255,255,255,0) 0%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0) 100%);
  transition: all 0.7s ease;
  z-index: 2;
}

.image-card:hover::after {
  left: 100%;
}


.image-description {
  font-size: 1rem !important;
  color: #676a73 !important;
  padding: 0 24px 28px;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  text-align: left;
  position: relative;
  z-index: 3;
  
  letter-spacing: -0.2px;
}

/* Optional: Add a subtle border for luxury feel */
.image-card:hover {
  border: 1px solid rgba(0,0,0,0.05);
}


/* RESPONSIVE DESIGN */
@media (max-width: 900px) {
  .image-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .image-card:last-child {
    grid-column: span 2;
    max-width: 80%;
    margin: 0 auto;
  }
}

@media (max-width: 600px) {
  .highlight-full-bg {
    padding: 60px 15px;
  }
  
  .three-image-section h2 {
    font-size: 1.7rem;
    line-height: 1.2;
    margin-top: -10px;
    font-weight: 500;
    letter-spacing: -1px;
  }
  
  .three-image-section p {
    font-size: 0.88rem;
  }
  
  .image-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .image-card:last-child {
    grid-column: span 1;
    max-width: 100%;
  }
  
  .image-card img {
    height: 200px;
  }
  
  .btn-primary {
    padding: 10px 25px;
    margin-bottom: 40px;
    margin-top: -50px;
  }

.image-title {
  font-size: 1.2rem;
}

.image-description {
  font-size: 14px !important;
  line-height: 1.5 !important;
}


}


/* ROOMS SECTION START */
.rooms-section {
  background-color: #2a2c36;
  padding: 0px 20px;
  color: #000;
  padding-top: 100px;
  padding-bottom: 100px;
}

.rooms-container {
  display: flex;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
  border-radius: 9px;
  overflow: hidden;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.rooms-container:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.rooms-left,
.rooms-right {
  flex: 1;
  min-width: 300px;
}

.rooms-right {
  background-color: #e9e9e9;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-radius: 0 9px 9px 0;
}

.rooms-subheader {
  font-size: 35px;
  color: #555;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 300;
  
}

.rooms-header {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 50px;
  color: #363640;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.8px;
  position: relative;
  display: inline-block;
  margin-top: -6px;
}

.rooms-header::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 3px;
  background-color: #2a2c36;
  transition: width 0.3s ease;
}

.rooms-container:hover .rooms-header::after {
  width: 80px;
}

.rooms-description {
  font-size: 16px;
  margin-bottom: 30px;
  color: #5c5c5c;
  font-family: 'Inter', sans-serif;
  line-height: 1.6;
}

.rooms-button {
  background-color: #2a2c36;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  border: none;
  padding: 12px 50px;
  cursor: pointer;
  text-transform: uppercase;
  font-weight: 600;
  display: inline-block;
  width: auto;
  max-width: fit-content;
  align-self: flex-start;
  transition: all 0.3s ease;
  text-decoration: none;
  border-radius: 4px;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
}

.rooms-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.1);
  transition: left 0.4s ease;
}

.rooms-button:hover {
  background-color: #1c1d25;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.rooms-button:hover::before {
  left: 100%;
}


.rooms-left {
  background-image: url('../images/elephantroom.webp');
  background-size: cover;
  background-position: center;
  min-height: 520px;
  border-radius: 9px 0 0 9px;
  position: relative;
  overflow: hidden;
  transition: background-image 1s ease-in-out;
}

.rooms-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.6), rgba(0,0,0,0) 60%);
  pointer-events: none;
  transition: background 0.3s ease;
  z-index: 1;
}


.rooms-container:hover .rooms-left::before {
  background: rgba(0, 0, 0, 0.05);
}

/* Caption text */
.slider-header {
  position: absolute;
  bottom: 15px;
  left: 20px;
  right: 20px;
  color: white;
  z-index: 2;
  text-align: center;
  font-size: 1rem;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.7);
  font-family: 'Poppins';
  letter-spacing: -0.5px;

}

/* Arrows */
.slider-arrows {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
  z-index: 2;
  transform: translateY(-50%);
}

.slider-arrows span {
  cursor: pointer;
  font-size: 28px;
  background: rgba(0,0,0,0.4);
  color: white;
  padding: 6px 12px;
  border-radius: 50%;
  transition: background 0.3s;
}

.slider-arrows span:hover {
  background: rgba(0,0,0,0.7);
}



/* Mobile Responsiveness */
@media (max-width: 768px) {
  .rooms-section {
    padding: 60px 15px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  
  .rooms-container {
    flex-direction: column;
  }
  
  .rooms-left,
  .rooms-right {
    min-width: 100%;
  }
  
  .rooms-left {
    min-height: 300px;
    border-radius: 9px 9px 0 0;
    order: 1;
  }
  
  .rooms-right {
    border-radius: 0 0 9px 9px;
    padding: 30px 25px;
    order: 2;
  }
  
  .rooms-subheader {
    font-size: 24px;
    margin-bottom: 8px;
  }
  
  .rooms-header {
    font-size: 26px;
    margin-bottom: 15px;
  }
  
  .rooms-description {
    font-size: 14px;
    margin-bottom: 25px;
  }
  
  .rooms-button {
    padding: 10px 40px;
    font-size: 0.9rem;
    align-self: center;
  }

.slider-header {
  font-size: 0.89rem;
  margin-top: 860px;
}

  .slider-arrows {
    padding: 0 8px;
  }

  .slider-arrows span {
    font-size: 18px;    /* bigger font */
    padding: 5px 10px;  /* more padding */
    width: 28px;
    height: 28px;
    border-radius: 40%;
  }


}

@media (max-width: 480px) {
  .rooms-subheader {
    font-size: 20px;
  }
  
  .rooms-header {
    font-size: 22px;
  }
  
  .rooms-description {
    font-size: 13px;
  }
  
  .rooms-button {
    width: 100%;
    text-align: center;
    max-width: 100%;
    padding: 12px 20px;
  }
}



/* ===== IMAGE SECTION ===== */
.image-section {
  position: relative;
  width: 100%;
  height: 500px;
  background-image: url('../images/7.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.6);
}

.image-section::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(45deg, rgba(48,48,48,0.7), rgba(28,28,28,0.5));
  z-index: 1;
}

/* Mobile Image Section */
@media (max-width: 768px) {
  .image-section {
    height: 300px;
  }
}


/* FAQs Section */
.faq-section {
  background-color: #e9e9e9;
  padding: 60px 20px;
  color: #2a2c36;
}

.faq-container {
  max-width: 1000px;
  margin: 0 auto;
}

.faq-subheader {
  text-transform: uppercase;
  font-size: 16px;
  color: #555;
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.faq-header {
  font-size: 37px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #373944;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.8px;
  margin-top: -4px;
}

.faq-item {
  margin-bottom: 15px;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}

.faq-question {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #45474f;
  cursor: pointer;
  position: relative;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.4px;
  padding-right: 20px;
}

.faq-question::after {
  content: '+';
  position: absolute;
  right: 0;
  font-weight: bold;
  transition: transform 0.3s ease;
}

.faq-question.active::after {
  content: '-';
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, margin-top 0.3s ease, margin-bottom 0.3s ease;
  font-size: 18px;
  color: #5d5d5d;
  font-family: 'Inter', sans-serif;
  margin-top: 0;
  margin-bottom: 0;
  line-height: 1.5;
}

.faq-answer.open {
  max-height: 500px; /* Adjust depending on your content height */
  margin-top: 35px;
  margin-bottom: 50px;
}

.faq-columns {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.faq-column {
  flex: 1;
  min-width: 300px;
}


@media (max-width: 480px) {
  .faq-section {
    padding: 20px 10px;
  }

  .faq-subheader {
    font-size: 13px;
    letter-spacing: 0.4px;
    margin-bottom: 6px;
  }

  .faq-header {
    font-size: 24px;
    margin-bottom: 18px;
    letter-spacing: -0.3px;
  }

  .faq-item {
    margin-bottom: 8px;
    padding-bottom: 3px;
  }

  .faq-question {
    font-size: 15px;
    padding-right: 14px;
    letter-spacing: -0.15px;
  }

  .faq-question::after {
    font-size: 18px;
    right: 2px;
  }

  .faq-answer {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 25px;
    line-height: 1.35;
  }

  .faq-columns {
    flex-direction: column;
    gap: 15px;
  }

  .faq-column {
    min-width: 100%;
  }
}


/* ===== COMING SOON SECTION ===== */
.coming-soon-section {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60vh;
  background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%);
  text-align: center;
  padding: 40px 20px;
  font-family: 'Inter', sans-serif;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 30px rgba(0,0,0,0.05);
}

.coming-soon-section::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255,255,255,0.8) 0%, rgba(255,255,255,0) 70%);
  animation: pulse 8s infinite alternate;
  z-index: 0;
}

.coming-soon-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  padding: 40px;
  background-color: rgba(255,255,255,0.85);
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  backdrop-filter: blur(5px);
  transform: translateY(0);
  transition: all 0.5s ease;
  margin-top: 80px;
}

.coming-soon-content:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.coming-soon-content h1 {
  font-size: 2.1rem;
  color: #32333e;
  margin-bottom: 20px;
  letter-spacing: 2px;
  font-weight: 600;
  text-shadow: 1px 1px 3px rgba(86, 86, 86, 0.1);
  position: relative;
  display: inline-block;
  font-family: 'Poppins', sans-serif;
  letter-spacing: -0.7px;
}

.coming-soon-content h1::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #d06704, #f0a64b);
  border-radius: 3px;
}

.coming-soon-content p {
  font-size: 0.94rem;
  color: #4f4b5e;
  line-height: 1.6;
  margin-bottom: 30px;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  letter-spacing: -0.1px;
}

.countdown-timer {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.countdown-item {
  background: rgba(255,255,255,0.9);
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.08);
  min-width: 80px;
  transition: all 0.3s ease;
}

.countdown-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.countdown-number {
  font-size: 2rem;
  font-weight: 700;
  color: #d06704;
  margin-bottom: 5px;
}

.countdown-label {
  font-size: 0.9rem;
  color: #6a6a6a;
  text-transform: uppercase;
  letter-spacing: 1px;
}

@keyframes pulse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 768px) {
  .coming-soon-section {
    height: auto;
    min-height: 50vh;
    padding: 30px 15px;
  }
  
  .coming-soon-content {
    padding: 30px 20px;
    width: 90%;
  }
  
  .coming-soon-content h1 {
    font-size: 1.4rem;
    
    margin-bottom: 15px;
    letter-spacing: -0.5px;
  }
  
  .coming-soon-content h1::after {
    width: 60px;
    bottom: -8px;
  }
  
  .coming-soon-content p {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  
  .countdown-timer {
    flex-wrap: wrap;
    gap: 10px;
  }
  
  .countdown-item {
    padding: 12px 15px;
    min-width: 70px;
  }
  
  .countdown-number {
    font-size: 1.5rem;
  }
  
  .countdown-label {
    font-size: 0.8rem;
  }
}


/* ==========CONTACT US PAGE START HERE============= */

/* BOOKING SECTION */
/* --- Booking Hero Section --- */
.booking-hero {
  position: relative;
  width: 100%;
  height: 80vh; /* adjust as needed */
  background: url('../images/ZAMBEZI\ NATURAL.jpg') center/cover no-repeat;
  display: flex;
  justify-content: center;
  align-items: center;
}

.booking-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.3); /* optional overlay for effect */
  z-index: 1;
}

.booking-hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  text-align: center;
}

/* --- Booking Form Section --- */
.booking-form-section {
  width: 100%;
  background-color: #f5f5f5;
  padding: 60px 20px;
  display: flex;
  justify-content: center;
}

.booking-form-section .form-container {
  width: 100%;
  max-width: 500px;
  background: #fff;
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.booking-form-section h2 {
  font-family: 'Poppins', serif;
  color: #d4af37;
  text-align: center;
  margin-bottom: 25px;
}

.booking-form-section label {
  display: block;
  margin-bottom: 5px;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
}

.booking-form-section input {
  width: 100%;
  padding: 10px 15px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 5px;
}

.booking-form-section button {
  width: 100%;
  padding: 15px;
  background-color: #d4af37;
  color: #fff;
  font-weight: 600;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.booking-form-section button:hover {
  background-color: #b69536;
  transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
  .booking-hero {
    height: 40vh;
  }

  .booking-form-section {
    padding: 40px 15px;
  }
}



/* OUR LOCATION */
.location-section {
  text-align: center;
  padding: 40px 0;
  background-color: #3c3b46;
  padding-bottom: 0px;
}

.location-section h2 {
  
  font-size: 3rem;
  margin-bottom: 30px;
  color: #f3f3f3;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.map-wrapper {
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}


.location-section .address {
  margin-top: -20px;
  font-size: 18px;
  color: #eaeaea;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin-bottom: 70px;
}

.location-section .address i {
  color: #ebebeb;
  margin-right: 8px;
  font-size: 2rem;
}


@media (max-width: 768px) {

/* OUR LOCATION - MOBILE ONLY */
.location-section {
  text-align: center;
  padding: 30px 0px 0;
  background-color: #3c3b46;
}

.location-section h2 {
  font-size: 1.8rem;
  margin-bottom: -26px;
  color: #f3f3f3;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
}

.map-wrapper {
  width: 100%;
  margin: 0 auto;
  border-radius: 0;
}

.location-section .address {
  margin-top: 20px;
  font-size: 14px;
  color: #eaeaea;
  font-weight: 500;
  font-family: 'Inter', sans-serif;
  margin-bottom: 40px;
  padding: 12px;
}

.location-section .address i {
  color: #ebebeb;
  margin-right: 6px;
  font-size: 1.2rem;
}
}



/* =====ROOMS PAGE START==== */

.rooms-page-header {
  position: relative;
  background-image: url('../images/buffalo.webp');
  background-size: cover;
  background-position: center;
  color: #fff;
  text-align: center;
  padding: 120px 20px 60px;
  overflow: hidden;
}

/* Overlay layer */
.rooms-page-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.65); /* adjust darkness */
  z-index: 1;
}

/* Content stays above overlay */
.rooms-page-header * {
  position: relative;
  z-index: 2;
}


.header-overlay {
  background-color: rgba(70, 66, 79, 0.33);
  padding: 80px 20px;
  border-radius: 12px;
  max-width: 900px;
  margin: 0 auto;
}

.header-content h1 {
  font-size: 2.8rem;
  margin-bottom: 15px;
  font-weight: 600;
  letter-spacing: -0.51px;
  font-family: 'Poppins', sans-serif;
  color: #cdd1e0;
}

.header-content p {
  font-size: 1.1rem;
  line-height: 1.4;
  color: #d1d3df;
  max-width: 700px;
  margin: 0 auto;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.2px;
}

.breadcrumbs {
  margin-top: 30px;
  font-size: 0.95rem;
  color: #ea750f;
}

.breadcrumbs a {
  color: #ed8c03;
  text-decoration: none;
  font-weight: 500;
  font-family: 'Poppins', sans-serif;
}

.breadcrumbs a:hover {
  text-decoration: underline;
}

.breadcrumbs span {
  margin: 0 8px;
  color: #ccc;
  font-family: 'Poppins', sans-serif;
}


@media (max-width: 768px) {
  .rooms-page-header {
    padding: 80px 15px 40px;
  }

  .header-overlay {
    padding: 50px 15px;
    border-radius: 8px;
  }

  .header-content h1 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: -0.3px;
  }

  .header-content p {
    font-size: 0.9rem;
    line-height: 1.4;
    max-width: 100%;
  }

  .breadcrumbs {
    margin-top: 20px;
    font-size: 0.85rem;
  }

  .breadcrumbs span {
    margin: 0 5px;
  }
}


/* ROOMS SECTION START */

#rooms-section,
.zambezi-rooms-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(135deg, #f8f8fb 0%, #e0deec 100%);
  font-family: 'Poppins', sans-serif;
}

#rooms-header,
.zambezi-section-header {
  margin-bottom: 30px;
}

#rooms-header h2,
.zambezi-section-header h2 {
  font-size: 2rem;
  color: #403a4a;
  margin-bottom: 8px;
  letter-spacing: -0.7px;
}

#rooms-header p,
.zambezi-section-header p {
  font-size: 1rem;
  color: #555;
  max-width: 760px;
  margin: 0 auto;
  line-height: 1.5;
  font-family: 'Inter', sans-serif;
  letter-spacing: -0.2px;
}

/* Grid: 3 columns */
#rooms-grid,
.zambezi-rooms-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1300px;
  margin: 0 auto;
}

/* Each card holds the image and overlay info */
.zambezi-room-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.06);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

.zambezi-room-card:nth-child(1) { animation-delay: 0.1s; }
.zambezi-room-card:nth-child(2) { animation-delay: 0.2s; }
.zambezi-room-card:nth-child(3) { animation-delay: 0.3s; }
.zambezi-room-card:nth-child(4) { animation-delay: 0.4s; }
.zambezi-room-card:nth-child(5) { animation-delay: 0.5s; }
.zambezi-room-card:nth-child(6) { animation-delay: 0.6s; }

.zambezi-room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.15);
}

/* ROOM IMAGE — BIGGER HEIGHT */
.zambezi-room-card img {
  display: block;
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.zambezi-room-card:hover img {
  transform: scale(1.08);
}

/* Overlay area at bottom inside image - ALWAYS VISIBLE */
.zambezi-room-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  background: linear-gradient(180deg, 
    rgba(0,0,0,0) 0%, 
    rgba(0,0,0,0.7) 70%, 
    rgba(0,0,0,0.9) 100%);
  color: #fff;
  opacity: 1;
  transform: translateY(0);
}

/* Room name inside overlay */
.zambezi-room-info h3 {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 500;
  color: #dfdfe9;
  text-align: left;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  letter-spacing: -0.4px;
  transform: translateX(0);
}

/* Button inside overlay */
.zambezi-room-btn {
  display: inline-block;
  padding: 8px 14px;
  background: rgba(255,255,255,0.22);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid rgba(255,255,255,0.08);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  white-space: nowrap;
  font-size: 0.9rem;
  opacity: 1;
  transform: translateX(0);
}

.zambezi-room-btn:hover {
  background: rgba(255,255,255,0.3);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Reduced motion for accessibility */
@media (prefers-reduced-motion: reduce) {
  .zambezi-room-card,
  .zambezi-room-card img,
  .zambezi-room-btn {
    transition: none;
    animation: none;
  }
  
  .zambezi-room-card {
    opacity: 1;
    transform: none;
  }
}

/* Responsive: stack to 2 columns then 1 column */
@media (max-width: 992px) {
  #rooms-grid,
  .zambezi-rooms-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .zambezi-room-card img {
    height: 280px;
  }
}

@media (max-width: 768px) {
  #rooms-section,
  .zambezi-rooms-section {
    padding: 40px 14px;
  }

  #rooms-grid,
  .zambezi-rooms-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .zambezi-room-card img {
    height: 250px;
  }

  .zambezi-room-info {
    padding: 12px;
  }

  .zambezi-room-info h3 {
    font-size: 0.98rem;
  }

  .zambezi-room-btn {
    padding: 7px 12px;
    font-size: 0.92rem;
  }
  
  /* Disable hover effects on mobile */
  .zambezi-room-card:hover {
    transform: none;
  }
  
  .zambezi-room-card:hover img {
    transform: none;
  }

#rooms-header h2,
.zambezi-section-header h2 {
  font-size: 1.5rem;

}

#rooms-header p,
.zambezi-section-header p {
  font-size: 0.9rem;
}

}



/* =============ELEPHANT ROOM PAGE START======== */

/* ELEPHANT ROOM IMAGE ONLY */
.elephant-room-header {
  width: 100%;
  height: 750px; /* very big section */
  background-image: url('../images/elephantroom.webp'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .elephant-room-header {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .elephant-room-header {
    height: 400px;
  }
}


/* ELEPHANT ROOM DETAILS SECTION */
.elephant-room-details {
  padding: 30px 20px;
  background-color: #56565f;
  font-family: 'Poppins', sans-serif;
}

.details-container {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 20px;
}

/* Left Column: Image */
.details-image {
  flex: 0 0 10%; /* smaller image, 10% width now */
}

.details-image img {
  width: 100%;
  height: auto;
  border-radius: 6px;
  object-fit: cover;
 
}

/* Right Column: Content */
.details-content {
  flex: 0 0 90%; /* rest of the space */
}

.details-content h2 {
  font-size: 2.5rem;
  color: #e6e7f2;
  margin-bottom: 16px;
  letter-spacing: -0.7px;
  font-weight: 500;
  margin-top: -5px;
}

.details-content p {
  font-size: 1rem;
  color: #e2e1ef;
  line-height: 1.6;
  font-family: 'Inter', sans-serif;
}

/* Responsive Adjustments */
@media (max-width: 992px) {
  .details-container {
    flex-direction: column;
  }

  .details-image,
  .details-content {
    flex: 1 1 100%;
  }

  .details-image {
    margin-bottom: 15px;
    flex: 0 0 30%; /* smaller image width for medium screens */
    max-width: 120px; /* limit image width */
    margin: 0 auto 15px auto;
  }

  .details-content h2 {
    font-size: 2rem; /* smaller header on tablets */
    text-align: center;
  }

  .details-content p {
    font-size: 0.9rem; /* smaller paragraph */
    text-align: center;
  }
}

@media (max-width: 768px) {
  .details-image {
    flex: 0 0 25%; /* very small image on mobile */
    max-width: 90px;
    margin: 0 auto 12px auto;
    margin-top: -40px;
  }

  .details-content h2 {
    font-size: 1.6rem; /* smaller header on mobile */
    margin-top: -30px;
  }

  .details-content p {
    font-size: 0.85rem; /* smaller paragraph text */
    margin-top: -5px;
  }
}


/* ===LION ROOM PAGE START===== */

/* LION ROOM IMAGE ONLY */
.lion-room-header {
  width: 100%;
  height: 750px; /* very big section */
  background-image: url('../images/lionbedroom.webp'); /* replace with your image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .lion-room-header {
    height: 500px;
  }
}

@media (max-width: 768px) {
  .lion-room-header {
    height: 400px;
  }
}



/* ====ACTIVITIES PAGE START===== */

.zambezi-activities {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #44465e;
  padding: 40px 0;
  color: #eee;
  
}

.activities-container {
  display: flex;
  width: 90%;
  max-width: 1300px;
  border-radius: 15px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  margin-top: 140px;
}

/* Left column - Image */
.activities-left {
  flex: 0 0 80%;
}

.activities-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Right column - Text */
.activities-right {
  flex: 0 0 20%;
  background: rgba(64, 60, 76, 0.7);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-left: 2px solid #d4af37;
}

.activities-right h1 {
  font-family: 'Poppins',sans-serif;
  color: #d4af37;
  font-size: 1.6rem;
  margin-bottom: 15px;
  text-align: left;
  font-weight: 600;
  letter-spacing: -0.3px;
}

.activities-right ul {
  list-style: none;
  padding-left: 0;
}

.activities-right li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 6px;
  font-size: 0.9rem;
  line-height: 1.4;
  font-family: 'Inter', sans-serif;
  color: #cdd1da;
  transition: color 0.3s;
}

.activities-right li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 0;
  color: #d4af37;
  font-size: 1.1rem;
  line-height: 1;
}

.activities-right li:hover {
  color: #d4af37;
}


/* Responsive */
@media (max-width: 900px) {
  .activities-container {
    flex-direction: column;
    margin-top: 30px;
  }

  .activities-left,
  .activities-right {
    flex: 0 0 100%;
    width: 100%;
  }

  /* Make image taller on mobile */
  .activities-left .activities-image {
    width: 100%;
    height: auto; /* allow natural height */
    max-height: 400px; /* increase max height */
    display: block;
    object-fit: cover;
  }

  .activities-right {
    border-left: none;
    border-top: 2px solid #d4af37;
    text-align: left;
    padding: 25px 20px;
  }

  .activities-right h1 {
    text-align: center;
    margin-bottom: 15px;
  }

  .activities-right ul {
    padding-left: 0;
    margin: 0;
    list-style: none;
    text-align: left;
  }

  .activities-right li {
    text-align: left;
    font-size: 0.85rem;
  }
}


/* TRAVEL GALLERY */

.travel-gallery-section {
  padding: 40px 30px;
  background-color: #dad3e5;
}

.travel-gallery-title {
  font-size: 2.4rem;
  color: #555365;
  margin-bottom: 20px;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  letter-spacing: -0.4px;
}

.travel-gallery-row {
  display: grid;
  grid-template-columns: 60% 40%;
  gap: 15px;
  margin-bottom: 20px;
}

.travel-gallery-row:nth-child(3) {
  /* second row after title → swap to 40/60 */
  grid-template-columns: 40% 60%;
}

.travel-gallery-row:nth-child(5) {
  /* next row → swap back */
  grid-template-columns: 60% 40%;
}

.travel-gallery-img img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

/* Mobile: 1 image per row */
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .travel-gallery-title {
    font-size: 1.7rem;      /* smaller header on mobile */
    text-align: center;
  }

  .travel-gallery-section {
    padding: 25px 18px;     /* tighter spacing for phones */
  }

  .travel-gallery-row {
    grid-template-columns: 1fr !important;  /* single column */
    gap: 12px;
  }

  .travel-gallery-img img {
    height: 240px;          /* reduced image height */
    border-radius: 6px;
  }
}






/* ======GALLERY PAGE START======= */

.zambezi-video-section {
  position: relative;
  width: 100%;
  height: 106vh; /* desktop height */
  overflow: hidden;
}

.zambezi-video-section .background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;       /* full viewport width */
  height: 100%;       /* full section height */
  object-fit: cover;  /* cover the entire section */
  z-index: 0;
}

@media (max-width: 768px) {
  .zambezi-video-section {
    height: 60vh;      /* mobile height */
  }

  .zambezi-video-section .background-video {
    width: 100vw;
    height: 100%;
    object-fit: cover;
  }
}


.lodgeview-gallery-section {
  padding: 40px 0;
  background: #faf7fb;
}

.lodgeview-gallery-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.9rem;
  text-align: center;
  color: #544d6b;
  margin-bottom: 18px;
  letter-spacing: -0.5px;
}

.lodgeview-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 0 35px;
}

.lodgeview-slider {
  display: flex;
  gap: 18px;
  overflow-x: hidden;
  scroll-snap-type: x mandatory;
}

.lodgeview-slide {
  flex: 0 0 calc((100% - 68px)/2);
  scroll-snap-align: center;
  border-radius: 10px;
  overflow: hidden;
}

.lodgeview-slide img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
}

.lodgeview-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(60,50,80,0.75);
  color: #fff;
  border: none;
  padding: 10px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
}

.lodgeview-prev { left: 8px; }
.lodgeview-next { right: 8px; }

/* DOTS */
.lodgeview-dots {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  gap: 8px;
}

.lodgeview-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #c3b8d2;
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
}

.lodgeview-dot.active {
  background: #6d5d9c;
  transform: scale(1.2);
}

/* MOBILE */
@media (max-width: 768px) {
  .lodgeview-slide { flex: 0 0 calc(100% - 40px); }
  .lodgeview-slide img { height: 300px; }
  .lodgeview-btn { display: none; }

.lodgeview-gallery-title {
  
  font-size: 1.4rem;
}

.lodgeview-slider-wrapper {
  padding: 0 5px;
}


}


@media (max-width: 768px) {
  .lodgeview-btn {
    display: block; /* show buttons on mobile */
  }
}
