/* ═══════════════════════════════════════════════════════════════
   STIJL 21 — Helpdesk
   Op maat van helpdesk-sollicitaties: snelle feiten bovenaan,
   competenties als tags, warm-professioneel met teal accent.
   Recruiters zien meteen: locatie, beschikbaarheid, talen,
   en de juiste skills.
   ═══════════════════════════════════════════════════════════════ */

:root {
  --accent: #0f766e;          /* warm teal */
  --accent-soft: #e6f4f2;
  --text: #22302e;
  --muted: #64706d;
  --bg: #fbfdfd;
  --card: #ffffff;
  --line: #e2e8e5;
  --radius: 12px;
}

* { 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: 56px 0 36px;
  text-align: left;
  border-bottom: 1px solid var(--line);
}

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

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

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

/* Snelle feiten: wat een helpdesk-recruiter eerst wil zien */
.hero-facts {
  list-style: none;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.hero-facts li {
  background: var(--accent-soft);
  color: var(--accent);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: 0.88rem;
  font-weight: 700;
}

.cta-row {
  margin-top: 22px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  padding: 12px 26px;
  border-radius: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  text-decoration: none;
  border: 1.5px solid transparent;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.15s ease, box-shadow 0.15s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 4px 14px rgba(15, 118, 110, 0.25);
}
.btn-primary:hover { background: #0b5f59; }

.btn-secondary {
  background: #fff;
  color: var(--accent);
  border-color: var(--accent);
}
.btn-secondary:hover { background: var(--accent-soft); }

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

.section h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 16px;
  padding-left: 14px;
  border-left: 5px solid var(--accent);
  border-radius: 2px;
}

.sec-num { display: none; }

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

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

/* ── Werkervaring ── */
.job {
  margin-bottom: 22px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
}

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

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

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

.job-meta {
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 700;
  margin-top: 3px;
}

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

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

.job li::before {
  content: "→";
  position: absolute;
  left: 0;
  top: 1px;
  color: var(--accent);
  font-weight: 700;
}

.job-todo {
  background: transparent;
  border-style: dashed;
}

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

.skills-grid h3 {
  font-size: 0.92rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: var(--text);
}

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

/* Technische skills als tags — scannable voor recruiters */
.skills-grid:first-child .skills-list li {
  display: inline-block;
  background: var(--accent-soft);
  border: 1px solid rgba(15, 118, 110, 0.2);
  color: var(--accent);
  border-radius: 999px;
  padding: 6px 14px;
  margin: 0 6px 8px 0;
  font-size: 0.88rem;
  font-weight: 700;
}

.skills-grid:first-child .skills-list li::before { display: none; }

/* Soft skills als checklist */
.skills-grid:last-child .skills-list { list-style: none; }

.skills-grid:last-child .skills-list li {
  padding: 5px 0 5px 22px;
  position: relative;
}

.skills-grid:last-child .skills-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 5px;
  color: var(--accent);
  font-weight: 800;
}

/* ── Contact ── */
.contact-list {
  list-style: none;
  margin: 16px 0;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
}

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

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

/* ── Footer + stijl-schakelaar ── */
footer {
  padding: 26px 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: 12px;
}

.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 var(--line);
  background: #fff;
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.switcher-link:hover {
  border-color: var(--accent);
  background: var(--accent-soft);
}

.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: 40px 0 26px; }
  .hero h1 { font-size: 2rem; }
  .section { padding: 28px 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: 10.5pt; color: #000; background: #fff; }

  .hero { padding: 0 0 10px; border-bottom: 2px solid #000; }
  .hero h1 { font-size: 20pt; color: #000; }
  .tagline { font-size: 11pt; color: #000; }
  .location { color: #333; }
  .hero-facts { margin-top: 8px; }
  .hero-facts li { background: none; color: #000; border: 1px solid #ccc; padding: 2px 10px; font-weight: 600; }

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

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

  .section { padding: 10px 0; border-bottom: 1px solid #ccc; break-inside: avoid; }
  .section h2 { font-size: 11.5pt; color: #000; border-left: 3px solid #000; padding-left: 8px; margin-bottom: 8px; }

  .job { background: none; border: 1px solid #ccc; border-radius: 0; padding: 10px 12px; margin-bottom: 12px; }
  .job-meta { color: #333; }
  .job li::before { content: "•"; color: #000; }
  .job-todo { background: none; }

  .skills-grid { display: block; }
  .skills-grid > div { margin-bottom: 8px; }
  .skills-grid h3 { color: #000; }

  .skills-grid:first-child .skills-list li {
    display: list-item;
    background: none;
    border: none;
    color: #000;
    border-radius: 0;
    padding: 1px 0;
    margin: 0;
    font-size: 10.5pt;
    font-weight: 400;
  }
  .skills-grid:first-child .skills-list li::before {
    display: block;
    content: "— ";
    position: static;
    float: left;
    margin-right: 6px;
  }

  .skills-grid:last-child .skills-list li { padding: 1px 0 1px 14px; }
  .skills-grid:last-child .skills-list li::before { content: "•"; color: #000; top: 1px; }

  .contact-list { background: none; border: 1px solid #ccc; border-radius: 0; padding: 10px 12px; }
  .contact-list li { margin-bottom: 2px; }
  .contact-list a { color: #000; text-decoration: none; }

  footer { display: none; }

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