/* === Root Design Tokens (colors, fonts) === */
:root{
   --primary: #1B5E20;
  --secondary: #2E7D32;
  --accent: #8BC34A;
  --bg-light: #F3F8ED;
  --menu-bg: #E8F5E9;
  --text-dark: #21312A;
  --text-muted: #6B6B6B;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 8px 20px rgba(17, 24, 17, 0.06);
  --gradient: linear-gradient(135deg, var(--primary), var(--accent));
  --gradient-rev: linear-gradient(135deg, var(--accent), var(--secondary));
}


/* 🌿 Font Styles */
body {
  font-family: 'Poppins', sans-serif;
  color: var(--text-dark);
  background-color: var(--bg-light);
  overflow-x: hidden;
}

/* Headings - Elegant serif for luxury feel */
h1, h2, h3, h4, h5 {
  font-family: 'Playfair Display', serif;
  color: var(--primary);
  letter-spacing: 0.5px;
}

/* Navbar + Buttons - Rounded friendly look */
.nav-link,
.btn-book,
.navbar-brand span {
  font-family: 'Quicksand', sans-serif;
  font-weight: 600;
  letter-spacing: 0.4px;
}

/* Paragraphs & Descriptions */
p, li {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: var(--text-muted);
}

/* 🌿 Navbar Styling */
.navbar {
  box-shadow: var(--shadow);
}

.nav-link {
  position: relative;
  font-weight: 600;
  color: var(--text-dark);
  margin: 0 10px;
  transition: all 0.3s ease;
}

/* underline animation */
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0%;
  height: 2px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 60%;
}

/* Mobile menu links */
@media (max-width: 991px) {
  .navbar-collapse {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
  }
  .nav-link {
    display: block;
    text-align: center;
    padding: 10px 0;
  }
  .book-btn {
    display: block;
    margin: 10px auto;
  }
}

/* 🌿 Book Button */
.book-btn {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  padding: 8px 18px;
  border-radius: 8px;
  font-weight: 600;
  transition: 0.4s ease;
}
.book-btn:hover {
  background: linear-gradient(45deg, var(--accent), var(--primary));
  transform: translateY(-2px);
}



/* ==============================
   🌿 HERO CAROUSEL
============================== */
.hero-section {
  position: relative;
  width: 100%;
  overflow: hidden;
}

/* 🌿 Hero Images */
.hero-img {
  height: 90vh;
  object-fit: cover;
  width: 100%;
  filter: brightness(85%);
}

/* 🌿 Caption Styles */
.carousel-caption {
  bottom: 30%;
  text-align: center;
  z-index: 10;
}

.carousel-caption h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: #fff;
  text-shadow: 2px 2px 10px rgba(0,0,0,0.4);
  letter-spacing: 1px;
  margin-bottom: 10px;
}

.carousel-caption p {
  font-size: 1.1rem;
  color: #fff;
  margin-top: 10px;
  text-shadow: 1px 1px 5px rgba(0,0,0,0.3);
}

/* 🌿 Responsive Caption Sizes */
@media (max-width: 992px) {
  .hero-img {
    height: 80vh;
  }
  .carousel-caption h1 {
    font-size: 2.2rem;
  }
  .carousel-caption p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  .hero-img {
    height: 70vh;
  }
  .carousel-caption h1 {
    font-size: 1.8rem;
  }
  .carousel-caption p {
    font-size: 0.95rem;
  }
}

/* ==============================
   🌿 CAROUSEL CONTROLS
============================== */
.custom-control {
  width: auto;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 11;
}

.control-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255,255,255,0.3);
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(4px);
}

.control-btn:hover {
  background: linear-gradient(45deg, var(--primary), var(--accent));
  color: #fff;
  transform: scale(1.1);
  border-color: transparent;
}

.bi {
  font-size: 1.5rem;
}

/* smaller size for mobile */
@media (max-width: 768px) {
  .control-btn {
    width: 40px;
    height: 40px;
  }
  .bi {
    font-size: 1.2rem;
  }
}

/* ==============================
   🌿 FADE-UP ANIMATION
============================== */
.fade-up {
  animation: fadeUp 1s ease forwards;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===== About Section ===== */
.about-section img {
  width: 100%;
  height: 400px; /* Fixed height for uniform display */
  object-fit: cover; /* Ensures image doesn’t stretch */
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease;
}
.about-section img:hover {
  transform: scale(1.05);
}

.about-section .btn-book {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
  padding: 10px 28px;
  border-radius: 30px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.about-section .btn-book:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transform: translateY(-3px);
}

/* ===== Features Section ===== */
.features-section .feature-card {
  background: var(--white);
  border-radius: var(--radius);
  transition: all 0.4s ease;
  height: 100%;
  box-shadow: var(--shadow);
}

.features-section .feature-card:hover {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--white);
  transform: translateY(-8px);
}
.features-section .feature-card:hover p {
  color: var(--white);
}

