/* ================================================================
   HistorieCheck — base.css
   Geëxtraheerd uit historiecheck-preview.html
   Overschrijf :root per tijdvak via tijdvak/<slug>.css
   ================================================================ */

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

/* ── 1. TOKENS ───────────────────────────────────────────────── */
:root {
  --gold:          #C6A85A;
  --gold-light:    #C6A85A;
  --gold-bright:   #D4AF37;
  --bg-darkest:    #060d14;
  --bg-dark:       #0E1A26;
  --bg-medium:     #1a2d42;
  --bg-3:          #243d57;
  --border-brown:  #2e4a6e;
  --border-light:  #4a7a9b;
  --text-cream:    #F4F1EA;
  --text-muted:    #a0b8cc;
  --text-dim:      #6a8fa8;
  --overlay:       rgba(6,13,20,0.7);

  --font-display: 'Cinzel Decorative', serif;
  --font-heading: 'Cinzel', serif;
  --font-body:    'Cormorant Garamond', serif;

  /* Hero: overschrijfbaar per pagina */
  --hero-bg: linear-gradient(135deg, #060d14 0%, #0E1A26 30%, #1a2d42 50%, #0E1A26 70%, #060d14 100%);
}

/* ── 2. RESET ────────────────────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-cream);
  font-family: var(--font-body);
  min-height: 100vh;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(ellipse at 10% 20%, rgba(201,168,76,.03) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 80%, rgba(201,168,76,.02) 0%, transparent 50%),
    url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 0;
}

::selection { background: rgba(201,168,76,.3); color: var(--text-cream); }
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-darkest); }
::-webkit-scrollbar-thumb { background: var(--border-brown); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--gold); }

a { transition: color .3s, border-color .3s; }
img { display: block; max-width: 100%; height: auto; }

/* ── 3. LAYOUT ───────────────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative; z-index: 1;
}

/* ── 4. HEADER ───────────────────────────────────────────────── */
.header {
  background: var(--bg-darkest);
  border-bottom: 2px solid var(--border-brown);
  padding: 15px 0;
  position: relative;
}
.header::before {
  content: ''; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(42,31,16,.3) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 0%, rgba(201,168,76,.05) 0%, transparent 70%);
  pointer-events: none;
}
.header-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  position: relative; z-index: 1;
}
.logo-area { display: flex; align-items: center; gap: 12px; }
.logo-shield {
  width: 65px; height: 65px;
  background: linear-gradient(135deg, var(--bg-medium), var(--bg-darkest));
  border: 2px solid var(--gold);
  border-radius: 8px 8px 12px 12px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,.5), inset 0 1px 0 rgba(201,168,76,.2);
  clip-path: polygon(0% 0%, 100% 0%, 100% 75%, 50% 100%, 0% 75%);
  padding-bottom: 8px;
}
.logo-shield::after { content: '🦁'; font-size: 28px; }
.title-area { text-align: center; flex: 1; }
.site-title {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 3px;
  text-shadow: 2px 2px 8px rgba(0,0,0,.7), 0 0 30px rgba(201,168,76,.15);
  line-height: 1.1;
}
.site-subtitle {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.6vw, 20px);
  font-style: italic;
  color: var(--gold);
  letter-spacing: 2px;
  margin-top: 4px;
}
.lang-flags { display: flex; gap: 8px; align-items: center; }
.lang-flag {
  width: 32px; height: 22px;
  border: 1px solid var(--border-brown);
  border-radius: 2px; cursor: pointer;
  transition: border-color .3s, transform .2s;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-family: var(--font-heading);
  color: var(--gold); background: var(--bg-medium);
}
.lang-flag:hover { border-color: var(--gold); transform: scale(1.1); }

