:root{
  --bg: #fff7f1;            /* zachte peach-achtergrond van de homepage */
  --surface: #ffffff;       /* cards / content */
  --text: #0f172a;          /* hoofdtekst */
  --muted: #475569;         /* secundaire tekst */
  --brand: #ff6b4a;         /* oranje CTA van de hero-knop */
  --brand-ink: #fff;        /* tekst op CTA */
  --link: #1d4ed8;          /* blauw voor links/headers */
  --ring: rgba(0,0,0,.08);  /* schaduw */
  --radius: 16px;
  --container: 1080px;
}

/* Basis */
*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, Apple Color Emoji, Segoe UI Emoji;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

/* Header (zoals navbar-lite) */
.site-header{
  position: sticky; top: 0; z-index: 10;
  background: var(--surface);
  border-bottom: 1px solid #eee;
}
.site-header .wrap{
  max-width: var(--container);
  margin: 0 auto; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.brand{font-weight: 700; color: var(--brand); font-size: 20px; text-decoration: none}

/* CTA-knop */
.cta{
  display:inline-flex; align-items:center; gap:8px;
  background: var(--brand); color: var(--brand-ink);
  border: none; border-radius: 999px;
  padding: 12px 18px; font-weight: 600; text-decoration: none;
  box-shadow: 0 6px 20px var(--ring);
}
.cta:active{transform: translateY(1px)}

/* Pagina container */
.page{
  max-width: var(--container);
  margin: 48px auto; padding: 0 20px;
}

/* Card-look voor contentvlak */
.card{
  background: var(--surface);
  border-radius: var(--radius);
  box-shadow: 0 10px 30px var(--ring);
  padding: 32px;
}

.quick-links {
  display: grid;
  gap: 12px;
  margin: 20px 0 32px;
}

.quick-links-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pill-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 12px;
  border-radius: 999px;
  background: #fff3ec;
  color: var(--text);
  text-decoration: none;
  border: 1px solid #ffe1d5;
  font-weight: 600;
}

.pill-link:hover { background: #ffe9df; }

.cta-banner {
  background: linear-gradient(135deg, #fff0e8 0%, #ffffff 100%);
  border: 1px solid #ffe1d5;
  border-radius: var(--radius);
  padding: 20px;
  margin: 32px 0;
  display: grid;
  gap: 8px;
  box-shadow: 0 12px 32px var(--ring);
}

.cta-banner h3 { margin: 0; }

.cta-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 12px;
  margin: 20px 0 32px;
}

.resource-card {
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 14px 16px;
  background: #fff;
  box-shadow: 0 8px 24px var(--ring);
}

.resource-card h3 {
  margin: 0 0 6px;
  font-size: 18px;
}

.resource-card p {
  margin: 0 0 8px;
  color: var(--muted);
}

/* Typografie */
h1{font-size: 40px; line-height:1.2; margin: 0 0 8px}
h2{font-size: 24px; margin: 28px 0 8px}
.lead{color: var(--muted)}
ul{margin: 8px 0 16px 20px}
li{margin: 8px 0}

/* Footer */
.site-footer{
  border-top:1px solid #eee; margin-top: 64px; background: var(--surface);
}
.site-footer .wrap{
  max-width: var(--container); margin:0 auto; padding: 20px;
  display:flex; align-items:center; justify-content:space-between; flex-wrap: wrap; gap:12px;
}
.site-footer a{color: var(--link); text-decoration: none}
.site-footer small{color: var(--muted)}

/* --- Accordion (FAQ) --- */
.accordion { margin-top: 8px; display: grid; gap: 12px; }

.accordion details {
  background: var(--surface);
  border: 1px solid #eee;
  border-radius: 12px;
  box-shadow: 0 8px 24px var(--ring);
  overflow: hidden;
}

.accordion summary {
  cursor: pointer;
  list-style: none;
  padding: 16px 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text);
}

.accordion summary::-webkit-details-marker { display: none; } /* Safari/Chrome marker verbergen */

.accordion .chev {
  transition: transform .2s ease;
  font-size: 18px;
  opacity: .7;
}

.accordion details[open] .chev { transform: rotate(180deg); }

.accordion .panel {
  padding: 0 20px 16px 20px;
  color: var(--muted);
  line-height: 1.7;
}

.accordion .panel p { margin: 10px 0 0; }
.accordion .panel ul { margin: 8px 0 0 18px; }

/* --- Story Page --- */
.story-article {
  margin-top: 80px;
}

.story-header {
  background: linear-gradient(135deg, var(--brand) 0%, #ff8a65 100%);
  color: white;
  padding: 60px 0 40px;
  text-align: center;
}

.story-breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  opacity: 0.9;
}

.story-breadcrumb a {
  color: white;
  text-decoration: none;
}

.story-breadcrumb a:hover {
  text-decoration: underline;
}

.story-breadcrumb span {
  margin: 0 8px;
}

.story-header h1 {
  font-size: 3rem;
  font-weight: 700;
  margin: 20px 0 16px;
  line-height: 1.2;
}

.story-subtitle {
  font-size: 1.25rem;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.story-content {
  padding: 60px 0;
  background: var(--surface);
}

.story-main {
  max-width: 700px;
  margin: 0 auto;
}

.story-section {
  margin-bottom: 48px;
}

.story-section h2 {
  font-size: 2rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 24px;
  line-height: 1.3;
}

.story-section p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  margin-bottom: 20px;
}

.story-section ul {
  margin: 24px 0;
  padding-left: 24px;
}

.story-section li {
  margin-bottom: 12px;
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--muted);
}

.story-highlight {
  background: var(--bg);
  border-left: 4px solid var(--brand);
  padding: 32px;
  border-radius: var(--radius);
  margin: 32px 0;
}

.story-highlight h3 {
  color: var(--brand);
  font-size: 1.5rem;
  margin-bottom: 16px;
  font-weight: 600;
}

.story-highlight p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--text);
  margin: 0;
}

.story-cta-section {
  text-align: center;
  background: var(--bg);
  padding: 48px;
  border-radius: var(--radius);
  margin-top: 40px;
}

.story-cta-section h2 {
  color: var(--brand);
  margin-bottom: 24px;
}

.story-cta-section p {
  font-size: 1.125rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 32px;
}

.story-cta {
  margin-top: 32px;
}


/* Mobile responsive */
@media (max-width: 768px) {
  .story-header h1 {
    font-size: 2.5rem;
  }

  .story-subtitle {
    font-size: 1.125rem;
  }

  .story-content {
    padding: 40px 0;
  }

  .story-cta-section {
    padding: 32px 20px;
  }
}

blockquote {
  font-style: italic;
  border-left: 4px solid var(--brand);
  padding-left: 20px;
  margin: 32px 0;
  color: var(--muted);
  font-size: 1.125rem;
  line-height: 1.6;
}

blockquote cite {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  color: var(--text);
  font-style: normal;
}
