/* ═══════════════════════════════════════════════════════════════
   STIJL 6 — Pastel
   Zacht en vriendelijk: pastelgradiënt, koraal accent, ronde kaarten
   ═══════════════════════════════════════════════════════════════ */

:root {
  --accent: #e86a92;          /* koraalroze */
  --accent-soft: #fdeef3;
  --text: #4a3f45;
  --muted: #8d7f87;
  --bg: #fdf6f8;
  --card: #ffffff;
  --line: #f3e3ea;
  --radius: 16px;
  --shadow: 0 4px 20px rgba(232, 106, 146, 0.08);
}

* { 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: linear-gradient(180deg, #fdf6f8 0%, #f7f0fb 55%, #eef4fc 100%);
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

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

/* ── Header / hero ── */
.hero {
  padding: 72px 0 48px;
  text-align: center;
}

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

.hero h1 span {
  display: inline-block;
  background: linear-gradient(120deg, var(--accent), #a78bfa);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

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

.btn {
  display: inline-block;
  padding: 13px 28px;
  border-radius: 999px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 6px 18px rgba(232, 106, 146, 0.35);
}
.btn-primary:hover { background: #dd5581; }

.btn-secondary {
  background: var(--card);
  color: var(--accent);
  border-color: #f3cfdb;
  box-shadow: var(--shadow);
}
.btn-secondary:hover { background: var(--accent-soft); }

/* ── Sections ── */
.section {
  padding: 44px 0;
}

.section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.sec-num {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
  padding: 3px 10px;
  letter-spacing: 0.05em;
}

.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: 24px;
  background: var(--card);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px 28px;
  border: 1px solid var(--line);
}

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

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

.job h3 {
  font-size: 1.08rem;
  font-weight: 700;
}

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

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

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

.job-todo {
  background: rgba(255, 255, 255, 0.55);
  border-style: dashed;
  box-shadow: none;
}

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

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

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

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

.skills-list li {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 14px;
  margin-bottom: 8px;
  box-shadow: 0 2px 8px rgba(232, 106, 146, 0.05);
}

/* ── 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);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.contact-list a:hover { border-bottom-color: var(--accent); }

/* ── Footer + stijl-schakelaar ── */
footer {
  padding: 32px 0 28px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.4);
}

.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: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
  margin-right: 4px;
}

.switcher-link {
  display: inline-block;
  padding: 7px 15px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--card);
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 2px 8px rgba(232, 106, 146, 0.06);
  transition: border-color 0.15s ease, transform 0.15s ease;
}

.switcher-link:hover {
  border-color: var(--accent);
  transform: translateY(-1px);
}

.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: 52px 0 36px; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 34px 0; }
  .skills-grid { grid-template-columns: 1fr; gap: 24px; }
  .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; }
  .hero h1 { font-size: 20pt; color: #000; }
  .hero h1 span { background: none; color: #000; -webkit-background-clip: initial; background-clip: initial; }
  .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; break-inside: avoid; }
  .section h2 { font-size: 12.5pt; color: #000; margin-bottom: 8px; }
  .section h2::after { content: none; }
  .sec-num { color: #000; background: none; padding: 0; }

  .job { background: none; border: 1px solid #ccc; border-radius: 0; box-shadow: none; padding: 12px; margin-bottom: 14px; }
  .job-meta { color: #333; }
  .job-todo { background: none; }

  .skills-grid { display: block; }
  .skills-grid > div { margin-bottom: 8px; }
  .skills-grid h3 { color: #000; }
  .skills-list li { background: none; border: none; box-shadow: none; padding: 1px 0; margin-bottom: 1px; }

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

  footer { display: none; }

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