/* ==========================================================================
   busreizeneuropa.eu – hoofdstylesheet
   Opbouw: 1. tokens  2. basis  3. layout  4. componenten  5. secties  6. responsive
   Geen framework: één klein CSS-bestand = snelle laadtijd.
   ========================================================================== */

/* 1. Design tokens ------------------------------------------------------- */
:root {
    --navy:        #0f2a3d;
    --navy-2:      #16384f;
    --teal:        #1f6f78;
    --accent:      #f2994a;   /* zonsondergang-oranje: CTA's */
    --accent-dark: #d9772a;
    --sand:        #f7f3ec;   /* warme achtergrondtint */
    --ink:         #16222c;
    --muted:       #5b6b77;
    --line:        #e6e1d8;
    --white:       #ffffff;

    --font-body:    'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    --font-display: 'Fraunces', Georgia, serif;

    --radius:    16px;
    --radius-sm: 10px;
    --shadow:    0 1px 2px rgba(15,42,61,.06), 0 8px 24px rgba(15,42,61,.08);
    --shadow-lg: 0 2px 4px rgba(15,42,61,.06), 0 22px 48px rgba(15,42,61,.18);
    --ease:      cubic-bezier(.2,.7,.2,1);
    --container: 1180px;
}

/* 2. Basis -------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition: none !important; animation: none !important; }
}
body {
    margin: 0;
    font: 400 1.0625rem/1.65 var(--font-body);
    color: var(--ink);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--teal); text-decoration-thickness: 1px; text-underline-offset: 3px; }
h1, h2, h3 { font-family: var(--font-display); font-weight: 700; line-height: 1.15; color: var(--navy); margin: 0 0 .5em; letter-spacing: -.01em; }
h1 { font-size: clamp(2.25rem, 5.5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3.2vw, 2.4rem); }
h3 { font-size: 1.3rem; }
p  { margin: 0 0 1em; }
:focus-visible { outline: 3px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.skip-link { position: absolute; left: 1rem; top: -3rem; background: var(--navy); color: #fff; padding: .6rem 1rem; border-radius: 8px; z-index: 100; }
.skip-link:focus { top: 1rem; }
.hp { position: absolute; left: -9999px; }   /* honeypot */

/* 3. Layout ------------------------------------------------------------- */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.narrow    { max-width: 760px; }
.center    { text-align: center; }
.section      { padding: clamp(56px, 8vw, 104px) 0; }
.section-tint { background: var(--sand); }
.section-head { max-width: 680px; margin-bottom: 40px; }
.section-head p { color: var(--muted); font-size: 1.125rem; }
/* Sectiekop over de volle breedte: kop op één regel, toelichting eronder */
.section .section-head:has(> div) { max-width: none; }
.section .section-head:has(> div) h2 { margin: 0 0 .45em; text-wrap: balance; }
.section .section-head:has(> div) > div { display: flex; justify-content: space-between; align-items: baseline; gap: 16px 40px; }
.section .section-head:has(> div) p { margin: 0; font-size: 1.0625rem; }
.section .section-head:has(> div) .link-arrow { flex-shrink: 0; }
@media (min-width: 1000px) {
    .section .section-head:has(> div) h2 { white-space: nowrap; }   /* desktop: kop nooit afbreken */
}
.section-head-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; max-width: none; }
.section-title { margin-bottom: 32px; }

/* Het 3-koloms raster: 3 → 2 → 1 kolom (zie responsive) */
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px; }

