/* ═══════════════════════════════════════════════════════════════
   STIJL 14 — Tropisch
   Zon, zee en palmen: zonsopgang-gradiënt, koraal + teal
   ═══════════════════════════════════════════════════════════════ */

:root {
  --coral: #ff6f3c;
  --teal: #1fb8a6;
  --text: #4a3b2c;
  --muted: #8a7a66;
  --bg: #fff7d6;
  --card: #ffffff;
}

* { 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, #fff7d6 0%, #ffe9c2 45%, #ffe0b8 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;
  position: relative;
}

/* zon */
.hero::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 50%;
  transform: translateX(-50%);
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: radial-gradient(circle, #ffe066 30%, #ffb03c 70%);
  box-shadow: 0 0 60px rgba(255, 176, 60, 0.55);
  z-index: 0;
}

.hero > * { position: relative; z-index: 1; }

.hero h1 {
  font-size: 2.7rem;
  font-weight: 900;
  letter-spacing: -0.01em;
  color: var(--coral);
  text-shadow: 0 3px 0 rgba(255, 255, 255, 0.6);
  display: inline-block;
  border-bottom: 6px wavy var(--teal);
  padding-bottom: 6px;
}

.tagline {
  margin-top: 14px;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--teal);
}

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

.cta-row {
  margin-top: 30px;
  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;
  box-shadow: 5px 5px 0 rgba(0, 0, 0, 0.12);
  transition: transform 0.12s ease, box-shadow 0.12s ease;
}

.btn:hover { transform: translateY(-2px) rotate(-1deg); box-shadow: 7px 7px 0 rgba(0, 0, 0, 0.12); }

.btn-primary {
  background: var(--coral);
  color: #fff;
  border-color: #fff;
}

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

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

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

.section h2::after {
  content: "~~~~~~~~";
  color: var(--teal);
  font-weight: 400;
  letter-spacing: 2px;
  flex: 1;
  overflow: hidden;
  white-space: nowrap;
}

.sec-num {
  background: var(--teal);
  color: #fff;
  border-radius: 999px;
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
}

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

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

/* ── Werkervaring ── */
.job {
  margin-bottom: 26px;
  background: var(--card);
  border-radius: 22px;
  padding: 24px 28px;
  box-shadow: 0 10px 30px rgba(255, 111, 60, 0.14);
  border: 3px solid #fff;
  position: relative;
}

/* strandbal-achtige corner decoratie */
.job::after {
  content: "";
  position: absolute;
  top: -1px;
  right: 24px;
  width: 44px;
  height: 44px;
  border-radius: 0 22px 0 22px;
  background: linear-gradient(135deg, var(--coral) 50%, var(--teal) 50%);
  opacity: 0.85;
}

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

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

.job h3 {
  font-size: 1.1rem;
  font-weight: 900;
  padding-right: 60px;
}

.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;
  font-size: 0.9em;
}

.job-todo {
  background: rgba(255, 255, 255, 0.55);
  border: 3px dashed var(--teal);
}

.job-todo::after { display: none; }

/* ── 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 {
  padding: 7px 0 7px 24px;
  position: relative;
  font-weight: 600;
}

.skills-list li::before {
  content: "🌴";
  position: absolute;
  left: 0;
  top: 5px;
  font-size: 0.85em;
}

/* ── Contact ── */
.contact-list {
  list-style: none;
  margin: 20px 0;
  background: var(--card);
  border: 3px solid #fff;
  border-radius: 18px;
  padding: 20px 24px;
  box-shadow: 0 8px 24px rgba(255, 111, 60, 0.12);
}

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

.contact-list a {
  color: var(--coral);
  font-weight: 800;
  text-decoration: none;
}
.contact-list a:hover { text-decoration: underline wavy var(--teal); }

/* ── Footer + stijl-schakelaar ── */
footer {
  border-top: 3px dashed rgba(255, 111, 60, 0.4);
  padding: 30px 0 26px;
  color: var(--muted);
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
}

.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: 7px 15px;
  border-radius: 999px;
  border: 2px solid #fff;
  background: rgba(255, 255, 255, 0.7);
  color: var(--text);
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.08);
  transition: transform 0.12s ease;
}

.switcher-link:hover { transform: translateY(-2px) rotate(-1deg); }

.switcher-link.is-active {
  background: var(--coral);
  border-color: #fff;
  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; }

  .hero { padding: 0 0 12px; border-bottom: 2px solid #000; }
  .hero::before { display: none; }
  .hero h1 { font-size: 20pt; color: #000; text-shadow: none; border-bottom: 3px solid #000; }
  .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; width: auto; height: auto; }

  .job { background: none; border: 1px solid #ccc; border-radius: 0; box-shadow: none; padding: 12px; margin-bottom: 14px; }
  .job::after { display: none; }
  .job h3 { padding-right: 0; }
  .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-list li { padding: 1px 0 1px 16px; }
  .skills-list li::before { content: "•"; color: #000; }

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

  footer { display: none; }

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