/* ── 5. NAVIGATIE ────────────────────────────────────────────── */
.main-nav {
  background: linear-gradient(180deg, #15100a 0%, #0d0a05 100%);
  border-bottom: 1px solid var(--border-brown);
}
.nav-links {
  display: flex; justify-content: center;
  align-items: center; flex-wrap: wrap;
}
.nav-links a {
  color: var(--gold);
  font-family: var(--font-heading);
  font-size: 14px; text-transform: uppercase;
  letter-spacing: 1.5px; font-weight: 600;
  text-decoration: none;
  padding: 14px 22px;
  border-right: 1px solid rgba(92,74,46,.5);
  transition: all .3s; position: relative;
}
.nav-links a:last-child { border-right: none; }
.nav-links a::after {
  content: ''; position: absolute;
  bottom: 0; left: 50%; width: 0; height: 2px;
  background: var(--gold-bright);
  transition: all .3s; transform: translateX(-50%);
}
.nav-links a:hover { color: var(--gold-bright); background: rgba(201,168,76,.05); }
.nav-links a:hover::after { width: 60%; }
.nav-links a.active { color: var(--gold-bright); }
.nav-links a.active::after { width: 60%; }

/* ── 6. TIJDLIJN + ZOEKBALK ──────────────────────────────────── */
.timeline-bar {
  background: linear-gradient(180deg, var(--bg-medium), var(--bg-dark));
  border-bottom: 1px solid var(--border-brown);
  padding: 8px 0;
}
.timeline-inner {
  display: flex; align-items: center;
  justify-content: center; flex-wrap: wrap; gap: 0;
}
.timeline-inner a {
  color: var(--text-muted); font-family: var(--font-body);
  font-size: 15px; text-decoration: none;
  padding: 6px 12px; transition: color .3s;
}
.timeline-inner a:hover,
.timeline-inner a.active { color: var(--gold-bright); font-weight: 600; }
.timeline-arrow { color: var(--border-brown); font-size: 13px; padding: 0 2px; }
.search-box { margin-left: 20px; display: flex; align-items: center; }
.search-box input {
  background: var(--bg-darkest);
  border: 1px solid var(--border-brown); border-right: none;
  color: var(--gold); font-family: var(--font-body); font-size: 14px;
  padding: 7px 14px; border-radius: 2px 0 0 2px; width: 180px;
  outline: none; transition: border-color .3s;
}
.search-box input::placeholder { color: var(--border-light); font-style: italic; }
.search-box input:focus { border-color: var(--gold); }
.search-box button {
  background: var(--border-brown);
  border: 1px solid var(--border-brown);
  color: var(--gold); padding: 7px 12px; cursor: pointer;
  border-radius: 0 2px 2px 0; font-size: 14px; transition: background .3s;
}
.search-box button:hover { background: var(--gold); color: var(--bg-darkest); }

/* ── 7. HERO-SECTIE (homepage) ───────────────────────────────── */
.hero-section {
  padding: 25px 0;
  display: grid;
  grid-template-columns: 1.8fr 1fr;
  gap: 25px;
}
.hero-main {
  background: var(--overlay);
  border: 1px solid var(--border-brown);
  border-radius: 4px; padding: 25px;
  position: relative; overflow: hidden;
  animation: fadeInUp .6s ease-out;
}
.hero-main::before {
  content: ''; position: absolute;
  top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: .3;
}
.section-label {
  font-family: var(--font-heading);
  font-size: 13px; text-transform: uppercase;
  letter-spacing: 2px; color: var(--gold); font-weight: 600;
  margin-bottom: 20px;
}
.hero-content {
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 25px; align-items: center;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(24px, 2.5vw, 34px); font-weight: 700;
  color: var(--text-cream); line-height: 1.2; margin-bottom: 8px;
}
.hero-subtitle {
  font-family: var(--font-body);
  font-size: 22px; font-style: italic;
  color: var(--text-muted); font-weight: 400; margin-bottom: 20px;
}
.btn-primary {
  display: inline-block;
  font-family: var(--font-heading); font-size: 13px;
  font-weight: 600; letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); text-decoration: none;
  padding: 10px 25px; border: 1px solid var(--gold); border-radius: 2px;
  transition: all .3s;
}
.btn-primary:hover {
  color: var(--gold-bright); border-color: var(--gold-bright);
  background: rgba(201,168,76,.1);
  box-shadow: 0 0 15px rgba(201,168,76,.15);
}
.hero-image {
  width: 100%; aspect-ratio: 16/10;
  background: var(--hero-bg);
  border: 2px solid var(--border-brown);
  border-radius: 4px;
  box-shadow: 0 4px 15px rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--border-light); font-family: var(--font-body);
  font-size: 16px; font-style: italic; text-align: center;
  padding: 20px; position: relative; overflow: hidden;
}
.hero-image::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(201,168,76,.05) 50%, transparent 70%);
}
.hero-image span { position: relative; z-index: 1; }
.hero-image img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.filter-tabs {
  display: flex; align-items: center; gap: 0;
  padding-top: 15px; margin-top: 20px;
  border-top: 1px solid rgba(61,46,24,.7);
}
.filter-tabs .icon { color: var(--border-light); margin-right: 10px; font-size: 16px; }
.filter-tabs a {
  color: var(--text-muted); font-family: var(--font-body); font-size: 14px;
  text-decoration: none; padding: 6px 14px;
  border-bottom: 2px solid transparent; transition: all .3s;
}
.filter-tabs a:hover,
.filter-tabs a.active { color: var(--gold); border-bottom-color: var(--gold); }

