:root {
  --rood: #D62828;
  --zwart: #111111;
  --wit: #F5F0E8;
  --geel: #F7B731;
  --grijs: #2A2A2A;
  --lichtgrijs: #E8E3D8;
  --li-blauw: #0A66C2;
  --li-achtergrond: #F3F2EF;
  --li-wit: #FFFFFF;
  --li-tekst: #1C1C1C;
  --li-subtekst: #666666;
  --li-border: #E0DEDA;
}

* { 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: 32px 0 40px; }
.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: 20px;
}
.hero h1 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3rem, 8vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
}

/* ── SECTIES ── */
.sectie { margin-bottom: 40px; }
.sectie-label {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.4);
  margin-bottom: 14px;
}
.scheidslijn {
  height: 1px;
  background: rgba(245,240,232,0.08);
  margin: 40px 0;
}

/* ── LINKEDIN KAART ── */
.li-kaart {
  background: var(--li-wit);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  color: var(--li-tekst);
  font-family: -apple-system, 'Segoe UI', Arial, sans-serif;
  font-size: 14px;
}
.li-kaart-header {
  position: relative;
  background: var(--li-achtergrond);
  padding: 0;
  border-bottom: 1px solid var(--li-border);
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
.li-kaart-dek {
  height: 62px;
  background: linear-gradient(135deg, #0A66C2 0%, #164FA3 50%, #0A3D7C 100%);
  border-radius: 4px 4px 0 0;
  margin: 0;
  position: relative;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 92px;
  z-index: 1;
}
.li-avatar {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 3px solid var(--li-wit);
  background: #C0C0C0;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
  font-size: 1.2rem;
  color: white;
  overflow: hidden;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 10;
}
.li-profiel-info {
  padding: 5px 15px 5px 92px;
  min-width: 100%;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.li-naam {
  font-weight: 700;
  font-size: 16px;
  color: white;
  line-height: 1.3;
}
.li-connecties {
  font-size: 12px;
  color: var(--li-blauw);
  font-weight: 600;
}
.li-kaart-body { padding: 16px; }
.li-section-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--li-tekst);
  margin-bottom: 8px;
}
.li-beschrijving {
  font-size: 14px;
  color: #1C1C1C;
  line-height: 1.6;
  font-style: italic;
}
.li-likes {
  font-size: 12px;
  color: var(--li-subtekst);
  padding: 0 16px 8px;
}
.li-kaart-footer {
  padding: 8px 16px 12px;
  border-top: 1px solid var(--li-border);
  display: flex;
  gap: 4px;
}
.li-actie {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 4px;
  border: none;
  background: none;
  color: var(--li-subtekst);
  font-size: 13px;
  font-weight: 600;
  cursor: default;
  border-radius: 4px;
  font-family: -apple-system, 'Segoe UI', Arial, sans-serif;
}

/* ── INHOUD ── */
.echt-blok {
  background: var(--grijs);
  padding: 28px 32px;
  border-left: 4px solid var(--rood);
}
.echt-blok p {
  font-size: 1.05rem;
  line-height: 1.7;
  color: var(--wit);
}
.oneliner-blok {
  border-left: 4px solid var(--geel);
  padding: 16px 24px;
  background: rgba(247,183,49,0.07);
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--wit);
  line-height: 1.5;
}

/* ── CTAs ── */
.cta-spel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: var(--grijs);
  padding: 24px 28px;
  text-decoration: none;
  transition: background 0.2s;
}
.cta-spel:hover { background: #333; }
.cta-spel-tekst {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1rem;
  color: rgba(245,240,232,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.cta-spel-actie {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1.4rem;
  color: var(--wit);
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.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); }

/* ── BEROEP NAVIGATIE ── */
.beroep-nav {
  display: flex;
  gap: 12px;
}
.beroep-nav-knop {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
  background: var(--grijs);
  padding: 16px 20px;
  text-decoration: none;
  transition: background 0.2s;
}
.beroep-nav-knop:hover { background: #333; }
.beroep-nav-richting {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.35);
}
.beroep-nav-naam {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--wit);
}
.beroep-nav-knop.rechts { text-align: right; }

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  nav { padding: 14px 20px; }
  .nav-links a { margin-left: 16px; font-size: 0.85rem; }
  .hero h1 { font-size: 3rem; }
  .echt-blok { padding: 20px 20px; }
  .cta-spel { flex-direction: column; align-items: flex-start; gap: 10px; }
  .beroep-nav { flex-direction: column; }
}