/* 4. Componenten -------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: .5em;
    padding: .8em 1.4em; border-radius: 999px; border: 2px solid transparent;
    font: 600 1rem/1 var(--font-body); text-decoration: none; cursor: pointer;
    transition: transform .2s var(--ease), background-color .2s, box-shadow .2s, color .2s;
}
.btn:hover { transform: translateY(-2px); }
.btn-accent { background: var(--accent); color: var(--navy); box-shadow: 0 6px 18px rgba(242,153,74,.35); }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-ghost  { border-color: rgba(255,255,255,.7); color: #fff; }
.btn-ghost:hover { background: #fff; color: var(--navy); }
.btn-lg { padding: 1em 1.7em; font-size: 1.0625rem; }
.btn-sm { padding: .6em 1.1em; font-size: .9375rem; }

.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .8125rem; font-weight: 600; color: var(--accent); margin-bottom: 1rem; }
.lead    { font-size: clamp(1.0625rem, 1.6vw, 1.25rem); color: var(--muted); }
.badge {
    position: absolute; top: 14px; left: 14px; z-index: 1;
    /* Donker label met witte tekst: altijd goed zichtbaar, ook op witte logo's */
    background: var(--navy); color: #fff;
    font-size: .75rem; font-weight: 600; letter-spacing: .02em;
    padding: .4em .9em; border-radius: 999px;
    border: 1px solid rgba(255,255,255,.25);
    box-shadow: 0 2px 6px rgba(15,42,61,.25), 0 6px 16px rgba(15,42,61,.18);
}
.badge-accent { background: var(--accent); color: var(--navy); border-color: rgba(255,255,255,.4); }
.tag { display: inline-block; background: var(--sand); color: var(--teal); font-weight: 600; font-size: .75rem; padding: .25em .7em; border-radius: 999px; margin-right: .4em; }
.meta { font-size: .875rem; color: var(--muted); margin-bottom: .6rem; }
.link-arrow { font-weight: 600; text-decoration: none; white-space: nowrap; }
.link-arrow span, .aff-cta span, .read-more span { display: inline-block; transition: transform .25s var(--ease); }
.link-arrow:hover span { transform: translateX(4px); }
.empty { color: var(--muted); font-style: italic; }
.notice { background: #fff4e5; border: 1px solid #f7c58c; color: #7a4a10; padding: .6rem 1rem; border-radius: var(--radius-sm); }

/* Header / navigatie */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255,255,255,.92); backdrop-filter: saturate(1.4) blur(10px);
    border-bottom: 1px solid transparent; transition: border-color .2s, box-shadow .2s;
}
.site-header.is-scrolled { border-color: var(--line); box-shadow: 0 4px 20px rgba(15,42,61,.06); }
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--navy); font: 600 1.25rem/1 var(--font-display); }
.logo strong { color: var(--accent-dark); font-weight: 700; }
.logo-mark { width: 34px; height: 34px; color: var(--navy); }
.logo-light { color: #fff; }
.site-nav { display: flex; align-items: center; gap: 28px; }
.site-nav a:not(.btn) { color: var(--ink); text-decoration: none; font-weight: 500; font-size: .9875rem; position: relative; }
.site-nav a:not(.btn)::after { content: ''; position: absolute; left: 0; right: 0; bottom: -6px; height: 2px; background: var(--accent); transform: scaleX(0); transition: transform .25s var(--ease); }
.site-nav a:not(.btn):hover::after, .site-nav a[aria-current]::after { transform: scaleX(1); }
.nav-toggle { display: none; }

/* 5. Secties ------------------------------------------------------------ */

/* Hero */
.hero { position: relative; color: #fff; padding: clamp(80px, 13vw, 170px) 0 0; overflow: hidden; background: var(--navy); }
.hero-bg { position: absolute; inset: 0; overflow: hidden; }
.hero-svg { position: absolute; right: 0; bottom: 0; width: 100%; height: 100%; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(15,42,61,.88) 0%, rgba(15,42,61,.55) 45%, rgba(15,42,61,.05) 80%); }
/* Tip: liever een eigen foto? Vervang in index.php de hero-art door <img src="/assets/img/hero.webp" class="hero-svg" alt=""> en voeg object-fit: cover toe. */
.hero-content { position: relative; max-width: var(--container); }
.hero-content > * { max-width: 640px; }
.hero h1 { color: #fff; }
.hero h1 em { font-style: italic; color: var(--accent); }
.hero .lead { color: rgba(255,255,255,.88); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 2rem; }

/* ---------- Hero-animatie: rustig zweven, zelfde stijl ---------- */
.h-cloud  { animation: drift 26s ease-in-out infinite alternate; }
.h-cloud-2 { animation-duration: 34s; animation-delay: -8s; }
.h-cloud-3 { animation-duration: 22s; animation-delay: -14s; }
.h-sun    { transform-box: fill-box; transform-origin: center; animation: glow 7s ease-in-out infinite; }
.h-birds  { animation: birds 16s ease-in-out infinite; }
.h-road   { animation: road 1.1s linear infinite; }
.h-bus    { animation: bob 2.4s ease-in-out infinite; }
@keyframes drift { from { transform: translateX(-70px); } to { transform: translateX(70px); } }
@keyframes glow  { 0%, 100% { transform: scale(1); opacity: .9; } 50% { transform: scale(1.07); opacity: 1; } }
@keyframes birds { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-40px, -14px); } }
@keyframes road  { to { stroke-dashoffset: -48; } }
@keyframes bob   { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-2.5px); } }

