:root {
  --rood: #D62828;
  --zwart: #111111;
  --wit: #F5F0E8;
  --geel: #F7B731;
  --grijs: #2A2A2A;
  --lichtgrijs: #E8E3D8;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  background: var(--zwart);
  color: var(--wit);
  font-family: 'Barlow', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' 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.04'/%3E%3C/svg%3E");
  background-size: 200px 200px;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.5;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 40px;
  background: rgba(17,17,17,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--rood);
}
.nav-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.05em;
  color: var(--rood);
  text-decoration: none;
}
.nav-links a {
  color: var(--wit);
  text-decoration: none;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-left: 32px;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--rood); }

/* ── MAIN ── */
main {
  padding-top: 80px;
  max-width: 720px;
  margin: 0 auto;
  padding-left: 24px;
  padding-right: 24px;
  padding-bottom: 80px;
}

/* ── BREADCRUMB ── */
.breadcrumb {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  color: rgba(245,240,232,0.35);
  padding: 28px 0 0;
  text-transform: uppercase;
}
.breadcrumb a { color: rgba(245,240,232,0.35); text-decoration: none; }
.breadcrumb a:hover { color: var(--wit); }
.breadcrumb span { margin: 0 8px; }

/* ── HERO ── */
.hero { padding: 28px 0 36px; }
.hero-tag {
  display: inline-block;
  background: var(--rood);
  color: white;
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 5px 12px;
  margin-bottom: 18px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.6rem, 7vw, 4.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  margin-bottom: 18px;
}
.hero-intro {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  color: rgba(245,240,232,0.65);
  line-height: 1.5;
  max-width: 560px;
  border-left: 3px solid var(--rood);
  padding-left: 16px;
}

/* ── ARTIKEL ── */
article { margin-top: 8px; }

.artikel-sectie {
  margin-bottom: 44px;
}

.artikel-sectie h2 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  letter-spacing: 0.03em;
  line-height: 1.1;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  color: var(--wit);
}

.artikel-sectie p {
  color: rgba(245,240,232,0.82);
  margin-bottom: 16px;
  font-size: 1rem;
  line-height: 1.78;
}

.artikel-sectie p:last-child { margin-bottom: 0; }

.artikel-sectie strong {
  color: var(--wit);
  font-weight: 600;
}

.artikel-sectie em {
  font-style: italic;
  color: rgba(245,240,232,0.75);
}

.artikel-sectie a {
  color: var(--rood);
  text-decoration: none;
  border-bottom: 1px solid rgba(214,40,40,0.4);
  transition: border-color 0.2s;
}

.artikel-sectie a:hover { border-color: var(--rood); }

.artikel-sectie ul {
  list-style: none;
  margin: 0 0 16px 0;
  padding: 0;
}

.artikel-sectie ul li {
  font-size: 1rem;
  color: rgba(245,240,232,0.78);
  padding: 6px 0 6px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  line-height: 1.6;
}

.artikel-sectie ul li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: var(--rood);
  opacity: 0.6;
}

.artikel-sectie ol {
  list-style: none;
  counter-reset: ol-counter;
  margin: 0 0 16px 0;
  padding: 0;
}

.artikel-sectie ol li {
  font-size: 1rem;
  color: rgba(245,240,232,0.78);
  padding: 10px 0 10px 40px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  position: relative;
  line-height: 1.6;
  counter-increment: ol-counter;
}

.artikel-sectie ol li::before {
  content: counter(ol-counter);
  position: absolute;
  left: 0;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  color: rgba(214,40,40,0.5);
  top: 10px;
}

/* ── DEFINITIE ITEMS (buzzwords, coaches) ── */
.definitie-item {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.definitie-item:last-child { border-bottom: none; }

.definitie-term {
  display: block;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--geel);
  margin-bottom: 4px;
}

.definitie-tekst {
  font-size: 0.98rem;
  color: rgba(245,240,232,0.72);
  line-height: 1.65;
}

/* ── VOORBEELD BLOK ── */
.voorbeeld-blok {
  background: rgba(247,183,49,0.05);
  border-left: 4px solid rgba(247,183,49,0.5);
  padding: 22px 26px;
}

.voorbeeld-blok p {
  font-style: italic;
  color: rgba(245,240,232,0.72) !important;
  margin-bottom: 12px !important;
}

.voorbeeld-blok p:last-child { margin-bottom: 0 !important; }

/* ── CONCLUSIE BLOK (Waarom je hier bent) ── */
.conclusie-blok {
  background: var(--grijs);
  border-left: 4px solid var(--rood);
  padding: 24px 28px;
}

.conclusie-blok p {
  color: rgba(245,240,232,0.88) !important;
  margin-bottom: 14px !important;
}

.conclusie-blok p:last-child { margin-bottom: 0 !important; }

.conclusie-blok a {
  color: var(--rood);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(214,40,40,0.5);
}

/* ── SCHEIDSLIJN ── */
.scheidslijn {
  height: 1px;
  background: rgba(245,240,232,0.08);
  margin: 40px 0;
}

/* ── CTA BOEK ── */
.cta-boek {
  background: var(--grijs);
  border: 1px solid rgba(214,40,40,0.3);
  padding: 28px 32px;
  position: relative;
  overflow: hidden;
}

.cta-boek::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--rood);
}

.cta-boek p {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-style: italic;
  color: rgba(245,240,232,0.7);
  margin-bottom: 20px;
  line-height: 1.5;
}

.cta-boek p strong { color: var(--wit); font-style: normal; }

.knop-rood {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--rood);
  color: white;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  padding: 14px 28px;
  text-decoration: none;
  transition: all 0.2s;
}

.knop-rood:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(214,40,40,0.4);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav { padding: 14px 20px; }
  .nav-links a { margin-left: 16px; font-size: 0.85rem; }
  .hero h1 { font-size: 2.4rem; }
  .voorbeeld-blok,
  .conclusie-blok { padding: 18px 18px; }
  .cta-boek { padding: 22px 20px; }
}

/* ── FOOTER ── */
footer {
  background: #0A0A0A;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 28px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.1rem;
  color: rgba(245,240,232,0.2);
  letter-spacing: 0.05em;
}
.footer-tekst {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  color: rgba(245,240,232,0.18);
  letter-spacing: 0.05em;
}
@media (max-width: 640px) {
  footer { flex-direction: column; gap: 10px; padding: 22px 20px; text-align: center; }
}
