/* NutzVeda - Minimal, earthy, responsive styles */
:root{
  --product: #9FC39A; /* base product green */
  --product-dark: #386E42; /* darker green for buttons/accents */
  --bg: #EAF7EB; /* light tint of the product green (primary page color) */
  --hero-bg: #D7F0D7; /* slightly richer tint for hero and major sections */
  --card: #F3FAF3; /* light sage (cards/content blocks use product tint) */
  --heading: #274E36; /* stronger, darker green for headings */
  --body: #355E46; /* calm, readable green for body text */
  --text: var(--body); /* compatibility token */
  --muted: #000000; /* muted mid-green for secondary text */
  --divider: #CFE5CF; /* subtle green divider */
  --max-width: 1100px;
  --radius: 12px;
  --container-padding: 24px;
}   
*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, 'Segoe UI', Roboto, Arial, sans-serif;
  background:var(--bg);
  color:var(--body);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  line-height:1.5;
}  
.container{max-width:var(--max-width);margin:0 auto;padding:0 var(--container-padding)}
/* Sticky header - override container defaults to span full width */
.container.header{
  position:sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg);
  max-width: 100%;
  width: 100%;
  margin: 0;
  padding: 18px var(--container-padding);
  left: 0;
  right: 0;
  box-sizing: border-box;
}
.header{display:flex;align-items:center;justify-content:space-between;flex-wrap:wrap;gap:12px}
.header .brand{display:flex;align-items:normal;gap:12px}
.header img{height:56px;width:auto}
/* Responsive logo sizing to keep header balanced on small screens */
@media (max-width:520px){
  .header img{height:44px}
}
.header .brand div{color:var(--text)}
/* Override inline color in brand title to ensure brand matches theme */
.header .brand > div { color: var(--heading) !important }

/* Navigation Styling */
.nav{display:flex;gap:18px;align-items:center}
.nav a{color:var(--body);text-decoration:none;font-weight:600;position:relative;padding-bottom:6px;white-space:nowrap}
.nav a:hover{color:var(--product-dark)}
.nav a.active, .nav a[aria-current="page"]{color:var(--product-dark);box-shadow:inset 0 -3px 0 var(--product-dark);}
.cta-badge{background:linear-gradient(90deg,var(--product-dark),var(--product));color:white;padding:8px 12px;border-radius:999px;font-weight:700;font-size:13px;white-space:nowrap}

/* Hamburger Menu Button */
.nav-toggle{display:none;background:none;border:none;cursor:pointer;color:var(--body);padding:6px;align-items:center;justify-content:center}
.nav-toggle svg{width:24px;height:24px;stroke:currentColor}

/* Mobile: Hide hamburger on desktop, hide nav on small screens until toggled */
@media (max-width:720px){
  .nav-toggle{display:flex}
  .header{flex-wrap:wrap;gap:0;width:100%}
  .brand{flex:1;min-width:0}
  .nav{position:absolute;top:calc(100% + 18px);left:0;right:0;flex-direction:column;background:var(--bg);border-top:1px solid var(--divider);padding:16px 16px;gap:12px;display:none;z-index:100;margin:0;width:100%;box-sizing:border-box}
  .nav.active{display:flex}
  .nav a{padding:12px 8px;color:var(--body);display:block;white-space:normal}
  .nav a:hover{background:var(--card);border-radius:6px;padding-left:12px}
  .cta-badge{width:100%;text-align:center;padding:12px 8px;margin:0;white-space:normal}
} 
/* Main Content - add spacing to prevent header overlap */
main{margin-top: 20px}
.brand-title {
  font-size: medium;
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;          /* adjust for desktop */
  letter-spacing: 0.02em;
}

.brand-title .nutz {
  font-weight: 700;         /* SemiBold = 600, Bold = 700 */
  font-style: normal;
}

.brand-title .veda {
  font-weight: 700;
  font-style: italic;
  margin-left: 0;       /* subtle breathing room */
}


