/* ════════════════════════════════════════════════════
   Omena Kitchen — Shared Stylesheet
   ════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,500;0,600;0,700;0,800;1,500;1,600&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --amber:        #b45309;
  --amber-light:  #d97706;
  --amber-pale:   #fef3c7;
  --amber-soft:   #fde68a;
  --green:        #15803d;
  --green-light:  #dcfce7;
  --red:          #b91c1c;
  --brown:        #78350f;
  --cream:        #fffbeb;
  --cream-dark:   #fef9ee;
  --surface:      #ffffff;
  --text-dark:    #1c1917;
  --text-main:    #292524;
  --text-sub:     #57534e;
  --text-muted:   #a8a29e;
  --border:       #e7e5e4;
  --shadow-sm:    0 1px 4px rgba(0,0,0,.07);
  --shadow-md:    0 6px 24px rgba(0,0,0,.1);
  --shadow-lg:    0 16px 48px rgba(0,0,0,.14);
  --radius:       14px;
  --radius-sm:    8px;
  --nav-h:        72px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--cream);
  color: var(--text-main);
  line-height: 1.7;
  font-size: 15px;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  line-height: 1.2;
  color: var(--text-dark);
}
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
h3 { font-size: 1.3rem; }
h4 { font-size: 1.05rem; }
p  { color: var(--text-sub); margin-bottom: .9rem; }
p:last-child { margin-bottom: 0; }

/* ── Navigation ── */
.nav {
  position: sticky; top: 0; z-index: 200;
  height: var(--nav-h);
  background: rgba(255,251,235,.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center;
  padding: 0 5%;
  gap: 2rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: background .3s;
}
.nav-brand {
  display: flex; align-items: center; gap: .6rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.45rem; font-weight: 700;
  color: var(--amber);
  white-space: nowrap;
}
.nav-brand .dot { color: var(--green); }
.nav-links {
  display: flex; align-items: center; gap: .25rem;
  margin-left: auto;
  list-style: none;
}
.nav-links a {
  padding: .45rem .9rem;
  border-radius: 6px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-sub);
  transition: color .2s, background .2s;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--amber);
  background: var(--amber-pale);
}
.nav-cta {
  margin-left: .5rem;
  background: var(--amber) !important;
  color: #fff !important;
  border-radius: 8px !important;
  padding: .45rem 1.1rem !important;
  font-weight: 600 !important;
  transition: background .2s !important;
}
.nav-cta:hover { background: var(--brown) !important; }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .75rem 1.75rem;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: .9rem; font-weight: 600;
  cursor: pointer; border: none;
  transition: all .2s;
}
.btn-primary {
  background: var(--amber);
  color: #fff;
}
.btn-primary:hover { background: var(--brown); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(180,83,9,.3); }
.btn-outline {
  background: transparent;
  color: var(--amber);
  border: 2px solid var(--amber);
}
.btn-outline:hover { background: var(--amber); color: #fff; }
.btn-white {
  background: #fff;
  color: var(--amber);
  font-weight: 700;
}
.btn-white:hover { background: var(--amber-pale); }

/* ── Section wrapper ── */
.section { padding: 5rem 5%; }
.section-alt { background: var(--cream-dark); }
.section-dark {
  background: var(--brown);
  color: #fff;
}
.section-center { text-align: center; }

.section-label {
  display: inline-block;
  font-size: .75rem; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--amber);
  margin-bottom: .75rem;
}
.section-title { margin-bottom: .75rem; }
.section-sub {
  font-size: 1.05rem; color: var(--text-sub);
  max-width: 560px; margin: 0 auto 3rem;
  line-height: 1.7;
}
.section-center .section-sub { text-align: center; }

/* ── Divider ── */
.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  border-radius: 2px;
  margin: .75rem 0 1.5rem;
}
.divider-center { margin: .75rem auto 1.5rem; }

