/* ================= RESET ================= */
*{margin:0;padding:0;box-sizing:border-box;}

body{
  font-family:'Montserrat',sans-serif;
  background:#f4f1ec; /* Beige background */
  color:#1f2d24;
  line-height:1.7;
}

/* ================= FONTS ================= */
.bodoni{font-family:'Bodoni Moda',serif;font-weight:700;}

/* ================= NAVBAR ================= */
.navbar{
  position:sticky;
  top:0;
  z-index:1000;
  display:flex;
  justify-content:center;
  align-items:center;
  padding:20px 50px;
  background:#1f3d2b; /* Forest green */
  box-shadow:0 3px 8px rgba(0,0,0,0.2);
}

.logo{
  font-family:'Bodoni Moda',serif;
  font-size:46px;
  text-decoration:underline;
  letter-spacing:1px;
  color:#f6efe4;
}

.nav-links{
  position:absolute;
  right:40px;
}
.nav-links a{
  margin-left:25px;
  text-decoration:none;
  font-weight:700;
  color:#f6efe4;
  font-size:18px;
}

/* Hamburger */
.hamburger{
  position:absolute;
  left:35px;
  top:30px;
  width:36px;
  height:24px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
}
.hamburger span{
  height:4px;
  background:#f6efe4;
  border-radius:2px;
}

/* ================= HERO ================= */
.hero{
  text-align:center;
  padding:100px 20px;
  background:linear-gradient(120deg,#1f3d2b,#2f5d42);
  color:#f6efe4;
}
.hero h1{
  font-family:'Bodoni Moda',serif;
  font-size:62px;
  letter-spacing:1px;
}
.hero p{
  font-size:22px;
  max-width:900px;
  margin:20px auto;
  font-weight:600;
}
.value-points{
  list-style:none;
  font-size:20px;
  font-weight:700;
  margin-top:30px;
}
.value-points li{margin:10px 0;}

/* CTA */
.cta-btn{
  margin-top:30px;
  display:inline-block;
  padding:16px 45px;
  background:#d4b17a;
  color:#1f3d2b;
  font-size:22px;
  border-radius:8px;
  text-decoration:none;
  transition:0.3s;
}
.cta-btn:hover{
  background:#c3a06a;
  transform:scale(1.05);
}

/* ================= CATEGORIES ================= */
.categories{
  padding:80px 20px;
  background:#f4f1ec;
  text-align:center;
}
.categories h2{
  font-family:'Bodoni Moda',serif;
  font-size:42px;
  color:#1f3d2b;
}
.category-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:30px;
}
.category{
  background:#fff;
  padding:15px;
  border-radius:12px;
  transition:0.3s;
  border:1px solid #e0d6c6;
}
.category:hover{transform:translateY(-8px);}
.category img{
  width:100%;
  border-radius:10px;
}
.category p{
  margin-top:15px;
  font-size:21px;
  font-weight:700;
  color:#1f3d2b;
}

/* ================= GALLERY ================= */
.gallery{
  padding:80px 20px;
  background:#e8e2d8;
  text-align:center;
}
.gallery h2{
  font-family:'Bodoni Moda',serif;
  font-size:42px;
  color:#1f3d2b;
}
.gallery-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:20px;
}
.gallery-item img{
  width:100%;
  border-radius:12px;
  transition:0.3s;
}
.gallery-item img:hover{transform:scale(1.05);}

/* ================= REVIEWS ================= */
.reviews{
  padding:80px 20px;
  background:#f4f1ec;
  text-align:center;
}
.reviews h2{
  font-family:'Bodoni Moda',serif;
  font-size:42px;
  color:#1f3d2b;
}

/* ================= WHY US ================= */
.why-choose-us{
  padding:80px 20px;
  background:#1f3d2b;
  text-align:center;
  color:#f6efe4;
}
.why-choose-us h2{
  font-family:'Bodoni Moda',serif;
  font-size:42px;
}
.services-grid{
  margin-top:40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
}
.service{
  background:#2f5d42;
  padding:30px;
  border-radius:12px;
  box-shadow:0 5px 15px rgba(0,0,0,0.2);
}
.service p{
  font-size:19px;
  font-weight:600;
}

/* ================= ABOUT ================= */
.about-us{
  padding:80px 20px;
  background:#f4f1ec;
  text-align:center;
}
.about-us h2{
  font-family:'Bodoni Moda',serif;
  font-size:42px;
  color:#1f3d2b;
}
.about-us p{
  max-width:900px;
  margin:20px auto;
  font-size:20px;
  font-weight:600;
}

/* ================= FOOTER ================= */
footer{
  background:#1f3d2b;
  color:#f6efe4;
  text-align:center;
  padding:40px 20px;
}

/* ================= WHATSAPP ================= */
.whatsapp-float{
  position:fixed;
  bottom:35px;
  right:35px;
  width:65px;
  height:65px;
  background:#25d366;
  border-radius:50%;
  display:flex;
  justify-content:center;
  align-items:center;
  z-index:1000;
}
.whatsapp-float img{width:35px;}

.whatsapp-btn{
  display:inline-block;
  padding:16px 40px;
  background:#d4b17a;
  color:#1f3d2b;
  font-size:20px;
  font-weight:700;
  border-radius:10px;
  text-decoration:none;
}

/* ================= MOBILE ================= */
@media(max-width:768px){
  .logo{font-size:32px;}
  .hero h1{font-size:42px;}
  .nav-links{display:none;}
}