/* Uniform Image Size in Feature Cards */
.features-section .feature-card img {
  width: 100%;
  max-width: 100%;
  height: 180px; /* All feature images same height */
  object-fit: cover;
  border-radius: var(--radius);
  margin-bottom: 15px;
}

/* ===== AOS Animation (Scroll Effects) ===== */
[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 992px) {
  .about-section img {
    height: 300px;
  }
  .features-section .feature-card img {
    height: 150px;
  }
}
@media (max-width: 576px) {
  .about-section img {
    height: 250px;
  }
  .features-section .feature-card img {
    height: 130px;
  }
}

/* ===== Rooms Section ===== */
.rooms-section {
  position: relative;
  overflow: hidden;
}

.room-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  box-shadow: var(--shadow);
}

.room-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(33, 49, 42, 0.15);
}

.room-card img {
  width: 100%;
  height: 250px;  /* Fixed uniform height */
  object-fit: cover;
  transition: transform 0.5s ease;
}

.room-card:hover img {
  transform: scale(1.08);
}

.room-content h5 {
  color: var(--text-dark);
}

.room-content p {
  font-size: 15px;
  color: var(--text-muted);
}

.btn-book {
  background: linear-gradient(135deg, var(--primary), var(--accent));
  color: var(--white);
  border: none;
  border-radius: 25px;
  padding: 10px 26px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.btn-book:hover {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  transform: translateY(-2px);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .room-card img {
    height: 200px;
  }
  .btn-book {
    width: 100%;
  }
}

[data-aos] {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.8s ease;
}
[data-aos].aos-animate {
  opacity: 1;
  transform: translateY(0);
}
/* ===== Parallax Section ===== */
.parallax-section {
  position: relative;
  background: url('img/bg.jpg') center center / cover no-repeat fixed;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white) !important;
  text-align: center;
}

.parallax-section .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* soft green overlay */
  backdrop-filter: blur(1px);
  z-index: 1;
}

.parallax-section .content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: 0 20px;
}

.parallax-section h2 {
  font-size: 2.5rem;
  letter-spacing: 1px;
}

.parallax-section p {
  font-size: 1.1rem;
  margin-bottom: 25px;
}

/* Parallax Button Style */
.btn-parallax {
  background: linear-gradient(135deg, var(--accent), var(--secondary));
  color: var(--white);
  border: none;
  border-radius: 30px;
  padding: 12px 30px;
  font-weight: 600;
  transition: all 0.4s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.btn-parallax:hover {
  background: linear-gradient(135deg, var(--secondary), var(--accent));
  transform: translateY(-3px);
}

/* ===== Responsive ===== */
@media (max-width: 768px) {
  .parallax-section {
   
    min-height: 60vh;
  }
  .parallax-section h2 {
    font-size: 1.9rem;
  }
  .parallax-section p {
    font-size: 1rem;
  }
}

/* ===== Gallery Section ===== */
.gallery-section {
  background: var(--bg-light);
}

.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  transition: transform 0.5s ease;
  border-radius: var(--radius);
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(33, 49, 42, 0.2);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .gallery-item img {
    height: 200px;
  }
}

#testimonials .card {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--white);
  transition: all 0.4s ease;
}

#testimonials .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
}

#testimonials h2 {
  letter-spacing: 1px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-color: var(--secondary);
  border-radius: 50%;
  padding: 12px;
}

@media (max-width: 768px) {
  #testimonials .card {
    margin: 0 1rem;
  }
}

.footer-section {
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white);
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: var(--white);
  text-decoration: none;
  position: relative;
  font-size: 15px;
  transition: all 0.3s ease;
}

.footer-links a::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s ease;
}

.footer-links a:hover::after {
  width: 100%;
}

.footer-links a:hover {
  color: var(--accent);
}

.footer-credit {
  color: var(--accent);
  text-decoration: none;
  font-weight: 600;
}

.footer-credit:hover {
  color: var(--white);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .footer-section {
    text-align: center;
  }
  .footer-logo img {
    margin-bottom: 15px;
  }
  .footer-links {
    padding: 0;
  }
}
.list-unstyled li{
    color: #fff;
}