/* ── Hero (shared) ── */
.hero-inner {
  min-height: 460px;
  display: flex; flex-direction: column;
  align-items: flex-start; justify-content: center;
  padding: 4rem 5%;
  position: relative;
}
.hero-inner.center { align-items: center; text-align: center; }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  color: #fff;
  font-size: .78rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: .35rem 1rem; border-radius: 20px;
  margin-bottom: 1.25rem;
  backdrop-filter: blur(4px);
}
.hero-title { color: #fff; margin-bottom: 1rem; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
.hero-sub { color: rgba(255,255,255,.88); font-size: 1.05rem; max-width: 540px; margin-bottom: 2rem; line-height: 1.7; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

/* ── Cards ── */
.card {
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
  border: 1px solid var(--border);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card-body { padding: 1.4rem; }
.card-label {
  font-size: .72rem; font-weight: 700;
  letter-spacing: 1.2px; text-transform: uppercase;
  color: var(--amber); margin-bottom: .4rem;
}
.card-title { font-size: 1.1rem; margin-bottom: .5rem; }
.card-text { font-size: .88rem; color: var(--text-sub); line-height: 1.65; }

/* ── Dish image placeholder ── */
.dish-img {
  height: 200px;
  display: flex; align-items: center; justify-content: center;
  font-size: 3.5rem;
  position: relative;
  overflow: hidden;
}
.dish-img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.35) 0%, transparent 60%);
}

