/* ═══════════════════════════════════════════════════════════════
   STIJL 19 — ATS-Safe
   De conservatieve winnaar: single-column, standaardkoppen,
   serif-headings, geen afleiding. Maximaal compatibel met
   ATS-parsers en recruiters die 7 seconden scannen.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --accent: #1f3a5f;          /* diep marine — professioneel */
  --text: #1a1a1a;
  --muted: #555555;
  --bg: #ffffff;
  --line: #d9d9d9;
  --serif: Georgia, "Times New Roman", Times, serif;
  --sans: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 15.5px;
  line-height: 1.55;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 780px;
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Header / hero ── */
.hero {
  padding: 64px 0 36px;
  border-bottom: 3px solid var(--text);
  text-align: left;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--text);
}

.tagline {
  margin-top: 8px;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--accent);
}

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

.cta-row {
  margin-top: 24px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 0;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px 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: #162a45; }

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

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

.section h2 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  padding-bottom: 6px;
  border-bottom: 2px solid var(--line);
}

.sec-num { display: none; }

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

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

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

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

.job h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text);
}

.job-meta {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  margin-top: 2px;
}

.job ul {
  padding-left: 20px;
  list-style: disc;
}

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

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

/* ── Vaardigheden: bewust single-column (ATS-proof) ── */
.skills-grid {
  display: block;
  margin-bottom: 18px;
}

.skills-grid:last-child { margin-bottom: 0; }

.skills-grid h3 {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
}

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

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

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

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

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

.contact-list li {
  margin-bottom: 8px;
  font-size: 1rem;
}

.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 {
  padding: 26px 0 24px;
  color: var(--muted);
  font-size: 0.88rem;
  text-align: center;
}

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

.switcher-label {
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-right: 6px;
}

.switcher-link {
  display: inline-block;
  padding: 5px 12px;
  border: 1px solid var(--line);
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

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

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

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

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero { padding: 44px 0 28px; }
  .hero h1 { font-size: 1.9rem; }
  .section { padding: 26px 0; }
  .btn { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   Print / "Download CV" — dit is de stijl die recruiters zien
   ═══════════════════════════════════════════════════════════════ */
@media print {
  body { font-size: 10.5pt; color: #000; background: #fff; }

  .hero { padding: 0 0 10px; border-bottom: 2.5px solid #000; }
  .hero h1 { font-size: 20pt; color: #000; }
  .tagline { font-size: 11pt; color: #000; }
  .location { color: #333; }

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

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

  .section {
    padding: 10px 0;
    border-bottom: 1px solid #ccc;
    break-inside: avoid;
  }
  .section h2 {
    font-size: 11.5pt;
    color: #000;
    border-bottom: 1px solid #999;
    margin-bottom: 8px;
    padding-bottom: 3px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
  }

  .job { margin-bottom: 16px; }
  .job h3 { font-size: 11pt; }
  .job-meta { color: #333; }
  .job ul { padding-left: 16px; }
  .job li { margin-bottom: 3px; }
  .job li::marker { color: #000; }
  .job-todo { border-left: 2px solid #ccc; }

  .skills-grid { display: block; margin-bottom: 8px; }
  .skills-grid h3 { font-size: 10.5pt; color: #000; margin-bottom: 4px; }
  .skills-list li { padding: 1px 0 1px 14px; }
  .skills-list li::before { content: "—"; color: #000; }

  .contact-list { margin: 8px 0; }
  .contact-list li { margin-bottom: 2px; }
  .contact-list a { color: #000; text-decoration: none; }

  footer { display: none; }

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