/* ═══════════════════════════════════════════════════════════════
   STIJL 4 — Minimal
   Less is more: wit, haarscherpe lijnen, lichtgewicht typografie
   ═══════════════════════════════════════════════════════════════ */

:root {
  --accent: #111111;          /* zwart als enige accent */
  --text: #161616;
  --muted: #8a8a8a;
  --bg: #ffffff;
  --bg-alt: #fafafa;
  --line: #e8e8e8;
}

* { 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;
  font-weight: 300;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

/* ── Header / hero ── */
.hero {
  padding: 110px 0 70px;
  text-align: center;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 200;
  letter-spacing: -0.01em;
  color: var(--accent);
}

.tagline {
  margin-top: 12px;
  font-size: 1.05rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--muted);
}

.location {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.95rem;
}

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

.btn {
  display: inline-block;
  padding: 13px 34px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--accent);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover { background: #333; }

.btn-secondary {
  background: transparent;
  color: var(--accent);
}
.btn-secondary:hover { background: var(--bg-alt); }

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

.section h2 {
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 24px;
}

.sec-num { display: none; }

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

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

/* ── Werkervaring ── */
.job { margin-bottom: 36px; }
.job:last-child { margin-bottom: 0; }

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

.job h3 {
  font-size: 1.15rem;
  font-weight: 500;
}

.job-meta {
  color: var(--muted);
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  margin-top: 3px;
}

.job ul {
  padding-left: 18px;
  list-style: none;
}

.job li {
  margin-bottom: 7px;
  padding-left: 16px;
  position: relative;
}

.job li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 11px;
  width: 5px;
  height: 1px;
  background: var(--muted);
}

.job-todo {
  border-left: 1px solid var(--line);
  padding-left: 20px;
}

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

.skills-grid h3 {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
}

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

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

.skills-list li {
  padding: 5px 0 5px 18px;
  position: relative;
}

.skills-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  top: 4px;
  color: var(--muted);
}

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

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

.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: 32px 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
}

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

.switcher-label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-right: 8px;
}

.switcher-link {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid var(--line);
  color: var(--text);
  font-size: 0.88rem;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

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

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

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

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

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

  .hero { padding: 0 0 14px; text-align: left; border-bottom: 2px solid #000; }
  .hero h1 { font-size: 20pt; font-weight: 700; }
  .tagline { font-size: 11pt; color: #000; letter-spacing: 0.08em; }
  .location { color: #333; }

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

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

  .section {
    padding: 14px 0;
    border-top: none;
    border-bottom: 1px solid #ccc;
    break-inside: avoid;
  }
  .section h2 { font-size: 10.5pt; color: #000; letter-spacing: 0.08em; margin-bottom: 8px; }

  .job li::before { background: #000; }
  .job-meta { color: #333; }

  .skills-grid { display: block; }
  .skills-grid > div { margin-bottom: 8px; }
  .skills-grid h3 { color: #000; letter-spacing: 0.08em; }
  .skills-list li { padding: 1px 0 1px 14px; }
  .skills-list li::before { color: #000; }

  .job-todo { border-left: 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; }
}
