/* =========================
   RESET
========================= */

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Inter',sans-serif;
  background:#edf5ef;
  color:#1f1f1f;
  overflow-x:hidden;
  line-height:1.7;
}

/* =========================
   TOPBAR
========================= */

.topbar{
  background:#2f7d4a;
  color:#fff;
  text-align:center;
  padding:12px;
  font-size:12px;
  letter-spacing:2px;
  font-weight:600;
}

/* =========================
   NAVBAR
========================= */

.navbar{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:22px 7%;
  background:#ffffff;
  position:sticky;
  top:0;
  z-index:999;
  border-bottom:1px solid #dbe8de;
}

.logo{
  font-size:2rem;
  font-weight:800;
  color:#2f7d4a;
}

nav{
  display:flex;
  gap:35px;
}

nav a{
  text-decoration:none;
  color:#222;
  font-weight:600;
  transition:0.3s;
}

nav a:hover{
  color:#2f7d4a;
}

/* =========================
   HERO
========================= */

.hero{
  min-height:95vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:100px 7%;
  position:relative;

  background:
  linear-gradient(rgba(18,50,28,0.72), rgba(18,50,28,0.78)),
  url('images/hero.jpg');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  color:#fff;
}

.hero-content{
  max-width:850px;
  text-align:center;
}

.hero-tag{
  display:inline-block;
  padding:10px 20px;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.25);
  border-radius:50px;
  margin-bottom:25px;
  font-size:13px;
  letter-spacing:2px;
}

.hero h1{
  font-size:5rem;
  line-height:1.05;
  margin-bottom:30px;
  font-weight:800;
}

.hero p{
  font-size:1.2rem;
  color:#e6f5e8;
  max-width:720px;
  margin:auto;
}

/* =========================
   BUTTONS
========================= */

.hero-buttons{
  margin-top:40px;
  display:flex;
  justify-content:center;
  gap:20px;
  flex-wrap:wrap;
}

.primary-btn{
  background:#35a159;
  color:#fff;
  padding:16px 34px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.primary-btn:hover{
  background:#2a8248;
  transform:translateY(-3px);
}

.secondary-btn{
  border:2px solid #fff;
  color:#fff;
  padding:16px 34px;
  border-radius:12px;
  text-decoration:none;
  font-weight:700;
  transition:0.3s;
}

.secondary-btn:hover{
  background:#fff;
  color:#2f7d4a;
}

/* =========================
   SECTIONS
========================= */

section{
  padding:100px 7%;
}

.section-heading{
  text-align:center;
  margin-bottom:60px;
}

.section-heading h2{
  font-size:3rem;
  color:#2f7d4a;
  margin-bottom:20px;
}

.section-heading p{
  max-width:800px;
  margin:auto;
  color:#555;
}

/* =========================
   WELLNESS SECTION
========================= */

.wellness-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(300px,1fr));
  gap:30px;
}

.wellness-card{
  background:#fff;
  border-radius:28px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.wellness-card:hover{
  transform:translateY(-8px);
}

.wellness-image{
  height:260px;
  background-size:cover;
  background-position:center;
}

.wellness-content{
  padding:35px;
}

.wellness-content h3{
  color:#2f7d4a;
  font-size:1.8rem;
  margin-bottom:15px;
}

.wellness-content p{
  color:#555;
}

/* =========================
   BANNER SECTION
========================= */

.story-banner{
  min-height:70vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background:
  linear-gradient(rgba(10,35,15,0.70), rgba(10,35,15,0.78)),
  url('images/wellness-banner.jpg');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  color:#fff;
}

.story-overlay{
  max-width:850px;
  padding:20px;
}

.story-overlay h2{
  font-size:4rem;
  line-height:1.1;
}

.story-overlay p{
  margin-top:20px;
  color:#e3f5e7;
}

/* =========================
   FEATURED SECTION
========================= */

.featured-section{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}

.featured-image{
  min-height:520px;
  border-radius:30px;

  background:
  linear-gradient(rgba(22,44,26,0.30), rgba(22,44,26,0.30)),
  url('images/lifestyle-banner.jpg');

  background-size:cover;
  background-position:center;
}

.featured-text h2{
  font-size:3rem;
  color:#2f7d4a;
  margin-bottom:25px;
}

.featured-text p{
  color:#555;
  margin-bottom:25px;
}

/* =========================
   CATEGORY CARDS
========================= */

.category-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
  gap:35px;
}

