*{
  font-family: 'Poppins', sans-serif;
}

html{
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body{
  background:#fff;
  color:#333;
}

.logo-img{
  height:55px;
  width: auto;
}

.navbar{
  min-height: 80px;
}

.navbar .nav-link{
  color: #222;
  transition: color 0.3s ease;
}

.navbar .nav-link:hover{
  color: #2E7D32;
}

.navbar .nav-link.active{
  color: #2E7D32;
}

.btn-book{
  background:#2E7D32;
  color:white !important;
  border: 2px solid #2E7D32;
  transition: all 0.3s ease;
}

.btn-book:hover{
  background:#1f5d23;
  border-color: #1f5d23;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(46,125,50,0.3);
  color: white !important;
}

.btn-primary-custom{
  background:#f9b233;
  color:white !important;
  border: 2px solid #f9b233;
  transition: all 0.3s ease;
}

.btn-primary-custom:hover{
  background:#e89f1f;
  border-color: #e89f1f;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(249,178,51,0.4);
  color: white !important;
}

.hero{
  height: calc(100vh - 80px);
  min-height: 0;
  max-height: 620px;
  position:relative;
  overflow:hidden;
  margin-top: 80px;
  padding: 0;
}

.hero video{
  width:100%;
  height:100%;
  min-height:100%;
  min-width:100%;
  object-fit: cover;
  display:block;
  position:absolute;
  top: 0;
  left: 0;
}

.overlay{
  position:absolute;
  top: 0;
  left: 0;
  width:100%;
  height:100%;
  background:rgba(0,0,0,.45);
}

.hero-content{
  position:absolute;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  width: 90%;
  max-width: 900px;
  z-index: 2;
}

.hero-content h1{
  text-shadow: 2px 2px 8px rgba(0,0,0,0.4);
}

.hero-content p{
  text-shadow: 1px 1px 4px rgba(0,0,0,0.3);
}

.section-title{
  position: relative;
  padding-bottom: 15px;
  margin-bottom: 3rem !important;
}

.section-title::after{
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #2E7D32, #f9b233);
  border-radius: 2px;
}

.about .section-title,
.rooms .section-title,
.features .section-title,
.gallery .section-title,
.testimonial .section-title,
.contact .section-title{
  text-align: center;
}

section:not(.hero){
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.card-img-top{
  height: 250px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.card:hover .card-img-top{
  transform: scale(1.05);
}

.card{
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15) !important;
}

.feature-card{
  transition: all 0.3s ease;
  border: 1px solid rgba(46,125,50,0.08);
}

.feature-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(46,125,50,0.1) !important;
  border-color: rgba(46,125,50,0.2);
}

.feature-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(46,125,50,0.08);
  transition: all 0.3s ease;
}

.feature-card:hover .feature-icon{
  background: #2E7D32;
}

.feature-card:hover .feature-icon svg{
  fill: white !important;
}

.gallery-img{
  transition: transform 0.4s ease, filter 0.4s ease;
  height: 220px;
  width: 100%;
  object-fit: cover;
  display: block;
}

.gallery-thumb{
  cursor: zoom-in;
}

.gallery-thumb:hover .gallery-img{
  transform: scale(1.05);
  filter: brightness(.92);
}

.gallery-caption{
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: .75rem 1rem .55rem;
  color: #fff;
  font-size: .82rem;
  font-weight: 600;
  background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(0,0,0,.5);
}

.gallery-caption-lg{
  font-size: 1rem;
  padding-top: 1.25rem;
  padding-bottom: 1rem;
}

.gallery-thumb:hover .gallery-caption{
  opacity: 1;
  transform: translateY(0);
}

.gallery-featured .gallery-img{
  height: 100%;
  min-height: 460px;
  object-fit: cover;
}

.gallery-featured-badge{
  position: absolute;
  top: .9rem;
  left: .9rem;
  right: .9rem;
  z-index: 2;
  display: flex;
  justify-content: flex-start;
}

#galleryLightbox .modal-backdrop{
  background-color: rgba(0,0,0,.92) !important;
}
#galleryLightbox .modal-dialog{
  max-width: 96vw !important;
}
#galleryLightbox .modal-content,
#galleryLightbox .modal-backdrop.show{
  background: rgba(0,0,0,.92) !important;
}

