/* ============================================
   FOODCRAVED.ONLINE — SHARED STYLESHEET
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --green-deep: #1a4a1a;
  --green-mid: #2d6e2d;
  --green-light: #e8f5e8;
  --gold: #c8860a;
  --gold-light: #fef3dc;
  --cream: #fdfaf4;
  --text-dark: #1c1c1c;
  --text-mid: #4a4a4a;
  --text-muted: #7a7a7a;
  --border: #e0ddd5;
  --white: #ffffff;
}

body {
  font-family: Georgia, 'Times New Roman', serif;
  background: var(--cream);
  color: var(--text-dark);
  line-height: 1.7;
}

/* ── HEADER ── */
header {
  background: var(--green-deep);
  padding: 0 2rem;
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  border-bottom: 3px solid var(--gold);
}
.logo-text {
  font-family: Georgia, serif;
  font-size: 1.45rem;
  font-weight: bold;
  color: #f5e08a;
  text-decoration: none;
  letter-spacing: -0.5px;
}
.logo-text span { color: #a8d8a8; font-style: italic; }

nav { display: flex; gap: 1.6rem; align-items: center; }
nav a {
  color: #c8e6c8;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav a:hover, nav a.active { color: #f5e08a; border-bottom-color: var(--gold); }

/* ── DISCLOSURE ── */
.disclosure {
  background: var(--gold-light);
  border-left: 4px solid var(--gold);
  padding: 9px 20px;
  font-family: Arial, sans-serif;
  font-size: 0.8rem;
  color: #6b4c00;
  text-align: center;
}

/* ── PAGE HERO ── */
.page-hero {
  background: var(--green-deep);
  padding: 3rem 2rem;
  text-align: center;
}
.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: #f8f0cc;
  margin-bottom: 0.5rem;
}
.page-hero p { color: #b8d8b8; font-size: 1rem; }

/* ── SECTION WRAPPERS ── */
.section { max-width: 1100px; margin: 0 auto; padding: 3rem 2rem; }
.section-label {
  font-family: Arial, sans-serif;
  font-size: 0.73rem;
  font-weight: bold;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}
.section-title {
  font-size: 1.9rem;
  color: var(--green-deep);
  margin-bottom: 2rem;
  line-height: 1.25;
}

/* ── RECIPE TAG ── */
.recipe-tag {
  display: inline-block;
  background: var(--green-light);
  color: var(--green-mid);
  font-family: Arial, sans-serif;
  font-size: 0.7rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 11px;
  border-radius: 20px;
  margin-bottom: 0.8rem;
}

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  background: var(--green-deep);
  color: var(--white);
  padding: 10px 24px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.85rem;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.2s;
}
.btn:hover { background: var(--green-mid); }
.btn-outline {
  display: inline-block;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 8px 20px;
  text-decoration: none;
  font-family: Arial, sans-serif;
  font-size: 0.82rem;
  font-weight: bold;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--gold); color: #fff; }

/* ── CARDS ── */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.card:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(0,0,0,0.09); }
.card img { width: 100%; height: 210px; object-fit: cover; display: block; }
.card-body { padding: 1.2rem 1.4rem 1.5rem; }
.card-body h3 { font-size: 1.15rem; color: var(--green-deep); margin-bottom: 0.5rem; line-height: 1.3; }
.card-body p { font-size: 0.87rem; color: var(--text-mid); margin-bottom: 0.8rem; }
.card-meta {
  font-family: Arial, sans-serif;
  font-size: 0.76rem;
  color: var(--text-muted);
  display: flex;
  gap: 1rem;
  border-top: 1px solid var(--border);
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

/* ── DIVIDER ── */
.divider { border: none; border-top: 1px solid var(--border); max-width: 1100px; margin: 0 auto; }

/* ── SEASONAL BANNER ── */
.seasonal-banner { background: var(--green-deep); padding: 2.5rem 2rem; text-align: center; }
.seasonal-banner h2 { font-size: 1.5rem; color: #f5e08a; margin-bottom: 0.4rem; }
.seasonal-banner p { color: #b8d8b8; font-size: 0.93rem; margin-bottom: 1.4rem; }
.produce-list { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.produce-pill {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.25);
  color: #e8f8e8;
  padding: 6px 15px;
  border-radius: 20px;
  font-family: Arial, sans-serif;
  font-size: 0.81rem;
}

/* ── FOOTER ── */
footer {
  background: var(--green-deep);
  color: #a8cca8;
  padding: 3rem 2rem 2rem;
  border-top: 3px solid var(--gold);
}
.footer-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p { font-size: 0.84rem; line-height: 1.6; color: #88aa88; margin-top: 0.6rem; }
.footer-col h5 {
  font-family: Arial, sans-serif;
  font-size: 0.73rem;
  font-weight: bold;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #f5e08a;
  margin-bottom: 1rem;
}
.footer-col a, .footer-col p {
  display: block;
  font-family: Arial, sans-serif;
  font-size: 0.84rem;
  color: #88aa88;
  text-decoration: none;
  margin-bottom: 0.5rem;
  line-height: 1.5;
}
.footer-col a:hover { color: #c8e6c8; }
.footer-bottom {
  max-width: 1100px;
  margin: 1.4rem auto 0;
  font-family: Arial, sans-serif;
  font-size: 0.77rem;
  color: #5a7a5a;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  nav { gap: 1rem; }
}
@media (max-width: 560px) {
  nav { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
}
