/* ═══════════════════════════════════════════════════════════════
   STIJL 23 — Stijlvol
   Zelfde klassieke concept, chique champagnegoud op ivoor,
   serif-accenten voor de naam en sectiekopjes
   ═══════════════════════════════════════════════════════════════ */

:root {
  --accent: #a8813c;          /* champagnegoud */
  --accent-dark: #8a682f;
  --accent-soft: #f7f0e2;
  --text: #2b2621;
  --muted: #7d7263;
  --bg: #ffffff;
  --bg-alt: #faf7f1;
  --line: #e9e1d2;
  --radius: 4px;
  --serif: Georgia, "Times New Roman", Times, serif;
}

* { 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.6;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
}

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

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

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

.tagline {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.location {
  margin-top: 8px;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}

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

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

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

.btn-secondary {
  background: transparent;
  color: var(--accent);
  border-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.4rem;
  font-weight: 600;
  color: var(--accent);
  margin-bottom: 18px;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 10px;
}

.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: 32px; }
.job:last-child { margin-bottom: 0; }

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

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

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

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

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

.job-todo {
  background: var(--bg-alt);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 16px 20px;
}

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

.skills-grid h3 {
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: var(--accent);
}

.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: 0;
  top: 13px;
  width: 8px;
  height: 8px;
  border: 1px solid var(--accent);
  border-radius: 50%;
  background: transparent;
}

/* ── 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 {
  background: var(--bg-alt);
  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.1em;
  color: var(--muted);
  margin-right: 4px;
}

.switcher-link {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.15s ease, border-color 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: #fff;
}

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

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero { padding: 48px 0 40px; }
  .hero h1 { font-size: 2rem; }
  .tagline { letter-spacing: 0.1em; }
  .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 {
    background: none;
    border-bottom: 2px solid #000;
    padding: 0 0 12px;
    text-align: left;
  }
  .hero h1 { font-size: 20pt; color: #000; }
  .tagline { font-size: 11pt; color: #000; letter-spacing: 0.06em; }
  .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; border-bottom: 1px solid #999; margin-bottom: 8px; padding-bottom: 4px; }

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

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

  footer { display: none; }

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