/* Hero */
.hero{display:grid;grid-template-columns:1fr 460px;gap:32px;align-items:center;padding:64px 48px;background:var(--hero-bg);border-radius:var(--radius);overflow:hidden}
.hero .lead{max-width:620px} 
.h1{font-size:42px;margin:0 0 14px;color:var(--heading);line-height:1.05}
h1,h2,h3,h4{color:var(--heading)} 
/* Global link styles: use product dark for clarity but keep subtle */
a{color:var(--product-dark);text-decoration:none}
a:hover{text-decoration:underline}
a:focus-visible,button:focus-visible,.product-image-slider__viewport:focus-visible{outline:2px solid var(--product-dark);outline-offset:3px}

.lead p{margin:0 0 20px;color:var(--muted)}
.btn{display:inline-block;background:var(--product-dark);color:white;padding:12px 18px;border-radius:8px;text-decoration:none;transition:transform .18s ease,filter .18s ease}
.btn:hover{transform:scale(1.02);filter:brightness(1.06);text-decoration:none}
.btn-with-icon{display:inline-flex;align-items:center;gap:10px}
.btn-with-icon .btn-icon{height:20px;width:auto;display:block;flex:0 0 auto}

.cta-buttons{display:flex;gap:12px;align-items:center;flex-wrap:wrap}
.hero .product-card{background:var(--card);border-radius:var(--radius);padding:18px;box-shadow:0 6px 18px rgba(56,110,66,0.06);text-align:center}
.hero img{max-width:100%;height:auto;border-radius:8px} 
/* Sections */
.section{padding:20px 0;background:var(--bg)}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.card{background:var(--card);padding:20px;border-radius:12px;color:var(--product-dark);box-shadow:0 4px 12px rgba(56,110,66,0.06);border:1px solid var(--divider)}
.product-hero{display:flex;gap:24px;align-items:center}
.product-hero img{width:320px;border-radius:12px}
.labels{display:inline;gap:12px;align-items:center;margin-top:12px}
.labels img{height:32px} 

.product-image-slider{width:260px;max-width:100%;touch-action:pan-y}
.product-image-slider__viewport{overflow:hidden;border-radius:12px;width:100%}
.product-image-slider__track{display:flex;transform:translateX(0);transition:transform .32s ease;will-change:transform}
.product-image-slider__track.dragging{transition:none;cursor:grabbing}
.product-image-slider__track img{flex:0 0 100%;width:100%;height:auto;display:block;user-select:none;-webkit-user-drag:none}
.product-image-slider__dots{display:flex;justify-content:center;gap:8px;margin-top:10px}
.product-image-slider__dot{width:8px;height:8px;border-radius:50%;border:0;background:var(--divider);padding:0;cursor:pointer}
.product-image-slider__dot.active{background:var(--product-dark)}

/* Footer */
.footer{border-top:1px solid var(--divider);padding:28px 0;margin-top:36px;color:var(--muted);display:flex;justify-content:space-between;align-items:center;background:transparent}
.form{max-width:520px;background:var(--card);padding:20px;border-radius:12px;box-shadow:0 8px 20px rgba(56,110,66,0.06)}
.input,textarea{width:100%;padding:12px;border:1px solid var(--divider);border-radius:8px;margin-bottom:12px;background:transparent;color:var(--product-dark)}
textarea{min-height:120px}
.small{font-size:16px;color:var(--muted)} 
/* Extra components (Founders, Testimonials, Gallery, Footer) */
.founders{display:flex;gap:24px;align-items:stretch;justify-content:space-between;flex-wrap:wrap;margin-top:20px}
.founder{flex:1 1 45%;max-width:45%;display:flex;flex-direction:column;align-items:center;text-align:center;padding:16px;border-radius:12px}
.founder img{width:144px;height:144px;object-fit:cover;border-radius:50%;border:4px solid var(--card);box-shadow:0 6px 14px rgba(56,110,66,0.06)}
@media (max-width:880px){
  .founder img{width:120px;height:120px}
}
.founder h4{margin:12px 0 6px;color:var(--product-dark)}
.founder .role{font-weight:600;color:var(--muted);font-size:14px;margin:0}