/* ── 8. SIDEBAR ──────────────────────────────────────────────── */
.sidebar {
  background: var(--overlay);
  border: 1px solid var(--border-brown);
  border-radius: 4px; padding: 20px;
  animation: fadeInUp .6s ease-out .15s both;
}
.sidebar-item {
  display: grid; grid-template-columns: 100px 1fr;
  gap: 15px; align-items: center; padding: 12px 0;
}
.sidebar-item + .sidebar-item { border-top: 1px solid rgba(61,46,24,.5); }
.sidebar-thumb {
  width: 100px; height: 70px;
  background: linear-gradient(135deg, var(--bg-medium), var(--bg-3));
  border: 1px solid var(--border-brown); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--border-light);
  font-family: var(--font-body); font-style: italic;
  text-align: center; padding: 5px; overflow: hidden;
}
.sidebar-thumb img { width: 100%; height: 100%; object-fit: cover; }
.sidebar-item h5 {
  font-family: var(--font-heading); font-size: 15px; font-weight: 600;
  color: var(--text-cream); margin-bottom: 4px; line-height: 1.3;
}
.sidebar-item p {
  font-family: var(--font-body); font-size: 13px; font-style: italic;
  color: var(--text-muted); line-height: 1.4;
}
.btn-meer {
  display: block; text-align: right; margin-top: 15px;
  font-family: var(--font-body); font-size: 14px;
  color: var(--text-muted); text-decoration: none;
  padding: 6px 15px; border: 1px solid var(--border-brown);
  border-radius: 2px; width: fit-content; margin-left: auto;
  transition: all .3s;
}
.btn-meer:hover { color: var(--gold-bright); border-color: var(--gold); }

/* ── 9. SECTIE-DIVIDERS ──────────────────────────────────────── */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  gap: 20px; padding: 30px 0 15px;
}
.section-divider .line { flex: 1; height: 1px; }
.section-divider .line-left  { background: linear-gradient(90deg, transparent, var(--border-brown)); }
.section-divider .line-right { background: linear-gradient(90deg, var(--border-brown), transparent); }
.section-divider h2 {
  font-family: var(--font-display);
  font-size: clamp(22px, 2.5vw, 30px); font-weight: 700;
  color: var(--gold); letter-spacing: 3px; white-space: nowrap;
  text-shadow: 0 0 20px rgba(201,168,76,.15);
}
.sub-divider {
  display: flex; align-items: center; gap: 15px; margin-bottom: 20px;
}
.sub-divider .line { flex: 1; height: 1px; }
.sub-divider h3 {
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--gold); white-space: nowrap;
}