.rooms-carousel {
  display: flex;
  flex-wrap: nowrap; /* crucial */
  gap: 20px;
  scroll-behavior: smooth;
}

  .rooms-carousel {
    scroll-behavior: smooth;
  }
  .room-card {
    min-width: 250px; /* adjust width as needed */
  }

    /* Scrollbar hidden for mobile */
  .rooms-carousel::-webkit-scrollbar {
    display: none;
  }
  .rooms-carousel {
    -ms-overflow-style: none;  /* IE/Edge */
    scrollbar-width: none;     /* Firefox */
  }

  /* Card width responsive */
  @media (max-width: 768px) {
    .room-card {
      min-width: 70%; /* Mobile: wider cards for swipe */
    }
  }
  @media (min-width: 769px) {
    .room-card {
      min-width: 250px; /* Desktop: multiple cards visible */
    }
  }

  
  .cottage-img {
    height: 200px; /* same height for all images */
    object-fit: cover; /* maintain aspect ratio, crop if needed */
    border-top-left-radius: var(--radius);
    border-top-right-radius: var(--radius);
  }

  #ac-cottages .card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--white);
  }

  #ac-cottages .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
  }

  .parallax-header {
    height: 70vh;
    background-image: url('img/about-header.jpg'); /* Replace with your image */
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
    position: relative;
  }

  .parallax-header::before {
    content: "";
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: rgba(0, 0, 0, 0.4); /* overlay for text readability */
  }

  .header-content {
    position: relative;
    z-index: 1;
  }

  .parallax-header h1 {
    font-size: 3rem;
    margin-bottom: 15px;
  }

  .parallax-header p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
  }

  /* Breadcrumb Styling */
  .breadcrumb {
    padding: 0;
    margin-bottom: 15px;
  }

  .breadcrumb a {
    color: var(--accent);
    text-decoration: none;
  }

  .breadcrumb a:hover {
    text-decoration: underline;
  }

  .breadcrumb-item.active {
    color: var(--white);
  }

  @media (max-width: 767px) {
    .parallax-header h1 {
      font-size: 2rem;
    }

    .parallax-header p {
      font-size: 1rem;
    }

    .breadcrumb {
      font-size: 0.9rem;
    }
  }

  #about-content img {
    max-height: 600px;
    object-fit: cover;
  }

  #about-content .btn:hover {
    background-color: var(--accent);
    color: var(--white);
    transform: translateY(-2px);
    transition: all 0.3s ease;
  }

  @media (max-width: 767px) {
    #about-content h2 {
      font-size: 1.75rem;
    }
    #about-content p {
      font-size: 0.95rem;
    }
    #about-content img {
      max-height: 500px;
    }
  }

    #why-choose-us .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }

  #why-choose-us i {
    transition: transform 0.3s ease;
  }

  #why-choose-us .card:hover i {
    transform: scale(1.2);
  }

  @media (max-width: 767px) {
    #why-choose-us h2 {
      font-size: 1.75rem;
    }

    #why-choose-us p {
      font-size: 0.95rem;
    }
  }

   #vision-mission i {
    transition: transform 0.3s ease;
  }

  #vision-mission .card:hover i {
    transform: scale(1.2);
  }

  #vision-mission .card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
  }

  @media (max-width: 767px) {
    #vision-mission h2 {
      font-size: 1.75rem;
    }
  }

  .room-card {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
  }

  .room-card img {
    height: 250px;
    object-fit: cover;
  }

  .room-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 12px 30px rgba(17,24,17,0.15);
  }

  .btn-gradient {
    background: var(--gradient);
    color: #fff;
    border-radius: var(--radius);
    padding: 10px 0;
    transition: all 0.3s ease;
  }

  .btn-gradient:hover {
    background: var(--gradient-rev);
    color: #fff;
    transform: translateY(-2px);
  }

  @media (max-width: 767px) {
    .room-card img {
      height: 200px;
    }
  }
    #amenities i {
    transition: transform 0.3s ease, color 0.3s ease;
  }

  #amenities i:hover {
    transform: scale(1.3);
    color: var(--primary);
  }

  #amenities h6 {
    margin-top: 5px;
    font-size: 0.95rem;
  }

  #gallery img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
  }

  #gallery img:hover {
    transform: scale(1.05);
  }

  .video-thumb {
  position: relative;
  cursor: pointer;
}

.video-thumb img {
  width: 100%;
  height: 200px; /* same height as images */
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.3s ease;
}

.video-thumb img:hover {
  transform: scale(1.05);
}

/* Play icon overlay */
.video-thumb .play-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 3rem;
  color: rgba(255,255,255,0.9);
  transition: transform 0.3s ease, color 0.3s ease;
  pointer-events: none; /* Allows click through to the link */
}

.video-thumb:hover .play-icon {
  transform: translate(-50%, -50%) scale(1.2);
  color: var(--accent);
}

.contact-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.contact-card i {
  transition: transform 0.3s ease, color 0.3s ease;
}

.contact-card:hover i {
  transform: scale(1.2);
  color: var(--primary);
}

.contact-form .form-control {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid #ccc;
  padding: 12px;
  transition: all 0.3s ease;
}

.contact-form .form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 10px rgba(27,94,32,0.3);
  outline: none;
}

.btn-gradient {
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius);
  padding: 10px 25px;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: var(--gradient-rev);
  transform: translateY(-2px);
}

@media (max-width: 991px) {
  .contact-card iframe {
    height: 300px !important;
  }
}

.contact-card {
  background: #fff;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.1);
}

.btn-gradient {
  background: var(--gradient);
  color: #fff;
  border-radius: var(--radius);
  padding: 12px 30px;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.btn-gradient:hover {
  background: var(--gradient-rev);
  transform: translateY(-2px);
}

.whatsapp-float {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 60px;
  height: 60px;
  z-index: 1000;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-float:hover img {
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 25px rgba(0,0,0,0.4);
}