/* ===========================
   BBQ '79 — Stoer Dark Theme
   =========================== */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;600;700&family=Open+Sans:wght@400;600&display=swap');

:root {
  --fire: #e05c00;
  --fire-dark: #b04500;
  --fire-glow: #ff8c00;
  --bg: #0e0e0e;
  --bg-card: #1a1a1a;
  --bg-section: #141414;
  --text: #e8e0d4;
  --text-muted: #9a8f83;
  --border: #2e2e2e;
  --white: #ffffff;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: 'Open Sans', sans-serif;
  font-size: 16px;
  line-height: 1.7;
}

/* ---- TYPOGRAPHY ---- */

h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.2;
}

h1 { font-size: 3.5rem; color: var(--white); }
h2 { font-size: 2.2rem; color: var(--fire); margin-bottom: 1rem; }
h3 { font-size: 1.5rem; color: var(--white); margin-bottom: 0.5rem; }
h4 { font-size: 1.1rem; color: var(--fire-glow); margin-bottom: 0.4rem; }

p { margin-bottom: 1rem; color: var(--text); }
a { color: var(--fire); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--fire-glow); }

/* ---- NAVBAR ---- */

nav {
  background: #080808;
  border-bottom: 2px solid var(--fire);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 0 2rem;
}

.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}

.nav-logo {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--fire);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.nav-logo span {
  color: var(--white);
}

.nav-links {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  padding-bottom: 3px;
  border-bottom: 2px solid transparent;
  transition: all 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--fire);
  border-bottom-color: var(--fire);
}

/* ---- HERO ---- */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #080808;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/bbq79_keuken.jpeg');
  background-size: cover;
  background-position: center;
  opacity: 0.4;
  filter: brightness(0.7) saturate(1.2);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(14,14,14,0.85) 0%, rgba(14,14,14,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-tag {
  display: inline-block;
  background: var(--fire);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 4px 14px;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-size: 5rem;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.hero h1 .accent { color: var(--fire); }

.hero-subtitle {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 4px;
  margin-bottom: 1.5rem;
}

.hero-desc {
  max-width: 560px;
  font-size: 1.05rem;
  color: var(--text);
  margin-bottom: 2.5rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  padding: 14px 32px;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  display: inline-block;
}

.btn-primary {
  background: var(--fire);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--fire-glow);
  color: var(--white);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--border);
}

.btn-outline:hover {
  border-color: var(--fire);
  color: var(--fire);
}

/* ---- PAGE HEADER ---- */

.page-header {
  background: #080808;
  border-bottom: 2px solid var(--border);
  padding: 5rem 2rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(224,92,0,0.08) 0%, transparent 70%);
}

.page-header .chapter-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--fire);
  margin-bottom: 0.8rem;
}

.page-header h1 {
  font-size: 3.5rem;
  position: relative;
}

.page-header p {
  max-width: 680px;
  margin: 1rem auto 0;
  color: var(--text-muted);
  font-size: 1.1rem;
}

/* ---- SECTIONS ---- */

.section {
  padding: 5rem 2rem;
}

.section-alt {
  background: var(--bg-section);
}

.container {
  max-width: 1100px;
  margin: 0 auto;
}

.section-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* ---- CHAPTER GRID (HOME) ---- */

.chapter-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.chapter-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  position: relative;
  transition: border-color 0.2s, transform 0.2s;
  overflow: hidden;
}

.chapter-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--fire);
  transform: scaleX(0);
  transition: transform 0.2s;
  transform-origin: left;
}

.chapter-card:hover {
  border-color: var(--fire);
  transform: translateY(-3px);
}

.chapter-card:hover::before {
  transform: scaleX(1);
}

.chapter-num {
  font-family: 'Oswald', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--border);
  line-height: 1;
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.chapter-card:hover .chapter-num {
  color: var(--fire-dark);
}

.chapter-card h3 {
  margin-bottom: 0.8rem;
}

.chapter-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.chapter-card .read-more {
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fire);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.chapter-card .read-more::after {
  content: '→';
}

/* ---- MEAT CATEGORY GRID ---- */

