/* ── YAVO FOODS · SHARED STYLES ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-dark: #3c643c;
  --green-mid: #4d7a4d;
  --green-soft: #5c8c5c;
  --green-light: #e8efe0;
  --green-leaf: #8cb43c;
  --gold: #f0b450;
  --gold-light: #f5c970;
  --gold-pale: #fdf2d8;
  --cream: #faf8f2;
  --cream-warm: #f3eedb;
  --text: #2a3520;
  --text-muted: #7a8c6a;
  --white: #ffffff;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
  line-height: 1.6;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(ellipse 80% 60% at 50% -10%, rgba(75,100,45,0.10) 0%, transparent 70%),
    radial-gradient(ellipse 60% 40% at 80% 110%, rgba(232,168,48,0.07) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}

/* ── NAV ── */
nav.main-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 60px;
  background: rgba(250,248,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(31,58,22,0.08);
}

.nav-logo {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo img {
  height: 38px;
  width: auto;
  display: block;
}

.nav-logo small {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  text-transform: uppercase;
  border-left: 1px solid rgba(60,100,60,0.2);
  padding-left: 12px;
  line-height: 1.2;
  display: flex;
  align-items: center;
  height: 38px;
}

nav.main-nav ul {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}

nav.main-nav ul a {
  text-decoration: none;
  color: var(--text);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

nav.main-nav ul a:hover,
nav.main-nav ul a.active { color: var(--gold); }

.nav-cta {
  background: var(--green-dark);
  color: var(--cream) !important;
  padding: 10px 22px;
  border-radius: 50px;
  transition: background 0.2s !important;
}

.nav-cta:hover { background: var(--green-soft) !important; color: var(--cream) !important; }

/* ── HAMBURGER (mobile/tablet) ── */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 101;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--green-dark);
  margin: 5px 0;
  transition: 0.3s;
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 64px;
  left: 0; right: 0;
  background: var(--cream);
  border-bottom: 1px solid rgba(60,100,60,0.1);
  padding: 20px 28px 30px;
  z-index: 99;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.mobile-menu.open { display: block; }

.mobile-menu ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 14px 4px;
  text-decoration: none;
  color: var(--text);
  font-size: 1.02rem;
  font-weight: 500;
  border-bottom: 1px solid rgba(60,100,60,0.08);
}

.mobile-menu a.nav-cta {
  background: var(--green-dark);
  color: var(--cream) !important;
  padding: 14px 22px;
  border-radius: 50px;
  text-align: center;
  margin-top: 14px;
  border: none;
}

/* ── BUTTONS ── */
.btn-primary {
  display: inline-block;
  background: var(--green-dark);
  color: var(--cream);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 6px 20px rgba(31,58,22,0.2);
}
.btn-primary:hover { background: var(--green-soft); transform: translateY(-2px); }

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--green-dark);
  padding: 14px 34px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  border: 1.5px solid var(--green-dark);
  transition: background 0.2s, color 0.2s;
}
.btn-secondary:hover { background: var(--green-dark); color: var(--cream); }

/* ── SECTION BASE ── */
section {
  position: relative;
  z-index: 1;
  padding: 56px 60px;
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--green-dark);
  line-height: 1.2;
  margin-bottom: 18px;
}

.section-title em {
  font-style: italic;
  color: var(--gold);
  font-weight: 400;
}

.section-sub {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 620px;
  line-height: 1.75;
}

.section-centered { text-align: center; margin-bottom: 44px; }
.section-centered .section-label,
.section-centered .section-title,
.section-centered .section-sub { text-align: center; }
.section-centered .section-sub { margin: 0 auto; }

/* ── PAGE HEADER (for subpages) ── */
.page-header {
  padding: 130px 60px 50px;
  text-align: center;
  position: relative;
  z-index: 1;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  color: var(--green-dark);
  line-height: 1.15;
  margin-bottom: 20px;
}

.page-header h1 em { font-style: italic; color: var(--gold); font-weight: 400; }

.page-header p {
  max-width: 620px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1.08rem;
  line-height: 1.7;
}

/* ── FOOTER ── */
footer.main-footer {
  background: var(--green-dark);
  color: rgba(250,248,242,0.65);
  padding: 64px 60px 30px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1.4fr 0.8fr;
  gap: 60px;
  max-width: 1180px;
  margin: 0 auto 40px;
  gap: 50px;
  max-width: 1180px;
  margin: 0 auto 40px;
}

.footer-brand h3 {
  font-family: 'Playfair Display', serif;
  color: var(--cream);
  font-size: 1.6rem;
  margin-bottom: 10px;
  letter-spacing: 1px;
}

.footer-brand h3 span { color: var(--gold-light); }

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.7;
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 18px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }

.footer-col a {
  color: rgba(250,248,242,0.7);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--gold-light); }

/* Footer icons-only (Follow) */
.footer-icons-only {
  display: flex;
  gap: 10px;
}

.footer-icons-only a {
  width: 40px; height: 40px;
  background: rgba(250,248,242,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.footer-icons-only a:hover {
  background: var(--gold);
  color: var(--green-dark);
  transform: translateY(-2px);
}

.footer-icons-only svg { width: 18px; height: 18px; }

/* Footer contact in one line each */
.footer-col.contact-col ul li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  color: rgba(250,248,242,0.7);
}

.footer-col.contact-col svg.contact-mini {
  width: 14px; height: 14px;
  fill: var(--gold-light);
  flex-shrink: 0;
}

.footer-bottom {
  border-top: 1px solid rgba(250,248,242,0.1);
  padding-top: 24px;
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(250,248,242,0.5);
}

.footer-bottom span { color: var(--gold-light); }

/* Hide old bottom socials (we kept them in old code) */
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  background: rgba(250,248,242,0.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--cream);
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--gold); }
.footer-social svg { width: 16px; height: 16px; fill: currentColor; }

/* ── ANIMATIONS ── */
@keyframes fadeDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  nav.main-nav { padding: 14px 28px; }
  nav.main-nav ul { display: none; }
  .hamburger { display: block; }
  section { padding: 50px 32px; }
  .page-header { padding: 110px 32px 44px; }
  footer.main-footer { padding: 50px 32px 24px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  nav.main-nav { padding: 12px 20px; }
  .nav-logo img { height: 32px; }
  .nav-logo small {
    font-size: 0.55rem;
    padding-left: 10px;
    letter-spacing: 0.15em;
  }
  section { padding: 44px 28px; }
  .page-header { padding: 100px 28px 36px; }
  .page-header h1 { padding: 0 8px; }
  .page-header p { padding: 0 8px; }
  footer.main-footer { padding: 40px 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { font-size: 0.75rem; }
}
