/* ═══════════════════════════════════════════════════════════════
   STIJL 2 — Modern Donker
   Dark, techy: bijna-zwart, teal accent, mono labels, cards
   ═══════════════════════════════════════════════════════════════ */

:root {
  --accent: #2dd4bf;          /* teal — enige accentkleur */
  --accent-dim: #134e4a;
  --text: #e6edf3;
  --muted: #8b98a5;
  --bg: #0b0f14;
  --bg-panel: #11161d;
  --line: #1f2937;
  --radius: 12px;
  --mono: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--text);
  background:
    radial-gradient(600px 300px at 85% -50px, rgba(45, 212, 191, 0.08), transparent 70%),
    var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Header / hero ── */
.hero {
  padding: 80px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--line);
}

.hero-kicker {
  font-family: var(--mono);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.04em;
  margin-bottom: 14px;
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  background: linear-gradient(100deg, #fff 30%, var(--accent) 90%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin-top: 10px;
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
  font-family: var(--mono);
}

.location {
  margin-top: 6px;
  color: var(--muted);
}

.cta-row {
  margin-top: 28px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #06121a;
}
.btn-primary:hover { background: #5eead4; }

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent-dim);
}
.btn-secondary:hover { border-color: var(--accent); background: rgba(45, 212, 191, 0.08); }

/* ── Sections ── */
.section {
  padding: 48px 0;
  border-bottom: 1px solid var(--line);
}

.section h2 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  letter-spacing: -0.01em;
  font-family: var(--mono);
  text-transform: uppercase;
  font-size: 1.05rem;
  color: var(--text);
}

.sec-num {
  color: var(--accent);
  margin-right: 10px;
  font-weight: 400;
}

.section p + p { margin-top: 12px; }
.section p a { color: var(--accent); }

.muted { color: var(--muted); }
.lead { font-size: 1.05rem; }

/* ── Werkervaring ── */
.job { margin-bottom: 28px; }

.card {
  background: var(--bg-panel);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}

.card .job-head { margin-bottom: 12px; }

.job h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #fff;
}

.job-meta {
  color: var(--accent);
  font-size: 0.88rem;
  font-family: var(--mono);
  margin-top: 4px;
}

.job ul {
  padding-left: 20px;
  list-style: disc;
  color: var(--text);
}

.job li { margin-bottom: 6px; }
.job li::marker { color: var(--accent); }

.job-todo {
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.02);
}

/* ── Vaardigheden ── */
.skills-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.skills-grid h3 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--mono);
  color: var(--accent);
  margin-bottom: 12px;
}

.skills-grid h3.sub { margin-top: 24px; }

.skills-list {
  list-style: none;
}

.skills-list li {
  padding: 6px 0 6px 22px;
  position: relative;
}

.skills-list li::before {
  content: "›";
  position: absolute;
  left: 2px;
  top: 5px;
  color: var(--accent);
  font-weight: 700;
}

/* ── Contact ── */
.contact-list {
  list-style: none;
  margin: 20px 0;
}

.contact-list li {
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.contact-list a {
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.contact-list a:hover { border-bottom-color: var(--accent); }

/* ── Footer + stijl-schakelaar ── */
footer {
  border-top: 1px solid var(--line);
  padding: 28px 0 24px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

.style-switcher {
  display: flex;
  gap: 8px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.switcher-label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-family: var(--mono);
  color: var(--muted);
  margin-right: 4px;
}

.switcher-link {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--bg-panel);
  color: var(--text);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

.switcher-link:hover {
  border-color: var(--accent-dim);
  color: var(--accent);
}

.switcher-link.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: #06121a;
}

.footer-note { font-size: 0.85rem; }

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 36px 0; }
  .skills-grid { grid-template-columns: 1fr; gap: 28px; }
  .btn { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   Print / "Download CV" — clean A4 CV
   ═══════════════════════════════════════════════════════════════ */
@media print {
  body {
    font-size: 11pt;
    color: #000;
    background: #fff;
  }

  .hero {
    padding: 0 0 12px;
    text-align: left;
    border-bottom: 2px solid #000;
  }
  .hero-kicker { display: none; }
  .hero h1 {
    font-size: 20pt;
    color: #000;
    background: none;
    -webkit-background-clip: initial;
    background-clip: initial;
  }
  .tagline { font-size: 12pt; color: #000; font-family: inherit; }
  .location { color: #333; }

  .btn, .style-switcher { display: none !important; }

  .container { max-width: 100%; padding: 0; }

  .section {
    padding: 14px 0;
    border-bottom: 1px solid #ccc;
    break-inside: avoid;
  }
  .section h2 {
    font-size: 12.5pt;
    color: #000;
    margin-bottom: 8px;
    font-family: inherit;
    text-transform: none;
    letter-spacing: 0;
  }
  .sec-num { color: #000; margin-right: 6px; }

  .card { background: none; border: none; padding: 0; }
  .job-meta { color: #333; font-family: inherit; }

  .skills-grid { display: block; }
  .skills-grid > div { margin-bottom: 8px; }
  .skills-grid h3 { color: #000; font-family: inherit; text-transform: none; letter-spacing: 0; }
  .skills-list li { padding: 1px 0 1px 14px; }
  .skills-list li::before { color: #000; }

  .job-todo { background: none; border: 1px solid #ccc; }
  .contact-list li { margin-bottom: 2px; }
  .contact-list a { color: #000; text-decoration: none; }

  footer { display: none; }

  a { color: #000; text-decoration: none; }
}