/* Stack founders vertically on smaller screens */
@media (max-width:880px){
  .founder{flex:1 1 100%;max-width:100%;padding:12px}
}

.testimonials{margin-top:28px}
.testimonial-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}
.testimonial-card{background:var(--card);padding:18px;border-radius:12px;color:var(--product-dark);border:1px solid var(--divider);box-shadow:0 4px 12px rgba(56,110,66,0.04)}
.testimonial-card p{margin:0 0 8px;color:var(--muted);line-height:1.6}
.testimonial-card .who{font-weight:700;color:var(--product-dark);font-size:14px}
.testimonial-card strong{display:block;font-size:18px;margin-bottom:12px;color:var(--heading)}


.gallery-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px;margin-top:18px}
.gallery-grid img{width:200px;height:250px;object-fit:cover;border-radius:8px;border:1px solid var(--divider);display:block;transform:scale(1);transform-origin:center center;transition:transform 460ms ease-in-out;will-change:transform;backface-visibility:hidden}
.gallery-grid img:hover{transform:scale(1.26);cursor:pointer}

.auto-gallery{overflow:hidden;position:relative;width:100%;margin-top:18px}
.auto-gallery-track{display:flex;gap:12px;align-items:center;will-change:transform;transform:translate3d(0,0,0)}
.auto-gallery-set{display:flex;gap:12px;align-items:center;flex:0 0 auto}
.auto-gallery-card{flex:0 0 auto;background:var(--card);padding:10px;border-radius:12px;box-shadow:0 4px 12px rgba(56,110,66,0.06);border:1px solid var(--divider)}
.auto-gallery-card img{display:block;height:320px;width:auto;object-fit:contain;border-radius:8px;max-width:none}

@media (prefers-reduced-motion: reduce){
  html:focus-within{scroll-behavior:auto}
  *,*::before,*::after{animation-duration:0.01ms !important;animation-iteration-count:1 !important;transition-duration:0.01ms !important}
  .auto-gallery-track{transform:translate3d(0,0,0) !important}
}


.site-footer{background:var(--product-dark);color:var(--card);padding:28px 0;margin-top:36px}
.site-footer .footer-container{max-width:var(--max-width);margin:0 auto;padding:0 var(--container-padding);display:flex;justify-content:space-between;gap:20px;align-items:center;flex-wrap:wrap}
.site-footer a{color:var(--card);text-decoration:none}
.site-footer .links{display:flex;gap:20px}
.site-footer .socials img{height:30px;opacity:0.95}
.site-footer .footer-bottom{text-align:center;padding:10px var(--container-padding);border-top:1px sorgba(255,255,255,0.1);margin-top:0px;font-size:14px;margin-bottom: 0px;}
.footer-bottom .small{color:var(--card);opacity:1}

/* Responsive */
@media (max-width:880px){
  .hero{grid-template-columns:1fr;gap:20px;padding:48px 32px}
  .grid-3{grid-template-columns:1fr}
  .product-hero{flex-direction:column}
  .container.header{padding:12px var(--container-padding)}
  .benefits-grid{grid-template-columns:1fr}
  .testimonial-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:repeat(2,1fr)}
  .auto-gallery-card img{height:260px}
} 
@media (max-width:520px){
  .container{padding:0 16px}
  .h1{font-size:28px}
  .cta-badge{display:none}
  .hero{padding:28px 16px}
  .gallery-grid{grid-template-columns:1fr;justify-items:center}
  .cta-buttons{flex-direction:column;align-items:stretch}
  .cta-buttons .btn{text-align:center}
  .btn-with-icon .btn-icon{height:18px}
  .auto-gallery-track,.auto-gallery-set{gap:8px}
  .auto-gallery-card{padding:8px}
  .auto-gallery-card img{height:200px}
}


/* Utility */
.center{text-align:center}
.muted{color:var(--muted)}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