/* ── 10. LEESZAAL ────────────────────────────────────────────── */
.leeszaal-section {
  padding: 15px 0 30px;
  display: grid; grid-template-columns: 2.2fr 1fr; gap: 25px;
}
.leeszaal-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 15px;
}
.leeszaal-card {
  background: var(--overlay);
  border: 1px solid var(--border-brown);
  border-radius: 4px; overflow: hidden;
  transition: all .3s; cursor: pointer;
}
.leeszaal-card:hover {
  border-color: var(--gold);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,.4);
}
.leeszaal-card-img {
  width: 100%; aspect-ratio: 2/3;
  background: linear-gradient(135deg, var(--bg-medium), var(--bg-3), var(--bg-medium));
  display: flex; align-items: center; justify-content: center;
  color: var(--border-light); font-family: var(--font-body);
  font-size: 12px; font-style: italic; text-align: center;
  padding: 8px; position: relative; overflow: hidden;
}
.leeszaal-card-img img {
  position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
}
.leeszaal-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(13,10,5,.5) 100%);
}
.leeszaal-card h5 {
  font-family: var(--font-heading); font-size: 13px; font-weight: 600;
  color: var(--text-cream); text-align: center; padding: 12px 8px; line-height: 1.3;
}
.leeszaal-aside {
  background: var(--overlay);
  border: 1px solid var(--border-brown); border-radius: 4px;
  padding: 25px; display: flex; flex-direction: column; justify-content: center;
}
.leeszaal-aside h3 {
  font-family: var(--font-display); font-size: 24px; font-weight: 700;
  font-style: italic; color: var(--gold); margin-bottom: 15px;
}
.quill-icon { font-size: 40px; margin-bottom: 15px; filter: drop-shadow(0 2px 5px rgba(0,0,0,.5)); }
.leeszaal-aside p {
  font-family: var(--font-body); font-size: 15px;
  color: var(--text-muted); font-style: italic; line-height: 1.8;
}

/* ── 11. ONDERSTE SECTIE ─────────────────────────────────────── */
.bottom-section {
  padding: 20px 0 35px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.books-row { display: flex; gap: 15px; justify-content: center; }
.book-cover {
  width: 130px; height: 175px;
  background: linear-gradient(135deg, var(--bg-medium), #4a3720, var(--bg-medium));
  border: 2px solid var(--border-brown); border-radius: 3px;
  box-shadow: 3px 5px 12px rgba(0,0,0,.6), -1px 0 3px rgba(0,0,0,.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-cream); font-family: var(--font-heading);
  font-size: 12px; font-weight: 600; text-align: center;
  padding: 15px; line-height: 1.3;
  cursor: pointer; transition: all .3s; position: relative;
  overflow: hidden;
}
.book-cover::before {
  content: ''; position: absolute;
  left: 5px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(180deg, transparent, rgba(201,168,76,.3), transparent);
}
.book-cover::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(201,168,76,.05), transparent 60%);
}
.book-cover:hover {
  transform: translateY(-5px) rotate(-1deg);
  box-shadow: 5px 10px 20px rgba(0,0,0,.7);
  border-color: var(--gold);
}
.book-cover .book-title { position: relative; z-index: 1; }
.onderzoeks-area { text-align: center; }
.onderzoeks-img {
  width: 100%; aspect-ratio: 5/2.2;
  background: linear-gradient(135deg, var(--bg-medium), var(--bg-3));
  border: 1px solid var(--border-brown); border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: var(--border-light); font-family: var(--font-body);
  font-size: 14px; font-style: italic; margin-bottom: 12px; overflow: hidden;
}
.onderzoeks-img img { width: 100%; height: 100%; object-fit: cover; }
.onderzoeks-features {
  font-family: var(--font-body); font-size: 15px;
  color: var(--text-muted); font-style: italic; margin-bottom: 20px;
}
.btn-registratie {
  display: inline-block;
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  letter-spacing: 2px; color: var(--gold); text-decoration: none;
  padding: 12px 40px; border: 2px solid var(--gold); border-radius: 3px;
  background: rgba(201,168,76,.08); transition: all .3s;
}
.btn-registratie:hover {
  color: var(--bg-darkest); background: var(--gold);
  box-shadow: 0 0 25px rgba(201,168,76,.3);
}

/* ── 12. FOOTER ──────────────────────────────────────────────── */
.footer {
  background: var(--bg-darkest);
  border-top: 1px solid var(--border-brown);
  padding: 35px 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 40px;
}
.footer h4 {
  font-family: var(--font-display); font-size: 20px; font-weight: 700;
  color: var(--gold); margin-bottom: 12px;
}
.footer h5 {
  font-family: var(--font-heading); font-size: 13px;
  text-transform: uppercase; letter-spacing: 1.5px; font-weight: 600;
  color: var(--gold); margin-bottom: 12px;
}
.footer p {
  font-family: var(--font-body); font-size: 14px;
  color: var(--gold); line-height: 1.7;
}
.footer-links a {
  display: block; color: var(--gold);
  font-family: var(--font-body); font-size: 14px;
  text-decoration: none; padding: 4px 0; transition: color .3s;
}
.footer-links a:hover { color: var(--gold); text-decoration: none; }
.footer-copy {
  text-align: center; margin-top: 25px; padding-top: 20px;
  border-top: 1px solid var(--border-brown);
  font-family: var(--font-body); font-size: 13px;
  color: var(--text-dim); font-style: italic;
}

