/* Nova Perspektiva – stylesheet
   Palette is deliberately limited to three working colours; the logo carries the rest. */

@font-face { font-family: "DM Serif Display"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/dm-serif-display-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 400; font-display: swap;
  src: url("../fonts/source-sans-3-latin-400-normal.woff2") format("woff2"); }
@font-face { font-family: "Source Sans 3"; font-style: normal; font-weight: 600; font-display: swap;
  src: url("../fonts/source-sans-3-latin-600-normal.woff2") format("woff2"); }

:root {
  --ink: #26303d;
  --ink-soft: #55606d;
  --paper: #fbf8f4;
  --paper-deep: #f2ece4;
  --blue: #1f5d8f;
  --blue-deep: #17456b;
  --orange: #f7941d;
  --orange-deep: #d55827;
  --line: #e4ddd3;
  --serif: "DM Serif Display", Georgia, "Times New Roman", serif;
  --sans: "Source Sans 3", "Segoe UI", system-ui, -apple-system, Helvetica, Arial, sans-serif;
  --wrap: 1120px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 96px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } * { transition: none !important; } }
body { font-family: var(--sans); font-size: 1.0625rem; color: var(--ink); background: var(--paper); line-height: 1.6; }
img { max-width: 100%; display: block; }
a { color: var(--blue); }
:is(a, button):focus-visible { outline: 3px solid var(--orange); outline-offset: 3px; }
.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 24px; }

h1, h2, h3 { font-family: var(--serif); font-weight: 400; line-height: 1.1; color: var(--blue-deep); letter-spacing: -0.005em; }
h1 { font-size: clamp(2.5rem, 5.2vw, 4.25rem); margin-bottom: 22px; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.5rem); margin-bottom: 14px; }
h3 { font-size: 1.35rem; margin-bottom: 8px; }
.lead { font-size: 1.2rem; color: var(--ink-soft); max-width: 34em; }

