*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{

  font-family:'Montserrat',sans-serif;

  background:
  linear-gradient(
    180deg,
    #fdf3e7 0%,
    #f7e4cd 100%
  );

  color:#3a2617;

  overflow-x:hidden;
}

/* FALLING LEAVES */

.leaves{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  height:100%;
  pointer-events:none;
  z-index:9998;
  overflow:hidden;
}

.leaf{
  position:absolute;
  top:-8%;
  font-size:1.6rem;
  will-change:transform;
  animation:leaf-fall linear infinite;
  opacity:0.9;
}

@keyframes leaf-fall{
  0%{
    transform:translateY(-10vh) translateX(0) rotate(0deg);
  }
  25%{
    transform:translateY(20vh) translateX(40px) rotate(90deg);
  }
  50%{
    transform:translateY(50vh) translateX(-30px) rotate(180deg);
  }
  75%{
    transform:translateY(75vh) translateX(35px) rotate(270deg);
  }
  100%{
    transform:translateY(110vh) translateX(-10px) rotate(360deg);
  }
}

@media(prefers-reduced-motion:reduce){
  .leaf{ animation:none; display:none; }
}

/* FLOATING BUTTON */

.floating-btn{

  position:fixed;

  bottom:30px;
  right:30px;

  z-index:9999;

  background:#c4470f;

  color:white;

  padding:16px 24px;

  border-radius:999px;

  font-weight:700;

  text-decoration:none;

  box-shadow:
  0 10px 30px rgba(140,60,10,0.28);

  transition:0.3s;
}

.floating-btn:hover{

  transform:translateY(-3px);

  background:#a63a0b;
}

/* NAVBAR */

.navbar{

  position:fixed;

  top:0;

  width:100%;

  display:flex;

  justify-content:space-between;

  align-items:center;

  padding:18px 7%;

  backdrop-filter:blur(18px);

  background:rgba(255,248,238,0.78);

  border-bottom:
  1px solid rgba(150,80,20,0.12);

  z-index:1000;
}

.logo-section img{
  width:145px;
}

.nav-links{

  display:flex;

  gap:35px;
}

.nav-links a{

  color:#4a3120;

  text-decoration:none;

  font-weight:600;

  transition:0.3s;
}

.nav-links a:hover{
  color:#c4470f;
}

.nav-call{

  background:#c4470f;

  color:white;

  padding:14px 22px;

  border-radius:999px;

  text-decoration:none;

  font-weight:700;

  transition:0.3s;
}

.nav-call:hover{
  background:#a63a0b;
}

/* SEASONAL BANNER */

.season-banner{

  margin-top:82px;

  text-align:center;

  padding:14px 7%;

  background:
  linear-gradient(90deg,#c4470f,#e0821c);

  color:#fff8ef;

  font-weight:600;

  letter-spacing:0.3px;

  font-size:1rem;
}

.season-banner strong{
  font-weight:800;
}

/* HERO */

.hero{

  position:relative;

  min-height:100vh;

  display:flex;

  justify-content:center;

  align-items:center;

  text-align:center;
}

.hero-video{

  position:absolute;

  width:100%;
  height:100%;

  object-fit:cover;
}

.hero-overlay{

  position:absolute;

  width:100%;
  height:100%;

  background:
  linear-gradient(
    rgba(70,35,10,0.42),
    rgba(120,55,15,0.55)
  );
}

.hero-content{

  position:relative;

  z-index:5;

  max-width:900px;

  padding:20px;
}

.hero-tag{

  display:inline-block;

  background:rgba(255,244,230,0.92);

  color:#a63a0b;

  padding:8px 20px;

  border-radius:999px;

  font-weight:700;

  font-size:0.9rem;

  letter-spacing:0.5px;

  margin-bottom:22px;

  text-transform:uppercase;
}

.hero h1{

  font-family:'Poppins',sans-serif;

  font-size:5rem;

  line-height:1;

  margin-bottom:25px;

  color:#fff7ee;

  letter-spacing:-2px;

  text-shadow:0 4px 24px rgba(60,25,5,0.45);
}

.hero p{

  font-size:1.2rem;

  margin-bottom:40px;

  color:#fdeede;

  text-shadow:0 2px 12px rgba(60,25,5,0.4);
}

.hero-buttons{

  display:flex;

  justify-content:center;

  gap:20px;

  flex-wrap:wrap;
}

.primary-btn,
.secondary-btn{

  padding:18px 32px;

  border-radius:999px;

  text-decoration:none;

  font-weight:700;

  transition:0.3s;
}

.primary-btn{

  background:#c4470f;

  color:white;

  box-shadow:
  0 10px 30px rgba(140,60,10,0.35);
}

.primary-btn:hover{

  transform:translateY(-3px);

  background:#a63a0b;
}

.secondary-btn{

  background:rgba(255,248,238,0.95);

  color:#4a3120;

  border:
  1px solid rgba(150,80,20,0.15);
}

.secondary-btn:hover{

  transform:translateY(-3px);
}

/* COUNTERS */

.counter-section{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(220px,1fr));

  gap:25px;

  padding:90px 7%;
}