/* ── 13. TIJDVAK-PAGINASTIJLEN (uit middeleeuwen-preview) ────── */
/* Hero fullwidth (tijdvak-pagina) */
.tv-hero {
  position: relative; min-height: 420px;
  display: flex; flex-direction: column; justify-content: flex-end; overflow: hidden;
}
.tv-hero-bg {
  position: absolute; inset: 0;
  background: var(--hero-bg); background-size: cover; background-position: center; z-index: 0;
}
.tv-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,18,9,.2) 0%, rgba(26,18,9,.1) 40%, rgba(26,18,9,.85) 85%, var(--bg-dark) 100%);
  z-index: 1;
}
.tv-hero-content {
  position: relative; z-index: 2; padding: 60px 20px 40px;
  animation: fadeInUp .8s ease-out;
}
.tv-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px); font-weight: 700;
  color: var(--text-cream); letter-spacing: 2px;
  text-shadow: 3px 3px 15px rgba(0,0,0,.9), 0 0 40px rgba(0,0,0,.5); line-height: 1.1;
}
.tv-hero-content .sub {
  font-family: var(--font-body); font-size: clamp(16px, 2vw, 20px);
  font-style: italic; color: var(--gold); letter-spacing: 1px;
  margin-top: 8px; text-shadow: 2px 2px 10px rgba(0,0,0,.8);
}
.tv-placeholder {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  color: var(--border-light); font-family: var(--font-body);
  font-size: 15px; font-style: italic; z-index: 1; text-align: center; opacity: .6;
}
/* Intro */
.tv-intro { padding: 45px 0; }
.tv-intro p {
  font-family: var(--font-body); font-size: 19px;
  line-height: 1.85; color: var(--text-cream);
}
.tv-intro p + p { margin-top: 18px; }
/* Kaarten (tijdvak onderzoek) */
.tv-cards {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 18px; padding: 20px 0 40px;
}
.tv-card {
  background: rgba(13,10,5,.75); border: 1px solid var(--border-brown);
  border-radius: 5px; overflow: hidden; transition: all .35s; cursor: pointer;
}
.tv-card:hover {
  border-color: var(--gold); transform: translateY(-4px);
  box-shadow: 0 10px 30px rgba(0,0,0,.5);
}
.tv-card-img {
  width: 100%; aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--bg-medium), var(--bg-3), var(--bg-medium));
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; color: var(--border-light); position: relative; overflow: hidden;
}
.tv-card-img img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.tv-card-img::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(13,10,5,.6));
}
.tv-card-body { padding: 14px 12px 16px; }
.tv-card-body h5 {
  font-family: var(--font-heading); font-size: 14px; font-weight: 700;
  color: var(--text-cream); margin-bottom: 8px; line-height: 1.3;
}
.tv-card-body p {
  font-family: var(--font-body); font-size: 13px; font-style: italic;
  color: var(--text-muted); line-height: 1.5;
}
/* Krant-kaarten */
.krant-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 25px; padding: 20px 0 40px;
}
.krant-card {
  background: rgba(13,10,5,.75); border: 1px solid var(--border-brown);
  border-radius: 5px; padding: 20px 22px; transition: all .3s;
}
.krant-card:hover { border-color: var(--gold); box-shadow: 0 5px 20px rgba(0,0,0,.4); }
.krant-head { display: flex; align-items: center; gap: 8px; margin-bottom: 14px; }
.krant-head .ic { color: var(--gold); font-size: 16px; }
.krant-head h4 {
  font-family: var(--font-heading); font-size: 16px; font-weight: 700;
  color: var(--text-cream); letter-spacing: 1px;
}
.krant-head .yr {
  font-weight: 400; color: var(--text-muted); font-family: var(--font-body);
  font-style: italic; font-size: 14px; margin-left: 4px;
}
.krant-inner { display: grid; grid-template-columns: 120px 1fr; gap: 15px; align-items: start; }
.krant-thumb {
  width: 120px; height: 85px;
  background: linear-gradient(135deg, var(--bg-medium), var(--bg-3));
  border: 1px solid var(--border-brown); border-radius: 3px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--border-light); overflow: hidden;
}
.krant-thumb img { width: 100%; height: 100%; object-fit: cover; }
.krant-txt h5 {
  font-family: var(--font-heading); font-size: 14px; font-weight: 600;
  color: var(--gold); margin-bottom: 6px;
}
.krant-txt p {
  font-family: var(--font-body); font-size: 14px; font-style: italic;
  color: var(--text-muted); line-height: 1.6;
}
/* CTA tijdvak */
.tv-cta { padding: 30px 0 55px; text-align: center; }
.tv-cta .q { font-family: var(--font-body); font-size: 20px; color: var(--text-cream); line-height: 1.7; }
.tv-cta .lnk { font-family: var(--font-body); font-size: 22px; font-style: italic; font-weight: 600; color: var(--gold); margin-top: 5px; }
.btn-cta {
  display: inline-block; font-family: var(--font-heading); font-size: 14px;
  font-weight: 700; letter-spacing: 2px; color: var(--gold); text-decoration: none;
  padding: 14px 45px; border: 2px solid var(--gold); border-radius: 3px;
  background: rgba(201,168,76,.08); margin-top: 25px; transition: all .3s;
}
.btn-cta:hover { color: var(--bg-darkest); background: var(--gold); box-shadow: 0 0 25px rgba(201,168,76,.3); }

