/* ═══════════════════════════════════════════════════════════════
   STIJL 12 — Speels
   Vrolijk en vriendelijk: oranje + turkoois, dikke ronde vormen
   ═══════════════════════════════════════════════════════════════ */

:root {
  --orange: #ff7a1a;
  --teal: #00c2a8;
  --text: #37403c;
  --muted: #7d8a84;
  --bg: #fffdf5;
  --card: #ffffff;
  --line: #f0e9d8;
}

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

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

/* ── Header / hero ── */
.hero {
  padding: 68px 0 48px;
  text-align: center;
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 122, 26, 0.12), transparent 40%),
    radial-gradient(circle at 88% 30%, rgba(0, 194, 168, 0.12), transparent 40%);
  border-bottom: 4px dotted var(--line);
}

.hero h1 {
  font-size: 2.6rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--text);
  display: inline-block;
  background: var(--teal);
  color: #fff;
  padding: 4px 22px;
  border-radius: 24px;
  transform: rotate(-1.5deg);
  box-shadow: 6px 6px 0 var(--orange);
}

.tagline {
  margin-top: 20px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--orange);
  display: inline-block;
  background: #fff;
  border: 3px solid var(--orange);
  border-radius: 999px;
  padding: 8px 22px;
  transform: rotate(1.2deg);
}

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

.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: 800;
  text-decoration: none;
  border: 3px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

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

.btn-primary {
  background: var(--orange);
  color: #fff;
  border-color: var(--text);
  box-shadow: 5px 5px 0 var(--text);
}
.btn-primary:hover { box-shadow: 2px 2px 0 var(--text); }

.btn-secondary {
  background: #fff;
  color: var(--teal);
  border-color: var(--teal);
  box-shadow: 5px 5px 0 rgba(0, 194, 168, 0.35);
}
.btn-secondary:hover { box-shadow: 2px 2px 0 rgba(0, 194, 168, 0.35); }

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

.section h2 {
  display: inline-block;
  font-size: 1.25rem;
  font-weight: 900;
  background: var(--orange);
  color: #fff;
  padding: 6px 20px;
  border-radius: 14px;
  transform: rotate(-1.5deg);
  margin-bottom: 24px;
  box-shadow: 4px 4px 0 var(--text);
}

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

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

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

/* ── Werkervaring ── */
.job {
  margin-bottom: 26px;
  background: var(--card);
  border: 3px solid var(--text);
  border-radius: 20px;
  padding: 22px 26px;
  box-shadow: 6px 6px 0 var(--teal);
}

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

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

.job h3 {
  font-size: 1.1rem;
  font-weight: 900;
}

.job-meta {
  color: var(--teal);
  font-size: 0.88rem;
  font-weight: 800;
  margin-top: 4px;
}

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

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

.job li::before {
  content: "★";
  position: absolute;
  left: 0;
  top: 2px;
  color: var(--orange);
}

.job-todo {
  border-style: dashed;
  box-shadow: 6px 6px 0 rgba(0, 194, 168, 0.3);
  background: #fffdf0;
}

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

.skills-grid h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 14px;
  color: var(--teal);
}

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

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

.skills-list li {
  display: inline-block;
  background: #fff;
  border: 2px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  margin: 0 6px 8px 0;
  font-weight: 700;
  font-size: 0.92rem;
  transition: transform 0.12s ease;
}

.skills-list li:nth-child(3n+1) { border-color: var(--orange); transform: rotate(-1deg); }
.skills-list li:nth-child(3n+2) { border-color: var(--teal); transform: rotate(1deg); }

.skills-list li:hover { transform: scale(1.05) rotate(0); }

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

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

.contact-list a {
  color: var(--teal);
  font-weight: 800;
  text-decoration: none;
  border-bottom: 3px dotted var(--orange);
}
.contact-list a:hover { background: #fff3e4; }

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

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

.switcher-link {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  border: 2px solid var(--line);
  background: #fff;
  color: var(--text);
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 0.15s ease, transform 0.12s ease;
}

.switcher-link:nth-child(3n+1):hover { border-color: var(--orange); }
.switcher-link:nth-child(3n+2):hover { border-color: var(--teal); }
.switcher-link:hover { transform: translateY(-2px); }

.switcher-link.is-active {
  background: var(--orange);
  border-color: var(--text);
  color: #fff;
  box-shadow: 3px 3px 0 var(--text);
}

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

/* ── Responsive ── */
@media (max-width: 640px) {
  .hero { padding: 52px 0 36px; }
  .hero h1 { font-size: 2rem; }
  .tagline { font-size: 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; }

  .hero { padding: 0 0 12px; background: none; border-bottom: 2px solid #000; }
  .hero h1 { font-size: 20pt; background: none; color: #000; transform: none; box-shadow: none; padding: 0; }
  .tagline { color: #000; border: 1px solid #000; background: none; transform: none; }
  .location { color: #333; }

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

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

  .section { padding: 12px 0; break-inside: avoid; }
  .section h2 { background: none; color: #000; transform: none; box-shadow: none; padding: 0; margin-bottom: 8px; }

  .job { background: 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; }
  .job-todo { background: none; box-shadow: none; }

  .skills-grid { display: block; }
  .skills-grid > div { margin-bottom: 8px; }
  .skills-grid h3 { color: #000; }
  .skills-list li { display: list-item; border: none; border-radius: 0; padding: 1px 0; margin: 0 0 1px; transform: none !important; font-weight: 400; }

  .contact-list li { margin-bottom: 2px; }
  .contact-list a { color: #000; border-bottom: 1px solid #000; background: none; }

  footer { display: none; }

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