/* FILE: style.css */
:root {
  --background: hsl(0 0% 100%);
  --forest-dark: hsl(152 40% 15%);
  --forest-medium: hsl(152 35% 25%);
  --forest-light: hsl(152 25% 35%);
  --gold: hsl(35 80% 65%);
  --gold-dark: hsl(35 70% 55%);
  --cream: hsl(42 15% 96%);
  --sage: hsl(152 20% 85%);
  --hero-text-gradient: linear-gradient(
    to right,
    hsl(35 80% 65%),
    hsl(42 15% 96%)
  );
  --text-gradient: linear-gradient(to right, hsl(35 80% 65%), hsl(152 35% 25%));
  --icon-gradient: linear-gradient(
    to bottom right,
    hsl(35 80% 65%),
    hsl(35 80% 65% /0)
  );
  --radius: 0.75rem;
  --container: 1200px;
  --shadow-premium: 0 20px 40px -12px rgba(13, 62, 45, 0.15);
  --muted-foreground: 152 15% 45%;
  --input: 152 15% 88%;
  --gradient-premium: linear-gradient(135deg, var(--gold), var(--gold-dark));
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial;
  background: var(--background);
  color: hsl(152 30% 20%);
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: absolute;
  width: 100%;
  top: 0;
  z-index: 60;
  background: none;

  text-align: center;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 72px;
}
.brand-img {
  height: 48px;
}
.nav-desktop {
  display: flex;
  gap: 24px;
}
.nav-desktop a {
  color: white;
  text-decoration: none;
  font-weight: 600;
}
.nav-desktop a:hover {
  color: var(--gold);
}

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.85),
    rgba(0, 0, 0, 0.75) 50%,
    rgba(0, 0, 0, 0.8)
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
}
.hero-logo {
  max-height: 360px;
  width: auto;
  filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.8));
  margin: 0 auto 16px;
  display: block;
}
.hero-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 0 0 12px;
  line-height: 1.05;
}
.hero-gradient {
  background: var(--hero-text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}

.hero-sub {
  opacity: 0.95;
  margin: 0 auto;
  max-width: 48rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 1rem;
  animation: fade-in 0.6s ease-out;
}
.btn {
  display: inline-block;
  border-radius: 10px;
  padding: 0.75rem 1.5rem;
  border: 0;
  font-size: 1rem;
  line-height: 1.5rem;
  cursor: pointer;
  font-weight: 600;
}
.btn-premium {
  background-image: var(--gradient-premium);
  box-shadow: var(--shadow-premium);
  color: var(--forest-dark);
}
.btn-outline {
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  font-weight: 500 !important;
}

.btn-outline:hover {
  background: var(--gradient-premium);
  color: var(--forest-dark);
}

.scroll-indicator {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}
.mouse {
  width: 28px;
  height: 42px;
  border: 2px solid var(--gold);
  border-radius: 14px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 6px;
}
.wheel {
  width: 6px;
  height: 10px;
  background: var(--gold);
  border-radius: 3px;
  animation: pulse 1s infinite;
}
@keyframes pulse {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
  100% {
    transform: translateY(0);
  }
}

/* Products Section */
.products-section {
  background: white;
  padding: 64px 0;
}
.section-header {
  margin-bottom: 36px;
  text-align: center;
}
.section-title {
  font-size: clamp(3rem, 5vw, 3.75rem);
  line-height: 1;
  color: var(--forest-dark);
  font-weight: 700;
  margin-bottom: 2rem;
}
.section-sub {
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
  font-size: 1.25rem;
  max-width: 56rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2.5rem;
}

.gradient-text {
  background: var(--text-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
}
.grid {
  display: grid;
  gap: 18px;
}
.herb-grid {
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 28px;
}
.premium-grid {
  grid-template-columns: repeat(1, 1fr);
  margin-bottom: 18px;
}

.card {
  background: white;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  border: 0;
}

.card:hover {
  transform: scale(1.05);
  transition-duration: 0.3s;
  animation-duration: 0.3s;
}
.card-link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.card-media img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}
.card-body {
  padding: 16px;
}
.card-body h3 {
  margin: 0 0 8px;
  font-size: 18px;
}
.card-body p {
  margin: 0;
  color: hsl(152 15% 45%);
  font-size: 14px;
}
.section-note {
  margin: 4rem 0;
  color: hsl(var(--muted-foreground));
  font-size: 1.125rem;
  line-height: 1.75rem;
  text-align: center;
}

.cta-card {
  max-width: 880px;
  margin: 28px auto;
  background: linear-gradient(135deg, var(--forest-dark), var(--forest-medium));
  color: white;
  border-radius: 14px;
  padding: 28px;
  box-shadow: var(--shadow-premium);
}
.cta-inner {
  text-align: center;
}
.cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 12px;
}

