/* ═══════════════════════════════════════════════════════════════
   STIJL 18 — Glas
   Glassmorphism: zwevende kleur-orbs, frosted glass kaarten
   ═══════════════════════════════════════════════════════════════ */

:root {
  --indigo: #6366f1;
  --pink: #ec4899;
  --cyan: #06b6d4;
  --text: #1e293b;
  --muted: #64748b;
  --bg: #eef2ff;
}

* { 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);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* zwevende kleur-orbs */
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  z-index: -1;
  pointer-events: none;
}

body::before {
  width: 520px; height: 520px;
  top: -140px; right: -120px;
  background: var(--pink);
  animation: orb1 18s ease-in-out infinite alternate;
}

body::after {
  width: 560px; height: 560px;
  bottom: -180px; left: -160px;
  background: var(--cyan);
  animation: orb2 22s ease-in-out infinite alternate;
}

@keyframes orb1 { to { transform: translate(-80px, 60px) scale(1.12); } }
@keyframes orb2 { to { transform: translate(90px, -70px) scale(1.18); } }

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

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

.hero h1 {
  font-size: 2.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero h1 span {
  background: linear-gradient(110deg, var(--indigo), var(--pink), var(--cyan));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

.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: 14px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.7);
  cursor: pointer;
  font-family: inherit;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 8px 32px rgba(99, 102, 241, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.btn:hover { transform: translateY(-2px); box-shadow: 0 12px 36px rgba(99, 102, 241, 0.25); }

.btn-primary {
  background: rgba(99, 102, 241, 0.85);
  color: #fff;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.5);
  color: var(--indigo);
}

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

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

.section h2::after {
  content: "";
  flex: 1;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--indigo), var(--pink), var(--cyan));
  opacity: 0.4;
}

.sec-num {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  background: rgba(99, 102, 241, 0.12);
  color: var(--indigo);
  border: 1px solid rgba(99, 102, 241, 0.25);
}

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

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

/* ── Werkervaring: glas kaarten ── */
.job {
  margin-bottom: 22px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: 0 10px 40px rgba(99, 102, 241, 0.12);
}

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

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

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

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

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

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

.job li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--indigo), var(--pink));
}

.job-todo {
  background: rgba(255, 255, 255, 0.32);
  border-style: dashed;
}

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

.skills-grid h3 {
  font-size: 0.95rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: linear-gradient(110deg, var(--indigo), var(--pink));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

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

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

.skills-list li {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.7);
  border-radius: 12px;
  padding: 8px 14px;
  margin-bottom: 8px;
  box-shadow: 0 4px 20px rgba(99, 102, 241, 0.08);
}

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

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

.contact-list a {
  color: var(--indigo);
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.contact-list a:hover { border-bottom-color: var(--indigo); }

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

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

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

.switcher-link {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.switcher-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(99, 102, 241, 0.15);
}

.switcher-link.is-active {
  background: linear-gradient(110deg, rgba(99, 102, 241, 0.9), rgba(236, 72, 153, 0.9));
  border-color: transparent;
  color: #fff;
}

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

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero { padding: 52px 0 36px; }
  .hero h1 { font-size: 2.1rem; }
  .section { padding: 30px 0; }
  .skills-grid { grid-template-columns: 1fr; gap: 22px; }
  .btn { width: 100%; text-align: center; }
}

/* ═══════════════════════════════════════════════════════════════
   Print / "Download CV" — clean A4 CV
   ═══════════════════════════════════════════════════════════════ */
@media print {
  body { font-size: 11pt; color: #000; background: #fff; }
  body::before, body::after { display: none; }

  .hero { padding: 0 0 12px; text-align: left; border-bottom: 2px solid #000; }
  .hero h1 { font-size: 20pt; color: #000; }
  .hero h1 span { color: #000; background: none; -webkit-background-clip: initial; background-clip: initial; }
  .tagline { color: #000; }
  .location { color: #333; }

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

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

  .section { padding: 12px 0; break-inside: avoid; }
  .section h2 { font-size: 12.5pt; color: #000; }
  .section h2::after { content: none; }
  .sec-num { background: none; color: #000; border: 1px solid #000; width: auto; height: auto; padding: 0 4px; border-radius: 4px; }

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

  .skills-grid { display: block; }
  .skills-grid > div { margin-bottom: 8px; }
  .skills-grid h3 { color: #000; background: none; -webkit-background-clip: initial; background-clip: initial; }
  .skills-list li { background: none; backdrop-filter: 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; }
}