/* ── 14. INTAKE-FORMULIER ────────────────────────────────────── */
.intake-wrap { max-width: 760px; margin: 50px auto; padding: 0 20px 60px; }
.intake-wrap h1 {
  font-family: var(--font-display); font-size: clamp(24px, 3.5vw, 38px);
  color: var(--gold-light); text-align: center; margin-bottom: 6px;
}
.intake-sub {
  font-family: var(--font-body); font-size: 18px; font-style: italic;
  color: var(--text-muted); text-align: center; margin-bottom: 40px;
}
.steps-bar { display: flex; justify-content: center; margin-bottom: 40px; }
.step-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--bg-medium); border: 2px solid var(--border-brown);
  color: var(--text-dim); font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  display: flex; align-items: center; justify-content: center; transition: all .3s;
}
.step-dot.active { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,.1); }
.step-dot.done { border-color: var(--gold); background: var(--gold); color: var(--bg-darkest); }
.step-line { flex: 1; height: 2px; background: var(--border-brown); margin-top: 17px; max-width: 60px; transition: background .3s; }
.step-line.done { background: var(--gold); }
.intake-card {
  background: rgba(13,10,5,.8); border: 1px solid var(--border-brown);
  border-radius: 6px; padding: 36px 40px;
}
.intake-card h2 {
  font-family: var(--font-heading); font-size: 20px; font-weight: 700;
  color: var(--gold); letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px;
}
.intake-card .step-desc {
  font-family: var(--font-body); font-size: 16px; font-style: italic;
  color: var(--text-muted); margin-bottom: 28px;
}
.field { margin-bottom: 22px; }
.field label {
  display: block; font-family: var(--font-heading); font-size: 12px;
  font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  color: var(--text-muted); margin-bottom: 8px;
}
.field input, .field select, .field textarea {
  width: 100%; background: var(--bg-medium); border: 1px solid var(--border-brown);
  border-radius: 3px; color: var(--text-cream); font-family: var(--font-body);
  font-size: 16px; padding: 11px 14px; outline: none; transition: border-color .25s, box-shadow .25s;
}
.field input:focus, .field select:focus, .field textarea:focus {
  border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,.12);
}
.field textarea { resize: vertical; min-height: 110px; }
.field select { appearance: none; cursor: pointer; }
.field .hint { font-family: var(--font-body); font-size: 13px; font-style: italic; color: var(--text-dim); margin-top: 5px; }
.radio-group { display: flex; flex-direction: column; gap: 10px; }
.radio-opt { display: flex; align-items: center; gap: 12px; cursor: pointer; }
.radio-opt input { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }
.radio-opt span { font-family: var(--font-body); font-size: 16px; color: var(--text-cream); }
.btn-row { display: flex; justify-content: space-between; align-items: center; margin-top: 32px; gap: 12px; }
.btn-prev, .btn-next, .btn-submit {
  font-family: var(--font-heading); font-size: 13px; font-weight: 700;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 12px 32px; border-radius: 3px; border: 2px solid var(--gold); cursor: pointer; transition: all .3s;
}
.btn-prev { background: transparent; color: var(--text-muted); border-color: var(--border-brown); }
.btn-prev:hover { border-color: var(--gold); color: var(--gold); }
.btn-next, .btn-submit { background: rgba(201,168,76,.1); color: var(--gold); }
.btn-next:hover, .btn-submit:hover { background: var(--gold); color: var(--bg-darkest); box-shadow: 0 0 20px rgba(201,168,76,.3); }
.intake-success { text-align: center; padding: 50px 20px; display: none; }
.intake-success .ic { font-size: 56px; margin-bottom: 20px; }
.intake-success h2 { font-family: var(--font-display); font-size: 28px; color: var(--gold); margin-bottom: 12px; }
.intake-success p { font-family: var(--font-body); font-size: 18px; font-style: italic; color: var(--text-muted); }

