body {
  font-family: Arial, sans-serif;
    margin: 0;

}



/* HEADER */
.site-header {
  background: #fcf6f0;
  padding: 12px 0;
}

.logo {
  height: 80px;
}

.contact {
  font-size: 14px;
  font-weight: 500;
}

.navbar-toggler {
  font-size: 26px;
  border: none;
  background: none;
}

/* MOBILE MENU */
.mobile-menu {
  margin: 10px;
}

.mobile-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  text-align: center;
  padding: 12px 0;
  border-bottom: 1px solid #ddd;
}

.mobile-menu a {
  text-decoration: none;
  font-weight: 600;
  color: #333;
  font-size: 14px;
}

/* HERO */
.hero {
  height: 500px;
  background: url("images/IMG_1536.JPG") center/cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero h1 {
  color: white;
  font-size: 32px;
  text-align: center;
  background: rgba(0,0,0,0.4);
  padding: 10px 20px;
}

/* DESKTOP */
@media (min-width: 992px) {
 
  

 
   .navbar-toggler {
    display: none;
  }

  .mobile-menu {
    display: block !important;
  }

  .mobile-menu ul {
    display: flex;
    justify-content: center;
    gap: 30px;
  }

  .mobile-menu li {
    border: none;
    padding: 0;
  }

  .hero {
    height: 420px;
  }

  .hero h1 {
    font-size: 64px;
    background: none;
  }
}

@media (max-width: 991px) {
  .contact {
    display: none;
  }
    /* .logo {
   height: 130px;
  } */
}





/* Title */
.title {
  text-align: center;
  margin: 40px 0;
  font-weight: 600;
}

/* Gallery */


.gallery img {

  width: 100%;
  height: 230px;
  object-fit: cover;
  /*border-radius: 6px;*/
  cursor: pointer;
  transition: transform 0.3s ease;
}

.gallery img:hover {
  transform: scale(1.03);
}

.gallery .col-lg-3,
.gallery .col-md-4,
.gallery .col-sm-6 {
    
  margin-bottom: 20px;
}

/* Popup */
.popup {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  z-index: 1055;
  justify-content: center;
  align-items: center;
  animation: fadeIn 0.4s ease;
}

.popup-content {
  position: relative;
  text-align: center;
}

.popup img {
  max-width: 90vw;
  max-height: 85vh;
  animation: zoomIn 0.4s ease;
  transition: opacity 0.3s ease;
}

/* Counter */
.counter {
  color: #fff;
  margin-top: 10px;
  font-size: 14px;
}

/* Buttons */
.close {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.prev,
.next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  padding: 10px;
  user-select: none;
}

.prev { left: 20px; }
.next { right: 20px; }

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes zoomIn {
  from { transform: scale(0.85); }
  to { transform: scale(1); }
}

/* What people say */

.testimonials-section {
  background: #f9f6f1;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #2f3e2f;
}

.section-subtitle {
  color: #666;
  font-size: 15px;
}

.testimonial-box {
  min-width: 280px;           /* IMPORTANT */
  max-width: 760px;
  margin: auto;
  background: #fff;
  padding: 40px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  text-align: center;
}

.stars {
  color: #f4b400;
  font-size: 20px;
  margin-bottom: 15px;
}

.testimonial-box p {
  font-size: 18px;
  color: #444;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-box h6 {
  font-weight: 600;
  color: #5a8f3c;
  font-size: 15px;
}

/* Smooth fade */
.carousel-fade .carousel-item {
  transition: opacity 1.2s ease-in-out;
}

/* Arrow customization */
.carousel-control-prev,
.carousel-control-next {
  width: 6%;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  background-size: 100% 100%;
  filter: invert(40%);
}

/*About us*/
.farmhouse-about {
  background: #ffffff;
}

/* Image Styling */
.image-box {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transform: rotate(-2deg);
  transition: 0.4s ease;
}

.image-box:hover {
  transform: rotate(0deg) scale(1.02);
}

.image-box img {
  width: 100%;
  height: auto;
  border-radius: 18px;
}

/* Text Styling */
.section-tag {
  display: inline-block;
  color: #2e7d32;
  font-weight: 600;
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 15px;
}

.section-text {
  color: #444;
  font-size: 16px;
  line-height: 1.7;
}

/* Feature List */
.feature-list {
  list-style: none;
  padding: 0;
  margin-top: 20px;
}

.feature-list li {
  font-size: 16px;
  margin-bottom: 10px;
}

/* Button */
.btn-success {
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 30px;
}

/*Amenities*/
.amenities-section {
  background: #ffffff;
}

/* Title */
.section-title {
  font-size: 38px;
  font-weight: 700;
  color: #1b5e20;
}

.title-line {
  width: 70px;
  height: 4px;
  background: #2e7d32;
  margin: 12px auto;
  border-radius: 5px;
}

.section-subtitle {
  color: #555;
  font-size: 16px;
}

/* Amenity Card */
.amenity-card {
  background: linear-gradient(145deg, #ffffff, #f3eddc);
  padding: 35px 25px;
  border-radius: 18px;
  text-align: center;
  box-shadow: 0 15px 30px rgba(0,0,0,0.08);
  transition: all 0.4s ease;
  height: 100%;
}

.amenity-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 45px rgba(0,0,0,0.15);
}

/* Icon */
.icon-circle {
  width: 70px;
  height: 70px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  margin: 0 auto 20px;
}

.amenity-card h5 {
  font-weight: 600;
  color: #1b5e20;
  margin-bottom: 10px;
}

.amenity-card p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
}