/* Buttons */
.button { display: inline-flex; align-items: center; gap: 10px; background: var(--orange); color: #fff; padding: 13px 24px; border-radius: 8px; text-decoration: none; font-weight: 600; transition: background .15s; }
.button:hover { background: var(--orange-deep); }
.button img { width: 22px; height: 22px; }
.button.ghost { background: transparent; color: var(--blue-deep); border: 1.5px solid var(--line); }
.button.ghost:hover { border-color: var(--blue); background: #fff; }

/* Header */
header { background: #fff; border-bottom: 1px solid var(--line); position: sticky; top: 0; z-index: 10; }
header .wrap { display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-top: 10px; padding-bottom: 10px; }
.brand img { height: 84px; width: auto; }
.menu-btn { display: none; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; padding: 10px; }
.menu-btn span { display: block; height: 2px; background: var(--blue-deep); margin: 5px 0; transition: transform .2s, opacity .2s; }
.menu-btn[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-btn[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
nav { display: flex; gap: 6px 26px; }
nav a { text-decoration: none; color: var(--ink-soft); font-weight: 600; font-size: 0.95rem; padding: 6px 0; border-bottom: 2px solid transparent; }
nav a:hover { color: var(--blue-deep); border-color: var(--orange); }

/* Hero: text on clean paper, photo framed at the right */
.hero .wrap { display: grid; grid-template-columns: 1.05fr 0.95fr; align-items: center; gap: 56px; padding-top: 88px; padding-bottom: 88px; }
.hero .lead { margin-bottom: 30px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero-photo { position: relative; margin-right: 18px; }
.hero-photo img { width: 100%; height: auto; border-radius: 14px; }
.hero-photo::before { content: ""; position: absolute; inset: 18px -18px -18px 18px; border: 2px solid var(--orange); border-radius: 14px; z-index: -1; }

/* Sections */
section .wrap { padding-top: 88px; padding-bottom: 88px; }
.section-head { max-width: 40em; margin-bottom: 44px; }
.section-head p { color: var(--ink-soft); font-size: 1.1rem; }
.alt { background: #fff; }
.tint { background: var(--paper-deep); }

/* Begeleiding: two-column list, no boxes */
.topics { display: grid; grid-template-columns: 1fr 1fr; gap: 28px 56px; max-width: 64em; align-items: start; }
.topic { padding-left: 22px; border-left: 3px solid var(--orange); }
.topic p { color: var(--ink-soft); }
.topic ul { list-style: none; color: var(--ink-soft); }
.topic li { padding: 5px 0 5px 20px; position: relative; }
.topic li::before { content: ""; position: absolute; left: 0; top: 16px; width: 8px; height: 8px; border-radius: 50%; background: var(--orange); }

/* Training: three cards */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.card { background: #fff; padding: 32px 28px; border-radius: 12px; border: 1px solid var(--line); }
.card p { color: var(--ink-soft); }

/* Werkwijze: vertical timeline */
.timeline { list-style: none; max-width: 44em; counter-reset: step; }
.timeline li { position: relative; padding: 0 0 34px 68px; counter-increment: step; }
.timeline li::before { content: counter(step); position: absolute; left: 0; top: -4px; width: 44px; height: 44px; border-radius: 50%; background: var(--blue-deep); color: #fff; font-family: var(--serif); font-size: 1.35rem; display: flex; align-items: center; justify-content: center; }
.timeline li::after { content: ""; position: absolute; left: 21px; top: 44px; bottom: 0; width: 2px; background: var(--line); }
.timeline li:last-child::after { display: none; }
.timeline p { color: var(--ink-soft); }

/* Over mij + credentials */
.about .wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.about p { color: var(--ink-soft); margin-bottom: 16px; max-width: 34em; }
.credentials { display: grid; gap: 22px; }
.credential { display: flex; align-items: center; gap: 18px; background: #fff; border: 1px solid var(--line); border-radius: 12px; padding: 18px 22px; }
.credential img { width: 110px; height: auto; flex-shrink: 0; }
.credential p { color: var(--ink-soft); margin: 0; }

/* Contact */
.contact { background: var(--blue-deep); color: #fff; text-align: center; }
.contact h2 { color: #fff; }
.contact p { max-width: 34em; margin: 0 auto 30px; color: #d6e2ee; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.contact .button.ghost { color: #fff; border-color: rgba(255,255,255,.45); }
.contact .button.ghost:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.contact-details { margin-top: 30px; color: #d6e2ee; font-size: 0.95rem; }
.contact-details a { color: #fff; display: inline-block; padding: 6px 4px; }

footer { background: #10334f; color: #a9bfd3; font-size: 0.9rem; }
footer .wrap { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px 24px; padding-top: 22px; padding-bottom: 22px; }
footer a { color: inherit; }

/* Floating WhatsApp */
.wa { position: fixed; right: 20px; bottom: 20px; z-index: 20; display: inline-flex; align-items: center; gap: 10px; background: #25d366; color: #fff; text-decoration: none; font-weight: 600; font-size: 0.95rem; padding: 12px 22px 12px 14px; border-radius: 999px; box-shadow: 0 6px 20px rgba(0,0,0,.2); }
.wa:hover { background: #1ebe5a; }
.wa img { width: 28px; height: 28px; background: #fff; border-radius: 50%; padding: 3px; }

/* Legal page */
.legal .wrap { max-width: 46em; padding-top: 64px; padding-bottom: 88px; }
.legal h1 { font-size: 2.4rem; }
.legal h2 { font-size: 1.5rem; margin: 36px 0 10px; }
.legal p, .legal li { color: var(--ink-soft); margin-bottom: 12px; }
.legal ul { padding-left: 22px; }
.legal .todo { background: #fff3e0; border-left: 3px solid var(--orange); padding: 10px 14px; font-size: 0.95rem; }

@media (max-width: 900px) {
  .hero .wrap { grid-template-columns: 1fr; gap: 40px; padding-top: 56px; padding-bottom: 64px; }
  .hero-photo { max-width: 520px; }
  .cards { grid-template-columns: 1fr; }
  .about .wrap { grid-template-columns: 1fr; gap: 40px; }
}
@media (max-width: 600px) {
  html { scroll-padding-top: 80px; }
  body { font-size: 1rem; }
  section .wrap { padding-top: 60px; padding-bottom: 60px; }
  header .wrap { flex-wrap: wrap; padding-top: 8px; padding-bottom: 8px; }
  .brand img { height: 56px; }
  .menu-btn { display: block; }
  nav { display: none; flex-basis: 100%; flex-direction: column; gap: 0; padding: 6px 0 10px; border-top: 1px solid var(--line); margin-top: 8px; }
  nav.open { display: flex; }
  nav a { font-size: 1.05rem; padding: 12px 4px; border-bottom: 0; }
  .topics { grid-template-columns: 1fr; }
  .timeline li { padding-left: 58px; }
  .timeline li::before { width: 38px; height: 38px; font-size: 1.15rem; }
  .timeline li::after { left: 18px; }
  .wa span { display: none; }
  .wa { padding: 12px; }
  footer .wrap { flex-direction: column; }
}