.meat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.meat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: border-color 0.2s, transform 0.2s;
}

.meat-card:hover {
  border-color: var(--fire);
  transform: translateY(-3px);
}

.meat-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  opacity: 0.85;
  transition: opacity 0.2s;
}

.meat-card:hover img {
  opacity: 1;
}

.meat-card-body {
  padding: 1.2rem;
}

.meat-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.meat-card-body p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---- CONTENT BLOCKS ---- */

.content-block {
  max-width: 820px;
}

.content-block p {
  color: var(--text);
}

.highlight-box {
  background: var(--bg-card);
  border-left: 4px solid var(--fire);
  padding: 1.5rem 2rem;
  margin: 2rem 0;
}

.highlight-box p {
  margin-bottom: 0;
  font-style: italic;
  color: var(--text);
}

/* ---- TABLE ---- */

.bbq-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
}

.bbq-table th {
  background: var(--fire);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  text-align: left;
}

.bbq-table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  color: var(--text);
  font-size: 0.9rem;
}

.bbq-table tr:hover td {
  background: var(--bg-card);
}

/* ---- RUB CARDS ---- */

.rub-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.rub-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  transition: border-color 0.2s;
}

.rub-card:hover {
  border-color: var(--fire);
}

.rub-card h3 {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.rub-card .tag {
  display: inline-block;
  background: rgba(224,92,0,0.15);
  color: var(--fire);
  font-size: 0.75rem;
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 3px 10px;
  margin-bottom: 0.8rem;
}

.rub-card ul {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.rub-card ul li {
  padding: 3px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.rub-card ul li::before {
  content: '— ';
  color: var(--fire);
}

.rub-card .toepassing {
  margin-top: 1rem;
  font-size: 0.82rem;
  color: var(--fire-glow);
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ---- RECIPE CARDS ---- */

.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.5rem;
}

.recipe-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 2rem;
  transition: border-color 0.2s;
}

.recipe-card:hover {
  border-color: var(--fire);
}

.recipe-card h3 {
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--border);
}

.recipe-section-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--fire);
  margin-bottom: 0.6rem;
  margin-top: 1rem;
}

.recipe-card ul {
  list-style: none;
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.recipe-card ul li {
  padding: 3px 0;
}

.recipe-card ul li::before {
  content: '• ';
  color: var(--fire);
}

.recipe-card ol {
  padding-left: 1.2rem;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.recipe-card ol li {
  padding: 3px 0;
}

/* ---- TWO COLUMN ---- */

.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.two-col-img img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* ---- TECHNIQUE BLOCKS ---- */

.technique-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.technique-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.8rem;
  border-top: 3px solid var(--fire);
}

.technique-item h3 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
}

.technique-item .temp {
  font-family: 'Oswald', sans-serif;
  font-size: 1.6rem;
  color: var(--fire);
  margin-bottom: 0.5rem;
}

.technique-item p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* ---- FOOTER ---- */

footer {
  background: #080808;
  border-top: 2px solid var(--border);
  padding: 3rem 2rem;
  text-align: center;
}

footer .logo {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--fire);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 0.5rem;
}

footer p {
  color: var(--text-muted);
  font-size: 0.9rem;
  margin-bottom: 0;
}

footer .footer-links {
  margin-top: 1.2rem;
  font-size: 0.85rem;
}

footer .footer-links a {
  color: var(--text-muted);
  margin: 0 0.3rem;
}

footer .footer-links a:hover {
  color: var(--fire);
}

footer .footer-copy {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  opacity: 0.7;
}

footer .footer-tip {
  margin-top: 1.5rem;
  padding: 0.8rem 1.2rem;
  display: inline-block;
  border: 1px solid var(--fire);
  background: rgba(224, 92, 0, 0.08);
  font-size: 0.85rem;
}

footer .footer-tip a {
  color: var(--fire);
  font-weight: 600;
}

footer .footer-tip a:hover {
  color: var(--fire-glow);
}

/* Prominentere tip-block voor over-ons */
.tip-block {
  background: var(--bg-card);
  border: 1px solid var(--fire);
  border-left-width: 4px;
  padding: 1.5rem 2rem;
  margin: 2rem auto;
  max-width: 720px;
  text-align: center;
}

