/* ═══════════════════════════════════════════════════════
   7DTV Centrale Stylesheet
   Alle pagina's importeren dit bestand.
   ═══════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --serif: 'Fraunces', Georgia, serif;
  --sans: 'Inter', -apple-system, system-ui, sans-serif;
  --bg: #0a1220;
  --bg-alt: #0f1b2d;
  --surface: #142338;
  --ink: #f2f4f8;
  --ink-dim: #9fadc2;
  --ink-muted: #6a7a92;
  --line: #1f2e45;
  --accent: #0b4379;
  --accent-bright: #1f6fb8;
  --accent-soft: #3a8dd6;
  --gold: #d4b26a;
  --live: #ff4b4b;
}

/* ── Reset ── */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { overflow-x: hidden; }
body { background: var(--bg); color: var(--ink); font-family: var(--sans); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
::selection { background: #d97757; color: var(--bg); }
img { display: block; }

/* ── Typography ── */
.eyebrow { font-size: 11px; color: var(--accent-soft); letter-spacing: 0.2em; text-transform: uppercase; font-weight: 600; }
.heading-xl { font-family: var(--serif); font-size: 48px; font-weight: 500; letter-spacing: -0.025em; line-height: 1.05; }
.heading-lg { font-family: var(--serif); font-size: 36px; font-weight: 500; letter-spacing: -0.02em; }
.heading-md { font-family: var(--serif); font-size: 24px; font-weight: 500; letter-spacing: -0.01em; }
.heading-sm { font-family: var(--serif); font-size: 18px; font-weight: 500; letter-spacing: -0.01em; }
.body-serif { font-family: var(--serif); font-size: 17px; color: var(--ink-dim); line-height: 1.7; }
.body-sans { font-family: var(--sans); font-size: 14px; color: var(--ink-dim); line-height: 1.6; }

/* ── Site header reset (voorkomt conflict met oude page CSS) ── */
.site-header, .site-header * { box-sizing: border-box; margin: 0; padding: 0; }
.site-header { font-family: var(--sans); -webkit-font-smoothing: antialiased; }
.site-header a { color: inherit; text-decoration: none; }
.site-header img { display: block; }

/* ── Site footer reset ── */
.site-footer, .site-footer * { box-sizing: border-box; margin: 0; padding: 0; }
.site-footer { font-family: var(--sans); -webkit-font-smoothing: antialiased; }
.site-footer a { color: inherit; text-decoration: none; }

/* ── Top strip ── */
.top-strip { border-bottom: 1px solid var(--line); padding: 8px 40px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--ink-dim); letter-spacing: 0.08em; text-transform: uppercase; }
.top-strip-right { display: flex; gap: 24px; align-items: center; }
.top-strip a { transition: color 0.15s; }
.top-strip a:hover { color: var(--ink); }

/* ── Main bar ── */
.main-bar { padding: 20px 40px; display: grid; grid-template-columns: auto 1fr auto; align-items: center; border-bottom: 1px solid var(--line); }

/* ── Logo ── */
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img { width: 48px; height: 48px; border-radius: 50%; }
.logo-text { font-family: var(--serif); font-size: 22px; font-weight: 600; color: var(--ink); letter-spacing: -0.01em; line-height: 1.05; }
.logo-sub { font-family: var(--sans); font-size: 9px; color: var(--ink-muted); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 2px; font-weight: 500; }

/* ── Main nav ── */
.main-nav { display: flex; justify-content: center; gap: 28px; font-size: 13px; font-weight: 500; }
.main-nav a { color: var(--ink); transition: color 0.15s; }
.main-nav a:hover { color: var(--accent-soft); }
.main-nav a.active { color: var(--accent-soft); }

/* ── Menu toggle (hamburger) ── */
.site-header .menu-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; margin-left: auto; }
.site-header .menu-toggle svg { width: 24px; height: 24px; stroke: var(--ink-dim); stroke-width: 2; transition: stroke 0.15s; }
.site-header .menu-toggle:hover svg { stroke: var(--ink); }