/* ── 15. ANIMATIES ───────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; } to { opacity: 1; }
}
.leeszaal-card:nth-child(1) { animation: fadeInUp .5s ease-out .1s both; }
.leeszaal-card:nth-child(2) { animation: fadeInUp .5s ease-out .2s both; }
.leeszaal-card:nth-child(3) { animation: fadeInUp .5s ease-out .3s both; }
.leeszaal-card:nth-child(4) { animation: fadeInUp .5s ease-out .4s both; }
.tv-card:nth-child(1) { animation: fadeInUp .5s ease-out .10s both; }
.tv-card:nth-child(2) { animation: fadeInUp .5s ease-out .18s both; }
.tv-card:nth-child(3) { animation: fadeInUp .5s ease-out .26s both; }
.tv-card:nth-child(4) { animation: fadeInUp .5s ease-out .34s both; }
.tv-card:nth-child(5) { animation: fadeInUp .5s ease-out .42s both; }

/* ── 16. RESPONSIVE ──────────────────────────────────────────── */
@media (max-width: 1024px) {
  .hero-section    { grid-template-columns: 1fr; }
  .hero-content    { grid-template-columns: 1fr 1fr; }
  .leeszaal-section{ grid-template-columns: 1fr; }
  .leeszaal-grid   { grid-template-columns: repeat(4, 1fr); }
  .bottom-section  { grid-template-columns: 1fr; }
  .tv-cards        { grid-template-columns: repeat(3, 1fr); }
  .krant-grid      { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .header-inner    { flex-direction: column; gap: 10px; }
  .logo-area       { display: none; }
  .lang-flags      { position: absolute; top: 10px; right: 10px; }
  .nav-links a     { padding: 10px 14px; font-size: 12px; border-right: none; }
  .timeline-inner  { flex-wrap: wrap; gap: 2px; }
  .timeline-inner a{ font-size: 13px; padding: 4px 8px; }
  .timeline-arrow  { display: none; }
  .search-box      { margin: 8px 0 0; width: 100%; }
  .search-box input{ width: 100%; }
  .hero-content    { grid-template-columns: 1fr; }
  .leeszaal-grid   { grid-template-columns: repeat(2, 1fr); }
  .books-row       { flex-wrap: wrap; }
  .footer-grid     { grid-template-columns: 1fr; gap: 25px; }
  .tv-cards        { grid-template-columns: repeat(2, 1fr); }
  .krant-inner     { grid-template-columns: 1fr; }
  .krant-thumb     { width: 100%; height: 120px; }
  .intake-card     { padding: 24px 20px; }
}
@media (max-width: 480px) {
  .site-title      { letter-spacing: 1px; }
  .leeszaal-grid   { grid-template-columns: 1fr 1fr; }
  .book-cover      { width: 100px; height: 140px; font-size: 11px; }
  .filter-tabs     { flex-wrap: wrap; }
  .tv-cards        { grid-template-columns: 1fr 1fr; gap: 12px; }
  .btn-row         { flex-direction: column; }
  .btn-prev, .btn-next, .btn-submit { width: 100%; text-align: center; }
}
