/* ═══════════════════════════════════════════════════════════════
   STIJL 8 — Bold
   Groot en uitgesproken: zwart + geel, marker-effect, zware letters
   ═══════════════════════════════════════════════════════════════ */

:root {
  --accent: #ffd60a;          /* geel — loud accent */
  --text: #111111;
  --muted: #5a5a5a;
  --bg: #fafafa;
  --line: #e4e4e4;
  --radius: 0;
}

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

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

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

.hero h1 {
  font-size: 3.6rem;
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1.05;
  color: var(--text);
  display: inline-block;
  background: linear-gradient(transparent 62%, var(--accent) 62%);
  padding: 0 6px;
  margin-left: -6px;
}

.tagline {
  margin-top: 16px;
  font-size: 1.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text);
}

.tagline::after {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  background: var(--accent);
  margin-left: 10px;
}

.location {
  margin-top: 8px;
  color: var(--muted);
  font-weight: 600;
}

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

.btn {
  display: inline-block;
  padding: 14px 30px;
  border-radius: var(--radius);
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-decoration: none;
  border: 3px solid var(--text);
  cursor: pointer;
  font-family: inherit;
  box-shadow: 4px 4px 0 var(--text);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.btn:hover {
  transform: translate(2px, 2px);
  box-shadow: 2px 2px 0 var(--text);
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
}

.btn-secondary {
  background: #fff;
  color: var(--text);
}

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

.section h2 {
  display: inline-block;
  font-size: 1.35rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  background: var(--accent);
  color: var(--text);
  padding: 6px 16px;
  transform: skewX(-6deg);
  margin-bottom: 24px;
  margin-left: 8px;
}

.section h2 > * { transform: skewX(6deg); }

.sec-num { margin-right: 8px; }

.section p + p { margin-top: 12px; }
.section p a { color: var(--text); font-weight: 700; }

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

/* ── Werkervaring ── */
.job {
  margin-bottom: 32px;
  padding-left: 20px;
  border-left: 6px solid var(--text);
}

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

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

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

.job h3::before {
  content: "■ ";
  color: var(--accent);
}

.job-meta {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  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;
  color: var(--accent);
  font-weight: 900;
}

.job-todo {
  border-left-color: var(--line);
  border-left-style: dashed;
}

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

.skills-grid h3 {
  font-size: 1rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 14px;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
  padding-bottom: 4px;
}

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

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

.skills-list li {
  padding: 6px 0 6px 24px;
  position: relative;
  font-weight: 600;
}

.skills-list li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 13px;
  width: 10px;
  height: 10px;
  background: var(--accent);
  transform: rotate(45deg);
}

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

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

.contact-list a {
  color: var(--text);
  font-weight: 800;
  text-decoration: none;
  background: linear-gradient(transparent 62%, var(--accent) 62%);
  padding: 0 4px;
  margin-left: -4px;
}
.contact-list a:hover { background: var(--accent); }

/* ── Footer + stijl-schakelaar ── */
footer {
  border-top: 4px solid var(--text);
  padding: 32px 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
}

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

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

.switcher-link {
  display: inline-block;
  padding: 7px 15px;
  border-radius: var(--radius);
  border: 2px solid var(--text);
  background: #fff;
  color: var(--text);
  font-size: 0.88rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 3px 3px 0 var(--text);
  transition: transform 0.1s ease, box-shadow 0.1s ease;
}

.switcher-link:hover {
  transform: translate(1px, 1px);
  box-shadow: 1px 1px 0 var(--text);
}

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

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

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero { padding: 64px 0 44px; }
  .hero h1 { font-size: 2.5rem; }
  .tagline { font-size: 1.05rem; }
  .section { padding: 40px 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; border-bottom: 3px solid #000; }
  .hero h1 { font-size: 22pt; background: none; padding: 0; margin: 0; }
  .tagline { font-size: 12pt; }
  .tagline::after { display: none; }
  .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 { background: none; color: #000; transform: none; padding: 0; margin: 0 0 8px; font-size: 12.5pt; }
  .section h2 > * { transform: none; }

  .job { border-left: 4px solid #000; }
  .job h3::before { content: none; }
  .job-meta { color: #333; }
  .job li::before { content: "•"; color: #000; }
  .job-todo { border-left: 2px dashed #ccc; }

  .skills-grid { display: block; }
  .skills-grid > div { margin-bottom: 8px; }
  .skills-grid h3 { border-bottom: 2px solid #000; }
  .skills-list li { padding: 1px 0 1px 18px; }
  .skills-list li::before { background: #000; }

  .contact-list li { margin-bottom: 2px; }
  .contact-list a { background: none; padding: 0; margin: 0; }

  footer { display: none; }

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