/* ═══════════════════════════════════════════════════════════════
   STIJL 11 — Holo
   Holografisch: iriserende gradient, zwevende blobs, glaskunst
   ═══════════════════════════════════════════════════════════════ */

:root {
  --grad: linear-gradient(110deg, #ff6bcb 0%, #a78bfa 30%, #38bdf8 60%, #34d399 100%);
  --text: #2b2f4a;
  --muted: #6d7196;
  --bg: #f4f6ff;
}

* { 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 kleurblobs */
body::before, body::after {
  content: "";
  position: fixed;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}

body::before {
  width: 480px; height: 480px;
  top: -120px; right: -120px;
  background: #ff6bcb;
  animation: drift1 16s ease-in-out infinite alternate;
}

body::after {
  width: 520px; height: 520px;
  bottom: -160px; left: -140px;
  background: #38bdf8;
  animation: drift2 20s ease-in-out infinite alternate;
}

@keyframes drift1 { to { transform: translate(-60px, 40px) scale(1.1); } }
@keyframes drift2 { to { transform: translate(70px, -50px) scale(1.15); } }

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

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

.hero h1 {
  font-size: 2.7rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  background: var(--grad);
  background-size: 220% 220%;
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: hue 9s linear infinite;
}

@keyframes hue {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.tagline {
  margin-top: 10px;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.04em;
}

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

.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: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, 0.75);
  cursor: pointer;
  font-family: inherit;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

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

.btn-primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 8px 26px rgba(167, 139, 250, 0.4);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.55);
  color: var(--text);
  box-shadow: 0 4px 18px rgba(56, 189, 248, 0.18);
}

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

.section h2 {
  font-size: 1.25rem;
  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: var(--grad);
  opacity: 0.55;
}

.sec-num {
  font-size: 0.8rem;
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: 0.1em;
}

.section p + p { margin-top: 12px; }
.section p a { color: #a78bfa; font-weight: 600; }

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

/* ── Werkervaring: glas kaarten ── */
.job {
  margin-bottom: 24px;
  background: rgba(255, 255, 255, 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 18px;
  padding: 22px 26px;
  box-shadow: 0 8px 30px rgba(120, 130, 220, 0.14);
}

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

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

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

.job-meta {
  color: #a78bfa;
  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: 16px;
  position: relative;
}

.job li::before {
  content: "✦";
  position: absolute;
  left: 0;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 0.9em;
  top: 2px;
}

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

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

.skills-grid h3 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 12px;
  background: var(--grad);
  -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.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 12px;
  padding: 8px 14px;
  margin-bottom: 8px;
  box-shadow: 0 4px 16px rgba(120, 130, 220, 0.1);
}

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

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

.contact-list a {
  color: #a78bfa;
  font-weight: 700;
  text-decoration: none;
  border-bottom: 1px solid transparent;
}
.contact-list a:hover { border-bottom-color: #a78bfa; }

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

.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.8);
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.15s ease;
}

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

.switcher-link.is-active {
  background: var(--grad);
  border-color: transparent;
  color: #fff;
}

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

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero { padding: 56px 0 36px; }
  .hero h1 { font-size: 2.1rem; }
  .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; }
  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; background: none; -webkit-background-clip: initial; background-clip: initial; animation: none; }
  .tagline { font-size: 11.5pt; 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 { color: #000; background: none; -webkit-background-clip: initial; background-clip: initial; }

  .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 { content: "•"; color: #000; background: none; -webkit-background-clip: initial; background-clip: initial; }
  .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; }
}
