/* ============================================================
   URVARA GREENS – FINAL CLEAN PRODUCTION CSS
   Mobile-first • Optimized • Conflict-free
============================================================ */

/* -----------------------------
   Fonts & Variables
------------------------------*/
:root {
  --default-font: "Roboto", system-ui, sans-serif;
  --heading-font: "Amatic SC", cursive;
  --nav-font: "Inter", sans-serif;

  --background-color: #ffffff;
  --default-color: #2f3e2f;
  --heading-color: #1b5e20;
  --accent-color: #2e7d32;
  --surface-color: #f4f8f4;
  --contrast-color: #ffffff;

  --nav-color: #3a5a40;
  --nav-hover-color: #2e7d32;
}

/* -----------------------------
   Base Reset
------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--default-font);
  color: var(--default-color);
  background: var(--background-color);
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* -----------------------------
   Typography
------------------------------*/
h1, h2, h3, h4 {
  font-family: var(--heading-font);
  color: var(--heading-color);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.25s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
}

/* -----------------------------
   Sections & Scroll Offset
------------------------------*/
.section {
  padding: 60px 0;
  scroll-margin-top: 90px;
}

.light-background {
  background: #f1f8f4;
}

@media (max-width: 768px) {
  .section {
    padding: 45px 0;
    scroll-margin-top: 70px;
  }
}

/* -----------------------------
   Header & Navigation
------------------------------*/
.header {
  background: #ffffff;
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 999;
}

.site-logo {
  height: 64px;
}

.navmenu ul {
  display: flex;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.navmenu a {
  font-family: var(--nav-font);
  font-size: 15px;
  color: var(--nav-color);
  position: relative;
}

.navmenu a:hover,
.navmenu a.active {
  color: var(--nav-hover-color);
}

.navmenu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: var(--nav-hover-color);
  transition: 0.3s;
}

.navmenu a:hover::after,
.navmenu a.active::after {
  width: 100%;
}

.btn-getstarted {
  background: var(--accent-color);
  color: #ffffff;
  padding: 8px 22px;
  border-radius: 30px;
  font-size: 14px;
  box-shadow: 0 6px 18px rgba(46,125,50,0.35);
}

/* Mobile header */
@media (max-width: 768px) {
  .site-logo { height: 48px; }
  .btn-getstarted { display: none; }
}

/* -----------------------------
   Hero
------------------------------*/
.hero {
  min-height: 75vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f1f8f4 0%, #ffffff 60%);
}

.hero-title {
  font-size: 54px;
  line-height: 1.2;
}

.hero-title span {
  color: var(--accent-color);
}

.hero-subtext {
  font-size: 18px;
  margin: 20px 0 30px;
}

.hero-image img {
  max-height: 420px;
  object-fit: contain;
}

/* Mobile hero */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    text-align: center;
  }

  .hero-title { font-size: 34px; }
  .hero-subtext { font-size: 16px; }
  .hero-image img {
    max-height: 240px;
    margin-top: 24px;
  }
}