.category-card{
  background:#fff;
  border-radius:30px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.05);
  transition:0.3s;
}

.category-card:hover{
  transform:translateY(-10px);
}

.category-image{
  height:320px;
  background-size:cover;
  background-position:center;
}

.flowers-img{
  background-image:url('images/flowers.jpg');
}

.oils-img{
  background-image:url('images/oils.jpg');
}

.vapes-img{
  background-image:url('images/vapes.jpg');
}

.category-content{
  padding:35px;
}

.category-content h3{
  color:#2f7d4a;
  font-size:2rem;
  margin-bottom:18px;
}

.category-content p{
  color:#555;
}

/* =========================
   ABOUT HERO
========================= */

.about-hero{
  min-height:75vh;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;

  background:
  linear-gradient(rgba(15,35,20,0.72), rgba(15,35,20,0.78)),
  url('images/about-bg.jpg');

  background-size:cover;
  background-position:center;
  background-repeat:no-repeat;

  color:#fff;
}

.about-overlay{
  max-width:850px;
  padding:20px;
}

.about-overlay h1{
  font-size:4.5rem;
  margin-bottom:25px;
}

.about-overlay p{
  color:#e2f2e5;
  font-size:1.1rem;
}

/* =========================
   FAQ
========================= */

.faq-section{
  background:#f7faf8;
}

.faq-box{
  max-width:900px;
  margin:auto;
  background:#fff;
  padding:50px;
  border-radius:30px;
  box-shadow:0 10px 30px rgba(0,0,0,0.04);
}

.faq-box h3{
  color:#2f7d4a;
  margin-top:30px;
  margin-bottom:10px;
  font-size:1.4rem;
}

.faq-box p{
  color:#555;
}

/* =========================
   FOOTER
========================= */

footer{
  background:#1c4127;
  color:#fff;
  text-align:center;
  padding:70px 20px;
}

footer h2{
  font-size:2rem;
  margin-bottom:15px;
}

footer p{
  color:#d7eadb;
}

/* =========================
   FLOATING BUTTONS
========================= */

.floating-btn{
  position:fixed;
  right:20px;
  padding:16px 26px;
  border-radius:50px;
  color:#fff;
  text-decoration:none;
  font-weight:700;
  z-index:999;
  box-shadow:0 10px 25px rgba(0,0,0,0.18);
}

.whatsapp-float{
  bottom:95px;
  background:#25D366;
}

.telegram-float{
  bottom:25px;
  background:#229ED9;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1000px){

  .featured-section{
    grid-template-columns:1fr;
  }

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

  .story-overlay h2{
    font-size:3rem;
  }

  .about-overlay h1{
    font-size:3.2rem;
  }

}

@media(max-width:768px){

  nav{
    gap:18px;
    flex-wrap:wrap;
    justify-content:center;
  }

  .navbar{
    flex-direction:column;
    gap:18px;
  }

  .hero{
    min-height:auto;
    padding:120px 7%;
  }

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

  .hero p{
    font-size:1rem;
  }

  .section-heading h2{
    font-size:2.3rem;
  }

  .story-overlay h2{
    font-size:2.5rem;
  }

  .featured-text h2{
    font-size:2.3rem;
  }

  .about-overlay h1{
    font-size:2.5rem;
  }

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

  .floating-btn{
    right:15px;
    padding:14px 22px;
    font-size:14px;
  }

}