.tip-block h3 {
  color: var(--fire-glow);
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.tip-block p {
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

.tip-block a.btn {
  margin-top: 0.5rem;
}

.tip-qr {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
}

.tip-qr img {
  width: 140px;
  height: 140px;
  background: white;
  padding: 8px;
  border: 1px solid var(--border);
}

.tip-qr-label {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ---- BACK TO TOP BUTTON ---- */

.back-to-top {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  background: var(--fire);
  color: var(--white);
  border: none;
  width: 44px;
  height: 44px;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s;
  pointer-events: none;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: center;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.back-to-top:hover {
  background: var(--fire-glow);
}

/* ---- VIDEO GALLERY ---- */

.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.2rem;
  margin-top: 2rem;
}

.video-grid video {
  width: 100%;
  border: 1px solid var(--border);
  background: #000;
  max-height: 500px;
  display: block;
}

.video-caption {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.5rem;
}

/* ---- BEKIJK OOK SECTIE ---- */

.related-section {
  background: var(--bg-section);
  padding: 3rem 2rem;
  border-top: 2px solid var(--border);
}

.related-section .container {
  max-width: 1100px;
  margin: 0 auto;
}

.related-section h2 {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1rem;
}

.related-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 1.2rem;
  transition: border-color 0.2s, transform 0.2s;
  color: var(--text);
  display: block;
}

.related-card:hover {
  border-color: var(--fire);
  transform: translateY(-2px);
}

.related-card h3 {
  font-size: 1rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.related-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin: 0;
}

/* ---- DRINKS GRID (for drankjes.html overview) ---- */

.drinks-grid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.drinks-card {
  padding: 0;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.drinks-card-img {
  width: 100%;
  height: 180px;
  background-size: cover;
  background-position: center;
  border-bottom: 1px solid var(--border);
}

.drinks-card h3 {
  padding: 1rem 1.2rem 0.3rem;
  margin: 0;
}

.drinks-card p {
  padding: 0 1.2rem 1.2rem;
  font-size: 0.88rem;
  line-height: 1.5;
}

/* ---- DIVIDER ---- */

.fire-divider {
  text-align: center;
  color: var(--fire);
  font-size: 1.5rem;
  margin: 1rem 0;
  letter-spacing: 8px;
}

/* ---- DROPDOWN NAV ---- */

.nav-dropdown { position: relative; }

.dropdown-arrow { font-size: 0.7rem; margin-left: 3px; }

.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%);
  background: #111;
  border: 1px solid var(--border);
  border-top: 2px solid var(--fire);
  min-width: 200px;
  list-style: none;
  z-index: 200;
  padding: 0.5rem 0;
}

.dropdown-menu li { padding: 0; }

.dropdown-menu a {
  display: block;
  padding: 0.6rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text-muted);
  border-bottom: none;
  white-space: nowrap;
}

.dropdown-menu a:hover { color: var(--fire); background: #1a1a1a; }

/* Show on hover (desktop) */
@media (min-width: 769px) {
  .nav-dropdown:hover .dropdown-menu { display: block; }
}

/* Show when JS adds .is-open */
.nav-dropdown.is-open .dropdown-menu { display: block; }

/* Mobile open sub-menu + bigger tap-targets */
@media (max-width: 768px) {
  .nav-dropdown.is-open .dropdown-menu {
    display: block;
    position: static;
    transform: none;
    border: none;
    border-top: 1px solid var(--border);
    background: #1a1a1a;
    min-width: auto;
    z-index: auto;
  }

  /* WCAG-compliant 44x44px tap-targets op mobiel */
  .nav-links a,
  .dropdown-menu a,
  .dropdown-toggle {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .nav-toggle {
    min-width: 44px;
    min-height: 44px;
  }

  .btn {
    min-height: 44px;
    padding: 12px 24px;
  }

  .print-bar button,
  .back-to-top {
    min-width: 44px;
    min-height: 44px;
  }

  .dropdown-arrow {
    font-size: 0.9rem;
    margin-left: 6px;
  }
}

/* ---- PAGE HEADER WITH PHOTO ---- */

.page-header {
  position: relative;
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  filter: brightness(0.8) saturate(1.2);
}

.page-header-content {
  position: relative;
  z-index: 1;
  padding: 5rem 2rem 4rem;
  text-align: center;
}

/* ---- VISUAL CHAPTER CARDS ---- */

.visual-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}

.visual-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  display: block;
  color: inherit;
  text-decoration: none;
}