.cta-icon svg {
  width: 2rem;
  height: 2rem;
  color: var(--forest-dark);
}
.email-form {
  margin-top: 12px;
}
.email-form input {
  padding: 12px 16px;
  border-radius: 10px;
  border: 0;
  min-width: 280px;
  margin-bottom: 1rem;
}
.email-form .btn {
  padding: 12px 16px;
  min-width: 280px;

}
.small {
  opacity: 0.9;
  margin-top: 12px;
  color: var(--gold);
}

/* Grow Guide */
.grow-guide-section {
  padding: 8rem 0;
  background: linear-gradient(
    to bottom right,
    #fff8f0,
    #f7f9f5 50%,
    #edf2e7 100%
  );
}

.container {
  max-width: 80rem;
  margin: 0 auto;
}


.features-list .feature {
  display: flex;
  align-items: center;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  color: hsl(var(--muted-foreground));
}

.features-list .check {
  color: #d4af37;

  margin-right: 0.5rem;
}

.email-capture {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  max-width: 400px;
}

.email-capture input {
  flex: 1;
  padding: 0.75rem 1rem;
  font-size: 1rem;
  border-radius: calc(var(--radius) - 2px);
  border: 1px solid hsl(var(--input));
}

.email-capture button {
  padding: 0.75rem 1.5rem;
  background: var(--gradient-premium);
  color: #000;
  border: none;
  border-radius: calc(var(--radius) - 2px);
  cursor: pointer;
  transition: background 0.3s;
  font-size: 1rem;
  line-height: 1.5rem;
  transition: transform 0.3s;
}

.email-capture button:hover {
  transform: scale(1.05);
}

.grow-guide-image {
  margin-top: 1rem;
}

.grow-guide-image .image-wrapper {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
}

.grow-guide-image img {
  width: 100%;
  display: block;
}

.image-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5);
}

.overlay-content h3 {
  color: #d4af37;
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}

.overlay-content p {
  color: #fff;
  font-size: 0.875rem;
}

/* Expert Cards */
.expert-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}

.expert-cards .card {
  background: none;
  border: 1px solid rgba(212, 175, 55, 0.2);
  padding: 1.5rem;
  text-align: center;
  border-radius: 1rem;
  transition: transform 0.3s, box-shadow 0.3s, border-color 0.3s;
  cursor: pointer;
}

.expert-cards .card:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: rgba(212, 175, 55, 0.4);
}

.expert-cards .icon {
  background: var(--icon-gradient);
  font-size: 2rem;
  width: 64px;
  height: 64px;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  transition: transform 0.3s;
}

.expert-cards .card:hover .icon {
  transform: scale(1.1);
}

expert-cards .card h4 {
  font-size: 1.125rem;
  line-height: 1.75rem;
  margin-bottom: 0.75rem;
  color: hsl(var(--forest-dark));
}

.expert-cards .card p {
  color: hsl(var(--muted-foreground));
  line-height: 1.625;
  font-size: 0.875rem;
}

/* Footer */
.footer {
  background-color: var(--forest-dark); /* forest-dark */
  color: #fff;
}

.footer .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
  text-align: center;
}

.footer-top {
  gap: 2rem;
  text-align: center;
}

.footer .brand .logo {
  height: 16rem;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: brightness(0) invert(1);
  transition: opacity 0.3s;
  text-align: center;
}

.footer .brand .logo:hover {
  opacity: 0.8;
}

.footer-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 0;
  margin: 0;
  list-style: none;
}

.footer-nav ul li a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-nav ul li a:hover {
  color: #d4af37; /* gold */
}

.footer-nav .contact-email {
  margin-top: 1rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.footer-bottom {
  border-top: 1px solid #3b6e4d; /* forest-light */
  padding-top: 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-bottom .legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.875rem;
}

.footer-bottom .legal-links a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-bottom .legal-links a:hover {
  color: #d4af37;
}

.footer-bottom .copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

@media (min-width: 768px) {

  .grow-guide-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.grow-guide-image {
  margin-top: 0;
}
  .footer-top {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }

  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

}

/* Toast */
.toast {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 200;
}
.toast .item {
  background: #0b3b2b;
  color: white;
  padding: 12px 16px;
  border-radius: 10px;
  margin-top: 8px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

/* Responsive */
@media (min-width: 640px) {
  .herb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .premium-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .email-form {
    display: flex;
    gap: 12px;
    justify-content: center;
    
  }

  .email-form input {
    margin-bottom: 0;
  }

}
@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }
  .mobile-menu-toggle {
    display: none;
  }
  .hero-logo {
    max-height: 24rem;
  }
  .herb-grid {
    grid-template-columns: repeat(4, 1fr);
    margin-bottom: 3rem;
  }
  .premium-grid {
    grid-template-columns: repeat(4, 1fr);
  }
  .guide-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 1023px) {
  .header-inner .brand-img {
    height: 40px;
  }
}

/* small tweaks */
a {
  color: inherit;
}