/*Special Services*/
.services-section {
    padding: 70px 20px;
    background: #f9fdf8;
    text-align: center;
}

.section-title {
    font-size: 36px;
    color: #2f7d32;
    margin-bottom: 50px;
    font-weight: 600;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.service-card {
    background: #ffffff;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
}

.service-card .icon {
    font-size: 45px;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    color: #2f7d32;
    margin-bottom: 12px;
}

.service-card p {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
}

/*Roooms*/

.rooms-section {
    padding: 80px 20px;
    background: #ffffff;
}

.rooms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.room-card {
    background: #f9fdf8;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    transition: 0.3s;
}

.room-card:hover {
    transform: translateY(-8px);
}

.room-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.room-content {
    padding: 25px;
}

.room-content h3 {
    color: #2f7d32;
    font-size: 22px;
    margin-bottom: 10px;
}

.room-content p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.room-content ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.room-content ul li {
    font-size: 14px;
    margin-bottom: 6px;
}

.room-btn {
    display: inline-block;
    padding: 10px 20px;
    background: #2f7d32;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-size: 14px;
}

.room-btn:hover {
    background: #256628;
}

/*Activities*/
.activities {
  padding: 60px 8%;
  background: #f4fff6;
}

.activity-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px,1fr));
  gap: 25px;
}

.activity-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  height: 320px;
  cursor: pointer;
}

.activity-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}

.activity-card:hover img {
  transform: scale(1.1);
}

.overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.overlay button {
  background: #2e7d32;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  margin-top: 10px;
}

/* Desktop (3 cards) */
@media (min-width: 1024px) {
  .activity-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Tablet (2 cards) */
@media (max-width: 1023px) and (min-width: 600px) {
  .activity-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile (1 card) */
@media (max-width: 599px) {
  .activity-grid {
    grid-template-columns: 1fr;
  }
}






/* Mobile adjustments */
@media (max-width: 768px) {
  .testimonial-box {
    padding: 26px;
  }

  .testimonial-box p {
    font-size: 16px;
  }
}

.book-btn:hover {
  background: linear-gradient(135deg, #ff9800, #ff6f00);
  color: #ffffff;
   padding: 12px 28px;
    font-size: 16px;
    border-radius: 30px;  
    margin-top: 4px;
  transform: translateX(5px);
  border: none;
  box-shadow: 0 5px 5px rgba(255, 152, 0, 0.5);
}
.room-btn:hover{
  background: linear-gradient(135deg, #ff9800, #ff6f00);
  color: #ffffff;
   padding: 10px 20px;
    font-size: 14px;
    border-radius: 6px;  
     transform: translateX(5px);
  border: none;
  box-shadow: 0 5px 5px rgba(255, 152, 0, 0.5);
}




    /* HERO */
    .heros {
      /* background: linear-gradient(135deg, #1b5e20, #2e7d32); */
      color: #1b5e20;
      padding: 80px 20px;
      text-align: center;
    }

    .heros h1 {
      font-weight: 700;
    }
    .heros h3 {
        color: #ff6f00;
    }
    .heros p {
      max-width: 923px;
      margin: 15px auto 0;
      font-size: 18px;
      opacity: 0.95;
      color: black;
    }

    /* IMAGES */
    .caravan-img {
      border-radius: 18px;
      box-shadow: 0 10px 25px rgba(0,0,0,0.15);
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* SECTION */
    .section {
      padding: 60px 0;
    }

    .section-title {
      font-weight: 700;
      margin-bottom: 30px;
      color: #1b5e20;
    }

    /* INFO LIST */
    .info-card {
      background: #fff;
      border-radius: 16px;
      padding: 25px;
      box-shadow: 0 6px 18px rgba(0,0,0,0.08);
    }

    .info-card ul {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .info-card li {
      margin-bottom: 14px;
      font-size: 16px;
    }

    .info-card li i {
      color: #2e7d32;
      margin-right: 10px;
    }

    /* CTA */
    .cta {
      background: linear-gradient(135deg, #ff9800, #ff6f00);
      color: #fff;
      padding: 30px 20px;
      text-align: center;
      border-radius: 20px;
      margin-top: 40px;
    }

    .cta h3 {
      font-weight: 700;
    }

    .caravanbutton button{
      background: #2e7d32;
  border: none;
  color: white;
  padding: 8px 16px;
  border-radius: 6px;
  margin-top: 10px;
    }
  