.gallery-nav{
  position: absolute;
  top: 50%;
  transform: translateY(-60%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 0;
  background: rgba(255,255,255,.12);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .2s ease, transform .2s ease;
  backdrop-filter: blur(6px);
}
.gallery-nav:hover{
  background: rgba(46,125,50,.9);
  transform: translateY(-60%) scale(1.05);
  color: #fff;
}
.gallery-nav-prev{ left: .75rem; }
.gallery-nav-next{ right: .75rem; }

@media (max-width: 991.98px){
  .gallery-featured .gallery-img{
    min-height: 340px;
  }
  .gallery-nav{
    width: 44px;
    height: 44px;
  }
}

@media (max-width: 575.98px){
  .gallery-img{
    height: 180px;
  }
  .gallery-featured .gallery-img{
    min-height: 260px;
  }
  .gallery-nav-prev{ left: .25rem; }
  .gallery-nav-next{ right: .25rem; }
}

.review-block{
  max-width: 750px;
}

.stars{
  color: #f9b233;
  font-size: 1.8rem;
  letter-spacing: 3px;
}

#reviewCarousel .carousel-control-prev,
#reviewCarousel .carousel-control-next{
  width: 50px;
  height: 50px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 1;
  z-index: 3;
}

.carousel-control-prev-icon-custom,
.carousel-control-next-icon-custom{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(46,125,50,0.1);
  color: #2E7D32;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.carousel-control-prev-icon-custom:hover,
.carousel-control-next-icon-custom:hover{
  background: #2E7D32;
  color: white;
}

#reviewCarousel .carousel-indicators{
  gap: 8px;
  margin-top: 0;
}

#reviewCarousel .carousel-indicators [data-bs-target]{
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ddd;
  opacity: 1;
  border: none;
  transition: all 0.3s ease;
}

#reviewCarousel .carousel-indicators [data-bs-target].active{
  background-color: #2E7D32;
  width: 36px;
  border-radius: 6px;
}

.form-control{
  border: 1px solid #e0e0e0;
  padding: 0.75rem 1rem;
  transition: all 0.3s ease;
}

.form-control:focus{
  border-color: #2E7D32;
  box-shadow: 0 0 0 0.25rem rgba(46,125,50,0.15);
}

.form-label{
  color: #333;
  margin-bottom: 0.5rem;
}

footer{
  background:#111 !important;
}

.max-w-700{
  max-width: 700px;
}

.hover-lift{
  transition: transform .25s ease, box-shadow .25s ease;
}
.hover-lift:hover{
  transform: translateY(-3px);
  box-shadow: 0 .8rem 1.2rem rgba(0,0,0,.09) !important;
}

.map-link-wrap{
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease;
}
.map-link-wrap:hover{
  transform: translateY(-2px);
}
.map-link-wrap .rounded-4{
  transition: box-shadow .25s ease;
}
.map-link-wrap:hover .rounded-4{
  box-shadow: 0 .8rem 1.6rem rgba(0,0,0,.1) !important;
}

.navbar-toggler{
  border: none;
  padding: 0.5rem;
}

.navbar-toggler:focus{
  box-shadow: none;
}

@media (max-width: 991.98px){
  .hero{
    margin-top: 72px;
    height: calc(100vh - 72px);
    min-height: 0;
    max-height: 520px;
  }

  section:not(.hero){
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }

  .hero-content h1{
    font-size: 2.5rem !important;
  }

  .hero-content p{
    font-size: 1.1rem !important;
  }

  .navbar{
    min-height: 72px;
  }

  .logo-img{
    height: 45px;
  }

  .navbar-nav{
    padding: 1rem 0;
    gap: 0.5rem !important;
  }

  .navbar-nav .nav-link{
    padding: 0.75rem 1rem;
    border-radius: 8px;
  }

  .navbar-nav .nav-link:hover{
    background: rgba(46,125,50,0.08);
  }

  .gallery-img{
    height: 160px;
  }

  .review-block{
    padding: 2rem 1rem !important;
  }

  .stars{
    font-size: 1.4rem;
  }

  .review-block p{
    font-size: 1.1rem !important;
  }
}

@media (max-width: 575.98px){
  .hero{
    min-height: 0;
    max-height: 420px;
  }

  .hero-content h1{
    font-size: 1.9rem !important;
  }

  .hero-content p{
    font-size: 1rem !important;
    margin-bottom: 2rem !important;
  }

  .btn-primary-custom{
    padding: 0.75rem 2rem !important;
    font-size: 1rem !important;
  }

  .section-title{
    font-size: 1.75rem !important;
  }

  .gallery-img{
    height: 130px;
  }
}