/* Zwevende bestemmingslabels */
.hero-floats { position: absolute; inset: 0; left: 0; right: 0; pointer-events: none; }
.float-pill {
    position: absolute; display: inline-flex; align-items: center; gap: 8px;
    padding: 9px 16px 9px 12px; border-radius: 999px;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.28);
    backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    color: #fff; font-weight: 600; font-size: .9375rem; white-space: nowrap;
    box-shadow: 0 10px 30px rgba(10,30,44,.25);
}
.float-pill i { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 4px rgba(242,153,74,.3); }
.float-pill small { font-weight: 400; opacity: .75; font-size: .8125rem; }
.fp-1 { top: 17%; right: 17%; }
.fp-2 { top: 33%; right: 2%; }
.fp-3 { top: 54%; right: 21%; }
@keyframes float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* Tekst schuift rustig in bij het laden */
.hero-content > * { animation: rise .8s var(--ease) both; }
.hero-content > :nth-child(2) { animation-delay: .08s; }
.hero-content > :nth-child(3) { animation-delay: .16s; }
.hero-content > :nth-child(4) { animation-delay: .24s; }
.float-pill { animation-name: float, fadein; animation-duration: 6s, 1s; animation-timing-function: ease-in-out, ease; animation-iteration-count: infinite, 1; }
.fp-2 { animation-duration: 7s, 1s; animation-delay: -2s, .3s; }
.fp-3 { animation-duration: 6.5s, 1s; animation-delay: -4s, .5s; }
@keyframes rise   { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }
@keyframes fadein { from { opacity: 0; } to { opacity: 1; } }

/* Kerncijfers */
.stats {
    position: relative; margin: clamp(56px, 9vw, 110px) 0 0; padding: 22px 8px;
    display: grid; grid-template-columns: repeat(3, 1fr);
    background: #fff; color: var(--ink); border-radius: var(--radius) var(--radius) 0 0;
    box-shadow: 0 -10px 30px rgba(0,0,0,.12);
}
.stats div { text-align: center; padding: 0 12px; }
.stats div + div { border-left: 1px solid var(--line); }
.stats dt { font-size: .8125rem; text-transform: uppercase; letter-spacing: .1em; color: var(--muted); }
.stats dd { margin: 0; font: 700 2rem/1.2 var(--font-display); color: var(--navy); }

/* Affiliate-kaarten: subtiele hover die uitnodigt tot klikken */
.aff-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s; }
.aff-card:hover, .aff-card:focus-within { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--accent); }
.aff-link { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.aff-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; background: var(--sand); }
.aff-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.aff-card:hover .aff-media img { transform: scale(1.06); }
.aff-placeholder { height: 100%; display: grid; place-items: center; background: linear-gradient(135deg, var(--navy) 0%, var(--teal) 100%); transition: transform .6s var(--ease); }
.aff-placeholder span { font: 700 4rem/1 var(--font-display); color: rgba(255,255,255,.9); }
.aff-card:hover .aff-placeholder { transform: scale(1.06); }
.aff-body { padding: 22px 24px 24px; display: flex; flex-direction: column; flex: 1; }
.aff-body p { color: var(--muted); font-size: .975rem; flex: 1; }
.aff-cta { font-weight: 600; color: var(--accent-dark); }
.aff-card:hover .aff-cta span { transform: translateX(5px); }