.counter-card{

  background:#fffaf3;

  border-radius:30px;

  padding:45px;

  text-align:center;

  border:1px solid rgba(196,71,15,0.08);

  box-shadow:
  0 10px 40px rgba(150,80,20,0.08);
}

.counter-card h2{

  font-size:3rem;

  color:#c4470f;

  margin-bottom:10px;
}

.counter-card p{
  color:#7a583c;
}

/* SECTIONS */

.services,
.gallery,
.reviews,
.booking-section{

  padding:120px 7%;
}

.section-header{

  text-align:center;

  margin-bottom:60px;
}

.section-header h2{

  font-size:3.3rem;

  margin-bottom:15px;

  color:#4a2f19;
}

.section-header p{

  color:#7a583c;
}

/* SERVICES */

.service-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(260px,1fr));

  gap:25px;
}

.service-card{

  background:#fffaf3;

  border-radius:30px;

  padding:45px;

  text-align:center;

  border:1px solid rgba(196,71,15,0.08);

  box-shadow:
  0 10px 40px rgba(150,80,20,0.07);

  transition:0.3s;
}

.service-card:hover{

  transform:translateY(-6px);
}

.service-card h3{

  color:#4a2f19;

  font-size:1.2rem;
}

/* FEATURED FALL SERVICE */

.service-card.featured{

  background:
  linear-gradient(150deg,#c4470f,#e0821c);

  color:#fff8ef;

  box-shadow:
  0 16px 44px rgba(196,71,15,0.32);
}

.service-card.featured h3{
  color:#fff8ef;
  font-size:1.35rem;
}

.service-card.featured .badge{

  display:inline-block;

  background:rgba(255,255,255,0.22);

  padding:5px 14px;

  border-radius:999px;

  font-size:0.72rem;

  font-weight:700;

  letter-spacing:0.6px;

  text-transform:uppercase;

  margin-bottom:14px;
}

.service-card.featured p{

  margin-top:10px;

  font-size:0.9rem;

  color:#fff1e2;

  line-height:1.6;
}

/* GALLERY */

.gallery-scroll{

  display:flex;

  gap:28px;

  overflow-x:auto;

  scroll-snap-type:x mandatory;

  padding-bottom:15px;

  scroll-behavior:smooth;
}

.gallery-scroll::-webkit-scrollbar{
  height:10px;
}

.gallery-scroll::-webkit-scrollbar-thumb{

  background:#e0a56b;

  border-radius:999px;
}

.gallery-card{

  min-width:500px;

  flex-shrink:0;

  scroll-snap-align:center;
}

.gallery-card img{

  width:100%;

  height:600px;

  object-fit:contain;

  border-radius:30px;

  background:#fffaf3;

  box-shadow:
  0 10px 40px rgba(150,80,20,0.1);

  transition:0.35s;
}

.gallery-card img:hover{

  transform:scale(1.01);
}

/* REVIEWS */

.review-grid{

  display:grid;

  grid-template-columns:
  repeat(auto-fit,minmax(280px,1fr));

  gap:25px;
}

.review-card{

  background:#fffaf3;

  border-radius:30px;

  padding:40px;

  border:1px solid rgba(196,71,15,0.08);

  box-shadow:
  0 10px 40px rgba(150,80,20,0.07);
}

.stars{

  color:#e0821c;

  font-size:1.4rem;

  margin-bottom:18px;
}

.review-card p{

  color:#5c4530;

  line-height:1.7;

  margin-bottom:15px;
}

.review-card h4{
  color:#4a2f19;
}

/* BOOKING */

.booking-box{

  max-width:800px;

  margin:auto;

  background:#fffaf3;

  border-radius:35px;

  padding:55px;

  border:1px solid rgba(196,71,15,0.08);

  box-shadow:
  0 10px 50px rgba(150,80,20,0.1);
}

.booking-box h2{

  font-size:3rem;

  margin-bottom:15px;

  text-align:center;

  color:#4a2f19;
}

.booking-box p{

  text-align:center;

  margin-bottom:35px;

  color:#7a583c;
}

form{

  display:flex;

  flex-direction:column;

  gap:18px;
}

input,
textarea,
select{

  padding:18px;

  border:none;

  border-radius:18px;

  background:#f7e9d5;

  color:#4a2f19;

  font-size:1rem;
}

button{

  padding:18px;

  border:none;

  border-radius:18px;

  background:#c4470f;

  color:white;

  font-weight:700;

  cursor:pointer;

  transition:0.3s;
}

button:hover{

  background:#a63a0b;
}

/* FOOTER */

footer{

  text-align:center;

  padding:80px 20px;

  background:#efdcc2;
}

footer img{

  width:150px;

  margin-bottom:20px;
}

footer h3{

  font-size:2rem;

  margin-bottom:12px;

  color:#4a2f19;
}

footer p{

  margin-bottom:16px;

  color:#7a583c;
}

footer a{

  color:#c4470f;

  text-decoration:none;

  font-weight:700;
}

/* MOBILE */

@media(max-width:900px){

  .nav-links{
    display:none;
  }

  .hero h1{
    font-size:3.4rem;
  }

  .gallery-card{
    min-width:90%;
  }

  .gallery-card img{
    height:420px;
  }

  .booking-box{
    padding:35px 25px;
  }

  .section-header h2{
    font-size:2.5rem;
  }
}