/* -----------------------------
   About (Modern)
------------------------------*/
.about-modern {
  background: linear-gradient(135deg, #ffffff, #f1f8f4);
}

.about-header {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 60px;
}

.about-badge {
  background: color-mix(in srgb, var(--accent-color), transparent 90%);
  color: var(--accent-color);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 13px;
  margin-bottom: 14px;
  display: inline-block;
}

.about-header h2 {
  font-size: 42px;
}

.about-header p {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
}

.about-values {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.about-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 26px 20px;
  text-align: center;
  box-shadow: 0 12px 30px rgba(0,0,0,0.06);
}

@media (max-width: 992px) {
  .about-values { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .about-values { grid-template-columns: 1fr; }
  .about-header h2 { font-size: 32px; }
}

/* -----------------------------
   Microgreens – Compact Grid
------------------------------*/
.micro-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  justify-items: center;
}

.micro-card {
  max-width: 300px;
  width: 100%;
  display: flex;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 12px;
  background: var(--surface-color);
  box-shadow: 0 4px 10px rgba(0,0,0,0.04);
}

.micro-img img {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: #ffffff;
  padding: 4px;
}

.micro-info h4 {
  font-size: 15px;
  margin: 0 0 4px;
}

.micro-info p {
  font-size: 12.5px;
  margin: 0;
}

/* Color themes */
.bg-sunflower { background: #f4f9f2; }
.bg-wheat { background: #eef7f1; }
.bg-mustard { background: #fff8e6; }
.bg-radish { background: #fdeff2; }
.bg-beet { background: #f7eef6; }
.bg-cabbage { background: #f2effa; }

@media (max-width: 992px) {
  .micro-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .micro-grid { grid-template-columns: 1fr; }
}

/* -----------------------------
   Growing Kits
------------------------------*/
.kit-card {
  background: var(--surface-color);
  border-radius: 16px;
  padding: 22px 16px;
  text-align: center;
  box-shadow: 0 8px 22px rgba(0,0,0,0.06);
}

.kit-icon {
  font-size: 34px;
  margin-bottom: 12px;
}

/* -----------------------------
   Seeds
------------------------------*/
.seed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}

.seed-cell {
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  border-radius: 14px;
  padding: 16px;
  text-align: center;
}

@media (max-width: 768px) {
  .seed-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .seed-grid { grid-template-columns: 1fr; }
}

/* -----------------------------
   Training Steps
------------------------------*/
.steps-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.step-card {
  background: #ffffff;
  border-radius: 22px;
  padding: 40px 26px 30px;
  text-align: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.06);
}

.step-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent-color);
  margin: 0 auto 16px;
  box-shadow: 0 10px 26px rgba(46,125,50,0.25);
}

@media (max-width: 992px) {
  .steps-wrapper { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 576px) {
  .steps-wrapper { grid-template-columns: 1fr; }
}

/* -----------------------------
   Contact – Business Card
------------------------------*/
.contact-card {
  max-width: 820px;
  margin: 0 auto;
  background: linear-gradient(135deg, #ffffff, #f1f8f4);
  border-radius: 18px;
  padding: 40px 50px;
  display: flex;
  gap: 40px;
  align-items: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.06);
}

.contact-left {
  flex: 1;
  text-align: center;
  border-right: 1px solid rgba(0,0,0,0.06);
  padding-right: 30px;
}

.contact-right {
  flex: 1.2;
}

.contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
}

@media (max-width: 768px) {
  .contact-card {
    flex-direction: column;
    padding: 30px 26px;
  }

  .contact-left {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.06);
    padding-bottom: 20px;
  }
}

/* -----------------------------
   Footer
------------------------------*/
.footer-organic {
  background: linear-gradient(180deg, #0f2f1d, #123f27);
  padding: 70px 0 40px;
  text-align: center;
  color: #e6f3ea;
}

.footer-logo {
  display: inline-block;
  width: 54px;
  margin-bottom: 12px;
}

.footer-note {
  font-size: 13px;
  color: #9fd3b2;
}

/* -----------------------------
   WhatsApp Button
------------------------------*/
.whatsapp-float {
  position: fixed;
  width: 56px;
  height: 56px;
  bottom: 24px;
  right: 24px;
  background-color: #25d366;
  color: #ffffff;
  border-radius: 50%;
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 20px rgba(37,211,102,0.45);
  z-index: 9999;
}

@media (max-width: 576px) {
  .whatsapp-float {
    width: 52px;
    height: 52px;
    font-size: 26px;
    bottom: 18px;
    right: 18px;
  }
}
/* ==================================================
   Mobile Collapsible Navigation
================================================== */

/* Hide toggle on desktop */
.mobile-nav-toggle {
  display: none;
  font-size: 30px;
  color: var(--heading-color);
  cursor: pointer;
}

/* Mobile styles */
@media (max-width: 992px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navmenu {
    position: fixed;
    inset: 0;
    background: rgba(15, 47, 29, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-100%);
    transition: transform 0.35s ease;
    z-index: 998;
  }

  .navmenu ul {
    flex-direction: column;
    gap: 22px;
    text-align: center;
  }

  .navmenu a {
    font-size: 20px;
    color: #ffffff;
  }

  .navmenu a::after {
    display: none;
  }

  .navmenu.active {
    transform: translateY(0);
  }

  body.nav-open {
    overflow: hidden;
  }
}