/* ── Header right ── */
.header-right { display: flex; justify-content: flex-end; gap: 12px; align-items: center; font-size: 13px; }
.btn-primary { background: var(--accent-bright); color: #fff; border: 0; padding: 9px 16px; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; cursor: pointer; display: inline-block; text-decoration: none; }
.btn-primary:hover { background: var(--accent); }

/* ── Section helpers ── */
.section-header { display: flex; justify-content: space-between; align-items: flex-end; border-bottom: 1px solid var(--line); padding-bottom: 14px; }
.section-eyebrow { font-size: 11px; color: var(--accent-soft); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 8px; }
.section-title { font-family: var(--serif); font-size: 36px; font-weight: 500; margin: 0; letter-spacing: -0.02em; }
.section-link { font-size: 12px; color: var(--ink-dim); letter-spacing: 0.1em; text-transform: uppercase; cursor: pointer; transition: color 0.15s; text-decoration: none; }
.section-link:hover { color: var(--accent-soft); }

/* ── Newsletter section ── */
.nl-section { padding: 80px 40px; border-bottom: 1px solid var(--line); background: var(--accent-bright); color: #fff; }
.nl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.nl-title { font-family: var(--serif); font-size: 48px; font-weight: 500; margin: 0; letter-spacing: -0.025em; line-height: 1; }
.nl-title em { font-style: italic; }
.nl-body { font-family: var(--serif); font-size: 17px; opacity: 0.85; line-height: 1.5; margin-top: 20px; max-width: 520px; }
.nl-form { display: flex; flex-direction: column; gap: 8px; padding: 0; }
.nl-form input { background: var(--bg); border: 0; outline: none; font-size: 15px; color: var(--ink); padding: 14px 16px; font-family: var(--sans); width: 100%; }
.nl-form button { background: var(--ink); color: var(--bg); border: 0; padding: 14px 22px; font-size: 12px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; cursor: pointer; width: 100%; }
.nl-checks { display: flex; gap: 24px; margin-top: 24px; font-size: 12px; opacity: 0.8; }

/* ── Footer ── */
.site-footer { background: var(--bg); padding: 72px 40px 40px; border-top: 1px solid var(--line); }
.site-footer .footer-grid { display: grid; grid-template-columns: 1.5fr repeat(4, 1fr); gap: 40px; }
.site-footer .footer-about { font-family: var(--serif); font-size: 14px; color: var(--ink-dim); line-height: 1.5; margin-top: 20px; max-width: 280px; }
.site-footer .footer-col-title { font-size: 10px; color: var(--accent-soft); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 16px; }
.site-footer .footer-col a { display: block; font-size: 13px; color: var(--ink-dim); padding: 6px 0; transition: color 0.15s; }
.site-footer .footer-col a:hover { color: var(--ink); }
.site-footer .footer-bottom { border-top: 1px solid var(--line); margin-top: 48px; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; font-size: 11px; color: var(--ink-muted); letter-spacing: 0.1em; text-transform: uppercase; }
.site-footer .footer-bottom-links { display: flex; gap: 20px; }
.site-footer .footer-bottom-links a { transition: color 0.15s; }
.site-footer .footer-bottom-links a:hover { color: var(--ink); }

/* ── Article body (shared) ── */
.article-body { font-family: var(--serif); font-size: 18px; color: var(--ink-dim); line-height: 1.75; }
.article-body p { margin-bottom: 24px; }
.article-body strong { color: var(--ink); font-weight: 600; }
.article-body h3 { font-family: var(--serif); font-size: 24px; color: var(--ink); font-weight: 500; margin: 48px 0 16px; letter-spacing: -0.01em; }
.article-body blockquote { border-left: 3px solid var(--accent-soft); padding: 16px 0 16px 24px; margin: 32px 0; font-style: italic; color: var(--ink); font-size: 20px; line-height: 1.5; }

/* ── Sidebar helpers ── */
.sidebar-label { font-size: 10px; color: var(--accent-soft); letter-spacing: 0.2em; text-transform: uppercase; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 1px solid var(--line); }
.sidebar-quote { padding: 16px; border-left: 2px solid var(--accent-soft); margin-bottom: 12px; }
.sidebar-quote-text { font-family: var(--serif); font-size: 14px; color: var(--ink); font-style: italic; line-height: 1.4; }
.sidebar-quote-source { font-size: 11px; color: var(--ink-muted); margin-top: 6px; }

/* ── Responsive ── */
@media (max-width: 900px) {
  .top-strip, .main-bar { padding-left: 16px; padding-right: 16px; }
  .main-nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,18,32,0.98); backdrop-filter: blur(12px); flex-direction: column; padding: 12px 40px 20px; border-bottom: 1px solid var(--line); gap: 4px; z-index: 49; }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 10px 0; font-size: 15px; }
  .site-header .menu-toggle { display: block; }
  .main-bar { position: relative; }
  .nl-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section-title { font-size: 28px; }
  .heading-xl { font-size: 32px; }
}
@media (max-width: 640px) {
  footer { padding-left: 16px; padding-right: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .nl-title { font-size: 32px; }
}