/* Affiliate-afbeelding verkleinen (Admin → Affiliates → schuifje). Vaste klassen i.p.v. inline style (CSP). */
.aff-media.is-fit { display: flex; align-items: center; justify-content: center; }
.aff-media.is-fit img { object-fit: contain; }
.aff-media.s30 img { width: 30%; height: 30%; }
.aff-media.s35 img { width: 35%; height: 35%; }
.aff-media.s40 img { width: 40%; height: 40%; }
.aff-media.s45 img { width: 45%; height: 45%; }
.aff-media.s50 img { width: 50%; height: 50%; }
.aff-media.s55 img { width: 55%; height: 55%; }
.aff-media.s60 img { width: 60%; height: 60%; }
.aff-media.s65 img { width: 65%; height: 65%; }
.aff-media.s70 img { width: 70%; height: 70%; }
.aff-media.s75 img { width: 75%; height: 75%; }
.aff-media.s80 img { width: 80%; height: 80%; }
.aff-media.s85 img { width: 85%; height: 85%; }
.aff-media.s90 img { width: 90%; height: 90%; }
.aff-media.s95 img { width: 95%; height: 95%; }
.aff-media.bg-wit   { background: #ffffff; }
.aff-media.bg-zand  { background: var(--sand); }
.aff-media.bg-grijs { background: #eef1f4; }
.aff-media.bg-navy  { background: var(--navy); }

/* Thema-kaarten */
.theme-card { background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); display: flex; flex-direction: column; }
.theme-media { position: relative; aspect-ratio: 3 / 2; overflow: hidden; }
.theme-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.theme-card:hover .theme-media img { transform: scale(1.05); }
.theme-body { padding: 22px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.theme-body p { color: var(--muted); flex: 1; }

/* Blogkaarten */
.post-card a { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none; }
.post-media { aspect-ratio: 16 / 10; border-radius: var(--radius); overflow: hidden; background: var(--sand); margin-bottom: 18px; }
.post-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.post-placeholder { height: 100%; background: linear-gradient(135deg, #f7e0c7, #cfe3e5); }
.post-card:hover .post-media img { transform: scale(1.05); }
.post-card h3 { transition: color .2s; }
.post-card:hover h3 { color: var(--teal); }
.post-body p:not(.meta) { color: var(--muted); }
.read-more { font-weight: 600; color: var(--teal); margin-top: auto; }
.post-card:hover .read-more span { transform: translateX(4px); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 48px; }
.pagination a { min-width: 44px; height: 44px; display: grid; place-items: center; border-radius: 999px; border: 1px solid var(--line); text-decoration: none; color: var(--ink); font-weight: 600; }
.pagination a[aria-current] { background: var(--navy); color: #fff; border-color: var(--navy); }

/* Subpagina-kop */
.page-hero { background: var(--sand); padding: clamp(48px, 7vw, 88px) 0 clamp(36px, 5vw, 56px); }

/* Artikel */
.article-head { background: var(--sand); padding: clamp(40px, 6vw, 72px) 0 clamp(80px, 10vw, 120px); }
.breadcrumbs { font-size: .875rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--muted); }
.article-cover { margin: clamp(-100px, -8vw, -60px) auto 0; }
.article-cover img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 16 / 9; object-fit: cover; }
.prose { padding-top: 48px; font-size: 1.125rem; }
.prose h2 { font-size: 1.75rem; margin-top: 2em; }
.prose h3 { margin-top: 1.6em; }
.prose ul, .prose ol { padding-left: 1.3em; }
.prose li { margin-bottom: .4em; }
.prose li::marker { color: var(--accent); }
.prose figure { margin: 2em 0; }
.prose figure img { border-radius: var(--radius-sm); width: 100%; }
/* Afbeeldingsformaten uit de editor: klein / middel / groot, links / midden / rechts */
.prose::after { content: ''; display: table; clear: both; }
.prose figure.size-s { width: 40%; }
.prose figure.size-m { width: 65%; }
.prose figure.size-s, .prose figure.size-m { margin-left: auto; margin-right: auto; }
.prose figure.align-left  { float: left;  margin: .35em 1.6em 1em 0; }
.prose figure.align-right { float: right; margin: .35em 0 1em 1.6em; }
.prose figure.size-l { width: 100%; float: none; }
.prose h2, .prose h3, .prose blockquote { clear: both; }
@media (max-width: 620px) {
    .prose figure.size-s { width: 60%; }
    .prose figure.size-m, .prose figure.align-left, .prose figure.align-right { float: none; width: 100%; margin: 1.5em 0; }
    .prose figure.size-s.align-left, .prose figure.size-s.align-right { width: 60%; margin: 1.5em auto; }
}
.prose figcaption { font-size: .875rem; color: var(--muted); margin-top: .6em; text-align: center; }
.prose blockquote { margin: 1.6em 0; padding: .4em 0 .4em 1.2em; border-left: 4px solid var(--accent); font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); }
.article-cta { margin-top: 48px; margin-bottom: 72px; padding: 28px; background: var(--navy); color: #fff; border-radius: var(--radius); display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.article-cta p { margin: 0; }

/* Contactformulier */
.contact-form { display: grid; gap: 18px; margin-top: 8px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--navy); }
.field .optional { font-weight: 400; color: var(--muted); }
.field input, .field textarea {
    width: 100%; padding: .85em 1em; font: inherit; color: var(--ink);
    border: 1.5px solid var(--line); border-radius: var(--radius-sm); background: #fff;
    transition: border-color .2s, box-shadow .2s;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(31,111,120,.15); }
.field textarea { resize: vertical; min-height: 160px; }
.field.has-error input, .field.has-error textarea { border-color: #c0392b; }
.field small { display: block; color: #c0392b; margin-top: 4px; font-size: .875rem; }
.form-note { background: var(--sand); padding: 14px 18px; border-radius: var(--radius-sm); color: var(--muted); font-size: .9375rem; }
.form-error { background: #fdecea; color: #b3261e; padding: 12px 16px; border-radius: var(--radius-sm); }
.form-privacy { font-size: .875rem; color: var(--muted); margin: 0; }
.contact-form .btn { justify-self: start; }
.form-success { text-align: center; padding: 40px 24px; background: var(--sand); border-radius: var(--radius); }

/* Nieuwsbrief */
.newsletter { background: linear-gradient(120deg, var(--teal), var(--navy)); color: #fff; padding: 56px 0; }
.newsletter-inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.newsletter h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); }
.newsletter p { margin: 0; color: rgba(255,255,255,.85); }
.newsletter-form { display: flex; gap: 10px; flex: 0 1 460px; }
.newsletter-form input[type=email] { flex: 1; min-width: 0; padding: .9em 1.2em; border-radius: 999px; border: 0; font: inherit; }

/* Advertentieplek (Admin → Banners) – vervangt het nieuwsbriefblok */
.promo { padding: 40px 0 48px; background: var(--sand); border-top: 1px solid var(--line); }
.promo-label { margin: 0 0 10px; font-size: .6875rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); text-align: center; }
.promo-image { display: block; max-width: 970px; margin: 0 auto; border-radius: var(--radius-sm); overflow: hidden;
    box-shadow: var(--shadow); transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.promo-image:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.promo-image img { width: 100%; height: auto; }
/* Breedte van de banner-afbeelding (Admin → Banners → schuifje); 100% = 970px */
.promo-image.w30 { max-width: 291px; }
.promo-image.w35 { max-width: 340px; }
.promo-image.w40 { max-width: 388px; }
.promo-image.w45 { max-width: 436px; }
.promo-image.w50 { max-width: 485px; }
.promo-image.w55 { max-width: 534px; }
.promo-image.w60 { max-width: 582px; }
.promo-image.w65 { max-width: 630px; }
.promo-image.w70 { max-width: 679px; }
.promo-image.w75 { max-width: 728px; }
.promo-image.w80 { max-width: 776px; }
.promo-image.w85 { max-width: 824px; }
.promo-image.w90 { max-width: 873px; }
.promo-image.w95 { max-width: 922px; }

.promo-frame { display: block; width: 100%; max-width: 970px; margin: 0 auto; border: 0; background: transparent; }
.promo-tekst { background: linear-gradient(120deg, var(--teal), var(--navy)); border-top: 0; padding: 56px 0; }
.promo-tekst .promo-label { color: rgba(255,255,255,.55); text-align: left; }
.promo-text { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.promo-text h2 { color: #fff; font-size: clamp(1.5rem, 2.6vw, 2rem); margin-bottom: .3em; }
.promo-text p { margin: 0; color: rgba(255,255,255,.85); }
.promo-text .btn { flex-shrink: 0; }
@media (max-width: 760px) {
    .promo-text { flex-direction: column; align-items: flex-start; }
    .promo-text .btn { width: 100%; }
}

/* Footer */
.site-footer { background: #0a1e2c; color: rgba(255,255,255,.72); padding: 64px 0 28px; font-size: .9375rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
.site-footer h3 { color: #fff; font: 600 .8125rem/1 var(--font-body); text-transform: uppercase; letter-spacing: .12em; margin-bottom: 1rem; }
.site-footer nav a { display: block; color: rgba(255,255,255,.72); text-decoration: none; margin-bottom: .5rem; }
.site-footer nav a:hover { color: var(--accent); }
.footer-grid p { max-width: 360px; margin-top: 1rem; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 48px; padding-top: 24px; font-size: .8125rem; }
.disclaimer { max-width: 900px; }

/* ==========================================================================
   Bestemmingen (landen)
   ========================================================================== */
.dest-card a { display: flex; flex-direction: column; height: 100%; color: inherit; text-decoration: none;
    background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow);
    transition: transform .3s var(--ease), box-shadow .3s var(--ease); }
.dest-card a:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.dest-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy); }
.dest-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.dest-card a:hover .dest-media img { transform: scale(1.06); }
.dest-placeholder { height: 100%; background: linear-gradient(160deg, var(--teal) 0%, var(--navy) 70%); }
.dest-media::after { content: ''; position: absolute; inset: 40% 0 0; background: linear-gradient(180deg, transparent, rgba(10,30,44,.75)); }
.dest-media h3 { position: absolute; left: 22px; bottom: 16px; z-index: 1; margin: 0; color: #fff; font-size: 1.75rem; text-shadow: 0 2px 12px rgba(0,0,0,.3); }
.dest-body { padding: 20px 22px 24px; display: flex; flex-direction: column; flex: 1; gap: 12px; }
.dest-body p { margin: 0; color: var(--muted); flex: 1; }
.dest-card a:hover .link-arrow span { transform: translateX(4px); }
.dest-count { font-size: .8125rem; color: var(--muted); }

.dest-hero { position: relative; background: var(--navy); color: #fff; padding: clamp(56px, 9vw, 120px) 0 clamp(48px, 7vw, 96px); overflow: hidden; }
.dest-hero-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.dest-hero::before { content: ''; position: absolute; inset: 0; z-index: 1;
    background: linear-gradient(90deg, rgba(15,42,61,.9) 0%, rgba(15,42,61,.6) 55%, rgba(15,42,61,.25) 100%); }
.dest-hero:not(.has-cover)::before { background: radial-gradient(circle at 85% 30%, rgba(242,153,74,.35), transparent 45%), linear-gradient(160deg, var(--teal), var(--navy) 70%); }
.dest-hero-content { position: relative; z-index: 2; }
.dest-hero-content > * { max-width: 720px; }
.dest-hero h1 { color: #fff; margin-bottom: .3em; }
.dest-hero .lead { color: rgba(255,255,255,.88); }
.dest-hero .breadcrumbs, .dest-hero .breadcrumbs a { color: rgba(255,255,255,.7); }
.dest-hero .btn { margin-top: 1rem; }
.dest-hero + .section { padding-top: clamp(32px, 5vw, 56px); }
.dest-hero + .section .prose { padding-top: 0; }

/* Zoeken op de blog */
.blog-search { display: flex; gap: 10px; max-width: 560px; margin-top: 24px; }
.blog-search input { flex: 1; min-width: 0; padding: .8em 1.2em; border-radius: 999px; border: 1.5px solid var(--line); font: inherit; background: #fff; }
.blog-search input:focus { outline: none; border-color: var(--teal); box-shadow: 0 0 0 4px rgba(31,111,120,.15); }
.search-summary { margin: -16px 0 28px; color: var(--muted); }

/* Filterknoppen op de blog */
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chips a { display: inline-flex; align-items: center; gap: 6px; padding: .5em 1em; border-radius: 999px;
    background: #fff; border: 1px solid var(--line); color: var(--ink); text-decoration: none; font-weight: 500; font-size: .9375rem;
    transition: border-color .2s, background-color .2s, color .2s; }
.chips a:hover { border-color: var(--teal); color: var(--teal); }
.chips a[aria-current] { background: var(--navy); border-color: var(--navy); color: #fff; }
.chips a span { font-size: .75rem; opacity: .6; }
a.tag { text-decoration: none; }
a.tag:hover { background: var(--teal); color: #fff; }
.tag-dest { background: #fff4e5; color: var(--accent-dark); }

/* 6. Responsive --------------------------------------------------------- */
@media (max-width: 1100px) {
    .hero-floats { display: none; }
}
@media (max-width: 960px) {
    .grid-3 { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
    .newsletter-inner { flex-direction: column; align-items: stretch; }
    .newsletter-form { flex-basis: auto; }

    /* Mobiel menu */
    .nav-toggle { display: grid; place-items: center; width: 44px; height: 44px; border: 0; background: none; cursor: pointer; }
    .nav-toggle-bar, .nav-toggle-bar::before, .nav-toggle-bar::after { display: block; width: 22px; height: 2px; background: var(--navy); border-radius: 2px; position: relative; transition: transform .25s, background .25s; }
    .nav-toggle-bar::before, .nav-toggle-bar::after { content: ''; position: absolute; left: 0; }
    .nav-toggle-bar::before { top: -7px; }
    .nav-toggle-bar::after  { top: 7px; }
    .nav-toggle[aria-expanded=true] .nav-toggle-bar { background: transparent; }
    .nav-toggle[aria-expanded=true] .nav-toggle-bar::before { transform: translateY(7px) rotate(45deg); }
    .nav-toggle[aria-expanded=true] .nav-toggle-bar::after  { transform: translateY(-7px) rotate(-45deg); }
    .site-nav {
        position: absolute; top: 72px; left: 0; right: 0;
        flex-direction: column; align-items: stretch; gap: 0;
        background: #fff; padding: 8px 24px 24px; border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 30px rgba(15,42,61,.1);
        display: none;
    }
    .site-nav.is-open { display: flex; }
    .site-nav a:not(.btn) { padding: 14px 0; border-bottom: 1px solid var(--line); }
    .site-nav a:not(.btn)::after { display: none; }
    .site-nav .btn { margin-top: 16px; }
}
@media (max-width: 620px) {
    body { font-size: 1rem; }
    .container { padding: 0 18px; }
    .grid-3 { grid-template-columns: 1fr; }
    .section-head-row { flex-direction: column; align-items: flex-start; }
    .section .section-head:has(> div) > div { flex-direction: column; align-items: flex-start; gap: 10px; }
    .hero-svg { width: 260%; right: -10%; }
    .hero-shade { background: linear-gradient(180deg, rgba(15,42,61,.88) 0%, rgba(15,42,61,.62) 60%, rgba(15,42,61,.15) 100%); }
    .hero-actions .btn { width: 100%; }
    .stats dd { font-size: 1.5rem; }
    .stats dt { font-size: .6875rem; letter-spacing: .06em; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div { grid-column: 1 / -1; }
    .newsletter-form { flex-direction: column; }
    .article-cta { flex-direction: column; align-items: flex-start; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form .btn { justify-self: stretch; }
}