/* Dish colour themes */
.dish-stew   { background: linear-gradient(135deg, #7f1d1d 0%, #dc2626 50%, #b45309 100%); }
.dish-fried  { background: linear-gradient(135deg, #78350f 0%, #d97706 50%, #fbbf24 100%); }
.dish-greens { background: linear-gradient(135deg, #14532d 0%, #16a34a 50%, #86efac 100%); }
.dish-curry  { background: linear-gradient(135deg, #713f12 0%, #ca8a04 50%, #fde68a 100%); }
.dish-spicy  { background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 40%, #ea580c 100%); }
.dish-pilau  { background: linear-gradient(135deg, #422006 0%, #92400e 50%, #d97706 100%); }
.dish-soup   { background: linear-gradient(135deg, #1e3a5f 0%, #1d4ed8 50%, #60a5fa 100%); }
.dish-samaki { background: linear-gradient(135deg, #064e3b 0%, #059669 50%, #6ee7b7 100%); }

/* ── Grid layouts ── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.75rem; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── Stat / icon blocks ── */
.icon-box {
  text-align: center; padding: 2rem 1.5rem;
}
.icon-wrap {
  width: 68px; height: 68px;
  border-radius: 50%;
  background: var(--amber-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin: 0 auto 1rem;
  transition: background .2s, transform .2s;
}
.card:hover .icon-wrap { background: var(--amber-soft); transform: scale(1.08); }
.icon-title { font-size: 1rem; font-weight: 700; margin-bottom: .4rem; color: var(--text-dark); }
.icon-text  { font-size: .86rem; color: var(--text-sub); line-height: 1.6; }

/* ── Nutrition facts bar ── */
.nutrient-bar { margin-bottom: 1.1rem; }
.nutrient-label {
  display: flex; justify-content: space-between;
  font-size: .83rem; font-weight: 600; margin-bottom: .3rem;
  color: var(--text-dark);
}
.bar-track {
  height: 8px; background: var(--border);
  border-radius: 4px; overflow: hidden;
}
.bar-fill {
  height: 100%; border-radius: 4px;
  background: linear-gradient(90deg, var(--amber), var(--amber-light));
  transition: width 1s ease;
}
.bar-fill.green { background: linear-gradient(90deg, var(--green), #4ade80); }
.bar-fill.red   { background: linear-gradient(90deg, var(--red), #f87171); }

/* ── Quote / pull quote ── */
.pull-quote {
  border-left: 4px solid var(--amber);
  padding: 1.25rem 1.5rem;
  background: var(--amber-pale);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  margin: 1.5rem 0;
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--brown);
}

/* ── Team card ── */
.team-card {
  text-align: center;
  background: var(--surface);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: transform .25s, box-shadow .25s;
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1rem;
  border: 3px solid var(--amber-pale);
}
.team-name  { font-size: 1.05rem; font-weight: 700; margin-bottom: .2rem; }
.team-role  { font-size: .8rem; font-weight: 600; color: var(--amber); text-transform: uppercase; letter-spacing: .8px; margin-bottom: .75rem; }
.team-bio   { font-size: .85rem; color: var(--text-sub); line-height: 1.6; }

/* ── Contact ── */
.contact-detail {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.25rem; border-radius: var(--radius-sm);
  background: var(--surface); border: 1px solid var(--border);
  margin-bottom: 1rem;
  transition: box-shadow .2s;
}
.contact-detail:hover { box-shadow: var(--shadow-md); }
.contact-icon {
  width: 46px; height: 46px; flex-shrink: 0;
  background: var(--amber-pale);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.15rem;
}
.contact-label { font-size: .75rem; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--text-muted); margin-bottom: .15rem; }
.contact-val   { font-size: .95rem; font-weight: 600; color: var(--text-dark); }

/* ── Form ── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .4rem; color: var(--text-dark); }
.form-control {
  width: 100%; padding: .75rem 1rem;
  border: 1.5px solid var(--border); border-radius: 8px;
  background: var(--surface);
  font-family: 'Inter', sans-serif; font-size: .9rem;
  color: var(--text-main);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-control:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(180,83,9,.12); }
textarea.form-control { resize: vertical; min-height: 130px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ── Footer ── */
footer {
  background: var(--text-dark);
  color: rgba(255,255,255,.75);
  padding: 3.5rem 5% 1.5rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; margin-bottom: 2.5rem; }
.footer-brand {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 700;
  color: var(--amber-light); margin-bottom: .75rem;
}
.footer-tagline { font-size: .88rem; line-height: 1.7; margin-bottom: 1rem; color: rgba(255,255,255,.6); }
.footer-heading { font-size: .8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: rgba(255,255,255,.5); margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: .5rem; }
.footer-links a { font-size: .88rem; color: rgba(255,255,255,.65); transition: color .2s; }
.footer-links a:hover { color: var(--amber-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.25rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: .82rem; color: rgba(255,255,255,.4);
  flex-wrap: wrap; gap: .5rem;
}

/* ── Mobile hamburger button ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  margin-left: auto;
  padding: 8px;
  background: none;
  border: none;
  border-radius: 6px;
  transition: background .2s;
}
.nav-hamburger:hover { background: var(--amber-pale); }
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--amber);
  border-radius: 2px;
}

/* ── Full-screen mobile nav overlay ── */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(28,15,6,.97);
  z-index: 300;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  padding: 2rem;
}
.mobile-nav.open { display: flex; }
.mobile-nav-close {
  position: absolute;
  top: 1.25rem; right: 1.5rem;
  background: none; border: none;
  color: rgba(255,255,255,.7);
  font-size: 2.2rem;
  cursor: pointer;
  line-height: 1;
  padding: .25rem .5rem;
  transition: color .2s;
}
.mobile-nav-close:hover { color: #fff; }
.mobile-nav a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem; font-weight: 600;
  color: rgba(255,255,255,.88);
  transition: color .2s;
}
.mobile-nav a:hover,
.mobile-nav a.active { color: var(--amber-light); }
.mobile-nav .mob-cta {
  margin-top: .5rem;
  background: var(--amber);
  color: #fff !important;
  padding: .65rem 2.5rem;
  border-radius: 8px;
}

/* ── Two-column responsive helper (replaces inline grid styles) ── */
.two-col-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
  max-width: 960px;
  margin: 0 auto;
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .two-col-grid { gap: 2rem; }
}

@media (max-width: 640px) {
  /* Nav */
  .nav-links    { display: none; }
  .nav-hamburger { display: flex; }

  /* Grids → single column */
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .two-col-grid  { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid   { grid-template-columns: 1fr; gap: 2rem; }
  .form-row      { grid-template-columns: 1fr; }

  /* Spacing */
  .section    { padding: 3rem 5%; }
  .hero-inner { padding: 2.5rem 5%; min-height: 300px; }

  /* Banner strip */
  .banner-strip { gap: 1.25rem; padding: .85rem 5%; }

  /* Hero stats row */
  .hero-stats { gap: 1.5rem; margin-top: 2rem; padding-top: 1.5rem; }
  .stat-num   { font-size: 1.6rem; }

  /* Typography */
  .pull-quote  { font-size: .92rem; padding: 1rem 1.1rem; }
  .section-sub { font-size: .95rem; margin-bottom: 2rem; }

  /* Buttons */
  .btn       { padding: .7rem 1.3rem; font-size: .85rem; }
  .hero-btns { gap: .75rem; }
  .hero-btns .btn { flex: 1 1 140px; justify-content: center; }

  /* Footer */
  .footer-bottom { flex-direction: column; text-align: center; gap: .4rem; }
}
