/* ═══════════════════════════════════════════════════════════════
   STIJL 3 — Editoriaal / Magazine
   Warm papier, serif-headings, terracotta accent, magazine-gevoel
   ═══════════════════════════════════════════════════════════════ */

:root {
  --accent: #b4552d;          /* terracotta — enige accentkleur */
  --accent-soft: #f3e3d9;
  --text: #2b2620;
  --muted: #7a7168;
  --bg: #fbf7f0;
  --bg-alt: #f4ede2;
  --line: #e0d6c6;
  --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: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

.kicker {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.35em;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 16px;
}

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

.tagline {
  margin-top: 10px;
  font-size: 1.15rem;
  font-style: italic;
  font-family: var(--serif);
  color: var(--accent);
}

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

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

.btn {
  display: inline-block;
  padding: 12px 26px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 1px solid var(--accent);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease;
  border-radius: 0;
}

.btn-primary {
  background: var(--accent);
  color: #fdfaf5;
}
.btn-primary:hover { background: #93431f; }

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

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

.section h2 {
  font-family: var(--serif);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: baseline;
  gap: 14px;
}

.sec-num {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.15em;
}

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

.muted { color: var(--muted); }

.lead {
  font-size: 1.08rem;
  font-family: var(--serif);
}

/* ── Werkervaring ── */
.job {
  margin-bottom: 36px;
  padding-left: 18px;
  border-left: 2px solid var(--accent);
}

.job:last-child { margin-bottom: 0; }

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

.job h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 700;
}

.job-meta {
  color: var(--accent);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 4px;
  font-weight: 600;
}

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

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

.job-todo {
  border-left: 2px dashed var(--line);
  padding-left: 18px;
}

.job-todo .job-meta { color: var(--muted); }

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

.skills-grid h3 {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--accent);
}

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

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

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

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

/* ── Contact ── */
.contact-list {
  list-style: none;
  margin: 20px 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 {
  background: var(--bg-alt);
  border-top: 3px double 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.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--muted);
  margin-right: 4px;
}

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

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

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

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

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: 2.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;
  }
  .kicker { display: none; }
  .hero h1 { font-size: 20pt; color: #000; }
  .tagline { font-size: 12pt; color: #000; }
  .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: 13pt; color: #000; margin-bottom: 8px; }
  .sec-num { color: #000; }

  .job { border-left: 2px solid #000; margin-bottom: 18px; }
  .job-meta { color: #333; }
  .job-todo { border-left: 2px solid #ccc; }

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

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

  footer { display: none; }

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