.visual-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
  filter: brightness(0.7) saturate(1.1);
}

.visual-card:hover img { transform: scale(1.05); }

.visual-card-body {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 1.2rem 1.2rem;
  background: linear-gradient(to top, rgba(0,0,0,0.92) 70%, transparent);
}

.visual-card-body h3 {
  font-size: 1.2rem;
  margin-bottom: 0.3rem;
  color: var(--white);
}

.visual-card-body p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.4;
}

.visual-card-num {
  position: absolute;
  top: 1rem;
  left: 1rem;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  color: var(--fire);
  background: rgba(0,0,0,0.7);
  padding: 3px 8px;
  letter-spacing: 1px;
}

.visual-card:hover .visual-card-body h3 { color: var(--fire-glow); }

/* ---- HAMBURGER ---- */

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--fire);
  border-radius: 2px;
  transition: all 0.25s;
}

/* ---- PRINT BUTTON ---- */

.print-bar {
  background: var(--bg-section);
  border-bottom: 1px solid var(--border);
  padding: 0.8rem 2rem;
  text-align: right;
}

.print-bar button {
  background: transparent;
  color: var(--fire);
  border: 1px solid var(--fire);
  font-family: 'Oswald', sans-serif;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 8px 16px;
  cursor: pointer;
  transition: all 0.2s;
}

.print-bar button:hover {
  background: var(--fire);
  color: var(--white);
}

.print-bar button::before {
  content: '🖨  ';
}

/* ---- PRINT STYLES ---- */

@media print {
  nav, footer, .nav-toggle, .page-header-bg, .print-bar,
  .hero-bg, .hero-overlay, .btn {
    display: none !important;
  }

  body {
    background: white !important;
    color: black !important;
    font-size: 11pt;
  }

  .page-header, .page-header-content, .section, .section-alt {
    background: white !important;
    padding: 1rem 0 !important;
    color: black !important;
  }

  h1, h2, h3, h4 {
    color: #000 !important;
    page-break-after: avoid;
  }

  h2 { color: #b04500 !important; }

  .recipe-card, .rub-card {
    background: white !important;
    border: 1px solid #ddd !important;
    color: black !important;
    page-break-inside: avoid;
    margin-bottom: 1rem;
  }

  .recipe-card h3 { border-bottom-color: #ddd !important; }

  .recipe-card ul, .recipe-card ol,
  .recipe-card p, .recipe-card li {
    color: #000 !important;
  }

  .recipe-section-label {
    color: #b04500 !important;
  }

  .highlight-box {
    background: #f4f4f4 !important;
    border-left-color: #b04500 !important;
    color: black !important;
  }

  .bbq-table th { background: #b04500 !important; }
  .bbq-table td { color: black !important; }

  img {
    max-width: 100%;
    page-break-inside: avoid;
  }

  a { color: black !important; text-decoration: none !important; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.85em; color: #666; }
}

/* ---- RESPONSIVE ---- */

@media (max-width: 768px) {
  .hero h1 { font-size: 3rem; }
  .two-col { grid-template-columns: 1fr; }
  h1 { font-size: 2.5rem; }

  .nav-toggle { display: flex; }

  .nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #080808;
    border-bottom: 2px solid var(--fire);
    flex-direction: column;
    padding: 0.5rem 0;
    gap: 0;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links li {
    padding: 0;
    border-bottom: 1px solid var(--border);
  }
  .nav-links li:last-child { border-bottom: none; }
  .nav-links a {
    display: block;
    padding: 1rem 2rem;
    font-size: 1rem;
    border-bottom: none;
  }
}
