/* ============================================================
   Mom's Cuisine – Home Page Styles (home.css)
   ============================================================ */

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --green:  #1a4a1e;
  --green2: #2e7a35;
  --gold:   #c8882a;
  --gold2:  #e8a84a;
  --cream:  #faf5ec;
  --brown:  #3b1f0b;
  --text:   #2a1a0a;
  --muted:  #7a6650;
  --white:  #ffffff;
  --shadow: 0 8px 40px rgba(58,31,11,0.18);
}

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Lato', sans-serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ── Shared Utility ──────────────────────────────────────── */
.section-label {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: .72rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 10px;
}
h2.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 900;
  color: var(--green);
  line-height: 1.15;
}
.divider { width: 60px; height: 3px; background: var(--gold); border-radius: 2px; margin: 18px 0 26px; }
.btn-primary {
  background: var(--gold); color: var(--white);
  border: none; padding: 14px 32px; border-radius: 40px;
  font-family: 'Lato', sans-serif;
  font-size: .9rem; font-weight: 700; letter-spacing: .06em;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 4px 20px rgba(200,136,42,.4);
}
.btn-primary:hover { background: var(--gold2); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(200,136,42,.5); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  padding: 14px 32px; border-radius: 40px;
  font-size: .9rem; font-weight: 700; letter-spacing: .06em;
  cursor: pointer; text-decoration: none; display: inline-block;
  transition: border-color .2s, background .2s;
}
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(250,245,236,0.96);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--gold2);
  box-shadow: 0 2px 20px rgba(58,31,11,.08);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  max-width: 1100px; margin: 0 auto; padding: 0 24px; height: 68px;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 900;
  color: var(--green); text-decoration: none;
  display: flex; align-items: center; gap: 10px;
}
.nav-logo .leaf { font-size: 1.6rem; }
.nav-links { display: flex; gap: 0; list-style: none; }
.nav-links a {
  display: block; padding: 8px 20px;
  font-size: .88rem; font-weight: 700;
  letter-spacing: .08em; text-transform: uppercase;
  color: var(--brown); text-decoration: none;
  border-radius: 4px;
  transition: color .2s, background .2s;
}
.nav-links a:hover, .nav-links a.active {
  color: var(--gold); background: rgba(200,136,42,.08);
}
.nav-cta {
  background: var(--green); color: var(--cream) !important;
  border-radius: 30px; padding: 8px 22px !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--green2) !important; color: var(--cream) !important; }

/* ── HERO ────────────────────────────────────────────────── */
.hero {
  min-height: 92vh;
  background:
    linear-gradient(160deg, rgba(26,74,30,.82) 0%, rgba(58,31,11,.68) 100%),
    url('https://images.unsplash.com/photo-1604329760661-e71dc83f8f26?w=1400&q=80') center/cover no-repeat;
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 68px;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 100px;
  background: linear-gradient(to bottom, transparent, var(--cream));
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 680px; padding: 40px 24px 80px;
  margin-left: 8vw;
  animation: fadeUp .9s ease both;
}
.hero-tag {
  display: inline-block;
  background: var(--gold); color: var(--white);
  font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase;
  padding: 5px 14px; border-radius: 30px; margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.05;
  color: var(--white); margin-bottom: 20px;
}
.hero h1 em { color: var(--gold2); font-style: italic; }
.hero p {
  font-size: 1.12rem; color: rgba(255,255,255,.88);
  line-height: 1.7; max-width: 480px; margin-bottom: 36px;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── STATS BAR ───────────────────────────────────────────── */
.stats-bar { background: var(--green); padding: 32px 24px; }
.stats-inner {
  max-width: 900px; margin: 0 auto;
  display: flex; justify-content: space-around; flex-wrap: wrap; gap: 24px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; font-weight: 900; color: var(--gold2);
  display: block;
}
.stat-label { font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.65); }

/* ── WELCOME ─────────────────────────────────────────────── */
.welcome { padding: 90px 24px; }
.welcome-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}
.welcome-img-wrap { position: relative; border-radius: 12px; overflow: visible; }
.welcome-img-wrap img {
  width: 100%; height: 480px; object-fit: cover; display: block;
  border-radius: 12px;
}
.welcome-badge {
  position: absolute; bottom: 24px; right: -20px;
  background: var(--gold); color: var(--white);
  border-radius: 50%; width: 110px; height: 110px;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif;
  box-shadow: var(--shadow);
}
.welcome-badge .big { font-size: 1.8rem; font-weight: 900; line-height: 1; }
.welcome-badge .small { font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; text-align: center; line-height: 1.3; }
.welcome-text p { font-size: 1.05rem; color: var(--muted); line-height: 1.85; margin-bottom: 20px; }

/* ── SPECIALTIES ─────────────────────────────────────────── */
.specialties { background: var(--green); padding: 80px 24px; }
.specialties .section-label { color: var(--gold2); }
.specialties h2.section-title { color: var(--white); text-align: center; margin-bottom: 14px; }
.spec-sub { text-align: center; color: rgba(255,255,255,.65); margin-bottom: 52px; font-size: 1rem; }
.spec-grid {
  max-width: 1000px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.spec-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 12px; padding: 32px 24px; text-align: center;
  transition: transform .25s, background .25s;
}
.spec-card:hover { transform: translateY(-6px); background: rgba(255,255,255,.1); }
.spec-icon { font-size: 2.6rem; margin-bottom: 14px; }
.spec-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem; font-weight: 700; color: var(--white); margin-bottom: 10px;
}
.spec-card p { font-size: .9rem; color: rgba(255,255,255,.6); line-height: 1.65; }

/* ── TESTIMONIAL ─────────────────────────────────────────── */
.testimonial-section { padding: 80px 24px; background: var(--cream); }
.testimonial-inner { max-width: 700px; margin: 0 auto; text-align: center; }
.testimonial-inner .section-label { justify-content: center; display: flex; }
blockquote {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.8rem);
  font-style: italic; color: var(--green);
  line-height: 1.55; margin: 22px 0 20px;
}
.testimonial-author { font-weight: 700; color: var(--gold); font-size: .9rem; letter-spacing: .08em; }

/* ── FOOTER ──────────────────────────────────────────────── */
footer {
  background: var(--brown);
  padding: 48px 24px 28px;
  text-align: center;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 900; color: var(--gold2);
  margin-bottom: 10px;
}
.footer-tagline { font-size: .88rem; color: rgba(255,255,255,.5); margin-bottom: 28px; }
.footer-links { display: flex; justify-content: center; gap: 28px; flex-wrap: wrap; margin-bottom: 28px; }
.footer-links a { font-size: .82rem; color: rgba(255,255,255,.55); text-decoration: none; letter-spacing: .08em; text-transform: uppercase; transition: color .2s; }
.footer-links a:hover { color: var(--gold2); }
.footer-copy { font-size: .75rem; color: rgba(255,255,255,.3); }

/* ── Animation ───────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .welcome-grid { grid-template-columns: 1fr; }
  .spec-grid { grid-template-columns: 1fr; }
  .hero-content { margin-left: 0; }
  .welcome-badge { right: 0; }
  .nav-links a { padding: 8px 12px; font-size: .78rem; }
}
@media (max-width: 480px) {
  .stats-inner { flex-direction: column; align-items: center; }
}
