/* ================= ROOT VARIABLES ================= */
:root {
  --green: #2f5d3a;
  --light: #fbf9f4;
  --gold: #c7a34a;
  --dark: #1e1e1e;
}

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

body {
  font-family: 'Inter', sans-serif;
  background: var(--light);
  color: var(--dark);
  line-height: 1.6;
}

/* ================= CONTAINER ================= */
.container {
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* ================= HEADER ================= */
.header {
  position: sticky;
  top: 0;
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 9999;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
}

.logo {
  height: 60px;
}

/* NAV */
.nav {
  display: flex;
}

.nav a {
  margin: 0 14px;
  text-decoration: none;
  color: var(--dark);
  font-weight: 500;
  font-size: 15px;
}

.nav a:hover {
  color: var(--green);
}

/* ================= BUTTONS ================= */
.btn-primary {
  background: var(--green);
  color: #fff;
  padding: 12px 22px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
}

.btn-outline {
  border: 1px solid var(--green);
  color: var(--green);
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
}

.btn-whatsapp {
  background: #25d366;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  text-decoration: none;
}

/* ================= HERO VIDEO ================= */
.hero-video-section {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
  background: #000;
}

/* YouTube iframe */
.hero-youtube-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: scale(1.2);
  pointer-events: none;
}

/* MP4 fallback */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Overlay */
.hero-video-overlay {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  padding: 20px;
}

.hero-video-overlay h1 {
  font-family: 'Playfair Display', serif;
  font-size: 46px;
  margin-bottom: 14px;
}

.hero-video-overlay p {
  font-size: 18px;
  margin-bottom: 22px;
}

/* CTA group */
.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.hero-badge {
  font-size: 14px;
  opacity: 0.95;
}

/* ================= SCROLL OFFSET ================= */
#home,
#story,
#productstory,
#productbenefit,
#business {
  scroll-margin-top: 90px;
}

/* ================= ABOUT ================= */
.about {
  padding: 40px 0 20px;
}

.section-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 34px;
  margin-bottom: 18px;
}

.about-content {
  max-width: 850px;
  margin: 0 auto;
  text-align: left;
}

.about-content p {
  margin-bottom: 18px;
  color: #444;
}

/* Vision & Mission */
.about-vision-mission {
  margin-top: 20px;
}

.about-vision-mission h4 {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  color: var(--green);
  margin-bottom: 6px;
}

.about-vision-mission p {
  max-width: 820px;
  margin: 0 auto 18px;
  text-align: left;
}

/* ================= PRODUCT STORY ================= */
.product {
  padding: 30px 0;
}

.product-story-block {
  max-width: 900px;
  margin: auto;
}

.product-story-block h3,
.product-story-block h4 {
  margin-top: 26px;
}

.story-subtitle {
  font-style: italic;
  margin-bottom: 12px;
  color: #666;
}

.story-image {
  display: flex;
  justify-content: center;
  margin: 30px 0;
}

.story-image img {
  width: 100%;
  max-width: 700px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.15);
}

/* ================= PRODUCT BENEFITS ================= */
.product1 {
  padding: 40px 0;
}

.product1-benefits-block {
  max-width: 850px;
  margin: auto;
}

.product1-benefits-block h4 {
  margin-top: 18px;
}

/* ================= BUSINESS ================= */
.business {
  background: #fff;
  padding: 70px 0;
  text-align: center;
}

.business-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 22px;
  flex-wrap: wrap;
}

/* ================= FOOTER ================= */
.footer {
  background: var(--green);
  color: #fff;
  text-align: center;
  padding: 18px 0;
  font-size: 14px;
}

/* ================= MOBILE FIX (EDGE + SAFARI SAFE) ================= */
@media (max-width: 768px) {

  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  body {
    padding-top: 90px;
  }

  .header-inner {
    flex-direction: column;
    gap: 8px;
  }

  .logo {
    height: 48px;
  }

  .nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav a {
    margin: 6px 10px;
    font-size: 14px;
  }

  .hero-video-section {
    height: 65vh;
  }

  .hero-video-overlay h1 {
    font-size: 30px;
  }
}