/* ═══════════════════════════════════════════════════════════════
   STIJL 17 — Luxe
   Goud en marineblauw: serif, haarscherpe lijnen, diamant-accenten
   ═══════════════════════════════════════════════════════════════ */

:root {
  --gold: #c9a227;
  --gold-light: #f0d98c;
  --text: #e8e2d6;
  --muted: #8f8673;
  --bg: #101a2c;
  --bg-deep: #0c1322;
  --line: rgba(201, 162, 39, 0.3);
  --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.65;
  color: var(--text);
  background: linear-gradient(180deg, var(--bg) 0%, var(--bg-deep) 100%);
  -webkit-font-smoothing: antialiased;
}

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

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

.hero::after {
  content: "◆";
  position: absolute;
  bottom: -11px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--gold);
  background: var(--bg);
  padding: 0 12px;
  font-size: 0.8rem;
}

.hero h1 {
  font-family: var(--serif);
  font-size: 2.9rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  background: linear-gradient(180deg, var(--gold-light) 0%, var(--gold) 55%, #8a6d1d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.tagline {
  margin-top: 12px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

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

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

.btn {
  display: inline-block;
  padding: 13px 32px;
  border-radius: 2px;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid var(--gold);
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: #101a2c;
  border-color: transparent;
}
.btn-primary:hover { box-shadow: 0 0 22px rgba(201, 162, 39, 0.35); }

.btn-secondary {
  background: transparent;
  color: var(--gold);
}
.btn-secondary:hover { background: rgba(201, 162, 39, 0.1); }

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

.section h2 {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 16px;
}

.section h2::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

.sec-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0;
}

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

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

/* ── Werkervaring ── */
.job {
  margin-bottom: 30px;
  padding: 20px 24px;
  border: 1px solid rgba(201, 162, 39, 0.18);
  background: rgba(255, 255, 255, 0.015);
  position: relative;
}

.job::before {
  content: "";
  position: absolute;
  top: 0; left: 0;
  width: 3px;
  height: 100%;
  background: linear-gradient(180deg, var(--gold-light), var(--gold), transparent);
}

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

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

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

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

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

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

.job li::before {
  content: "◆";
  position: absolute;
  left: 0;
  top: 3px;
  font-size: 0.55rem;
  color: var(--gold);
}

.job-todo {
  border-style: dashed;
  background: transparent;
}
.job-todo::before { background: 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: 600;
  color: var(--gold-light);
  margin-bottom: 14px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
}

.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;
  color: var(--gold);
}

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

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

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

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

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

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

.switcher-link {
  display: inline-block;
  padding: 6px 14px;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 2px;
  color: var(--text);
  font-size: 0.86rem;
  text-decoration: none;
  transition: border-color 0.15s ease, color 0.15s ease;
}

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

.switcher-link.is-active {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-color: transparent;
  color: #101a2c;
  font-weight: 700;
}

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

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero { padding: 56px 0 40px; }
  .hero h1 { font-size: 2.2rem; }
  .section { padding: 34px 0; }
  .skills-grid { grid-template-columns: 1fr; gap: 26px; }
  .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; border-bottom: 2px solid #000; }
  .hero::after { content: none; }
  .hero h1 { font-size: 21pt; color: #000; background: none; -webkit-background-clip: initial; background-clip: initial; }
  .tagline { color: #000; letter-spacing: 0.08em; }
  .location { color: #333; }

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

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

  .section { padding: 12px 0; border-bottom: 1px solid #ccc; break-inside: avoid; }
  .section h2 { font-size: 11pt; color: #000; letter-spacing: 0.06em; }
  .section h2::after { content: none; }
  .sec-num { color: #000; }

  .job { border: 1px solid #ccc; background: none; }
  .job::before { display: none; }
  .job h3 { color: #000; }
  .job-meta { color: #333; letter-spacing: 0.04em; }
  .job li::before { content: "◆"; color: #000; }

  .skills-grid { display: block; }
  .skills-grid > div { margin-bottom: 8px; }
  .skills-grid h3 { color: #000; border-bottom: 1px solid #ccc; }
  .skills-list li { padding: 1px 0 1px 16px; }
  .skills-list li::before { content: "—"; 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; }
}
