/* ==========================================================================
   Trekker Reizen — Design system "Modern Reisbureau" (Direction B)
   Clean, premium, teal-green. System font stack (no external font CDN, GDPR-safe).
   ========================================================================== */

:root {
    /* Brand palette */
    --green: #0f6b5c;
    --green-dark: #0b4d42;
    --green-700: #0d5a4d;
    --accent: #16a085;
    --accent-soft: #e2f3ee;

    /* Status (volgeboekt / uitverkocht) */
    --alert: #b4451f;
    --alert-dark: #8c3416;
    --alert-soft: #fceee7;

    /* Neutrals */
    --ink: #15201d;
    --body: #3c4744;
    --muted: #6b7672;
    --line: #e6ece9;
    --bg: #ffffff;
    --bg-soft: #f5f9f7;

    /* Surfaces */
    --radius: 16px;
    --radius-sm: 10px;
    --radius-pill: 999px;
    --shadow: 0 2px 12px rgba(16, 40, 34, .06);
    --shadow-md: 0 10px 30px rgba(16, 40, 34, .10);
    --shadow-lg: 0 22px 50px rgba(16, 40, 34, .16);

    /* Layout */
    --maxw: 1140px;
    --gutter: clamp(16px, 4vw, 40px);
    --section-y: clamp(48px, 7vw, 96px);

    --font: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
    --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---- Reset & base -------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font);
    color: var(--body);
    background: var(--bg);
    line-height: 1.65;
    font-size: 17px;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 { color: var(--ink); line-height: 1.15; font-weight: 800; letter-spacing: -.02em; margin: 0 0 .5em; }

img { max-width: 100%; display: block; }

a { color: var(--green); text-decoration: none; transition: color .2s var(--ease); }
a:hover { color: var(--green-dark); }

main { display: block; }

::selection { background: var(--accent); color: #fff; }

:focus-visible { outline: 3px solid var(--accent); outline-offset: 2px; border-radius: 4px; }

/* ---- Layout helpers ------------------------------------------------------ */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }

.section { padding-block: var(--section-y); }
.section--soft { background: var(--bg-soft); }
.section__title { font-size: clamp(24px, 3.2vw, 34px); margin-bottom: .8em; }
.section__title::after { content: ""; display: block; width: 54px; height: 4px; border-radius: 4px; background: var(--accent); margin-top: .45em; }
.section__cta { margin-top: clamp(28px, 4vw, 44px); }

/* ---- Buttons ------------------------------------------------------------- */
.btn {
    display: inline-flex; align-items: center; gap: .5em;
    font: inherit; font-weight: 700; line-height: 1;
    padding: 15px 26px; border: 0; border-radius: var(--radius-sm);
    background: var(--green); color: #fff !important; cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 107, 92, .28);
    transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.btn:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15, 107, 92, .34); }
.btn:active { transform: translateY(0); }
.btn--ghost { background: transparent; color: var(--green) !important; box-shadow: inset 0 0 0 2px var(--green); }
.btn--ghost:hover { background: var(--green); color: #fff !important; }

/* Non-interactive button, e.g. the CTA on a fully booked trip. */
.btn--disabled, .btn--disabled:hover {
    background: var(--line); color: var(--muted) !important;
    box-shadow: none; cursor: not-allowed; transform: none;
}

/* ---- Header / navigation ------------------------------------------------- */
.site-header {
    position: sticky; top: 0; z-index: 50;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: saturate(140%) blur(8px);
    border-bottom: 1px solid var(--line);
}
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; min-height: 84px; }
.site-header__brand { display: inline-flex; align-items: center; font-weight: 800; font-size: 20px; color: var(--green); letter-spacing: -.02em; }
.site-header__brand img { height: 56px; width: auto; max-width: 70vw; }

.site-nav { display: flex; align-items: center; gap: 6px; }
.site-nav a {
    color: var(--ink); font-weight: 600; font-size: 15px;
    padding: 9px 14px; border-radius: var(--radius-pill); white-space: nowrap;
    transition: background .2s var(--ease), color .2s var(--ease);
}
.site-nav a:hover { background: var(--accent-soft); color: var(--green-dark); }

/* Dropdown submenus (e.g. Reizen -> trips) */
.site-nav__item { position: relative; display: inline-flex; align-items: center; }
.site-nav__item.has-children > a::after { content: "▾"; margin-left: 5px; font-size: 11px; opacity: .7; }
.site-nav__submenu {
    position: absolute; top: 100%; left: 0; min-width: 220px;
    display: flex; flex-direction: column; gap: 2px;
    background: #fff; border: 1px solid var(--line); border-radius: 12px;
    box-shadow: var(--shadow-md); padding: 8px; margin-top: 4px;
    max-height: 70vh; overflow-y: auto; z-index: 60;
    opacity: 0; visibility: hidden; transform: translateY(6px);
    transition: opacity .15s var(--ease), transform .15s var(--ease), visibility .15s;
}
/* Bridge the 4px gap so the pointer can travel from link to submenu without closing it. */
.site-nav__item.has-children::after { content: ""; position: absolute; top: 100%; left: 0; right: 0; height: 8px; }
.site-nav__item.has-children:hover .site-nav__submenu,
.site-nav__item.has-children:focus-within .site-nav__submenu {
    opacity: 1; visibility: visible; transform: translateY(0);
}
.site-nav__submenu a { white-space: nowrap; }
.site-nav__toggle { display: none; } /* desktop uses hover; the caret button is mobile-only */

/* Mobile nav toggle (CSS-only) */
.nav-toggle { display: none; }
.nav-toggle-btn {
    display: none; cursor: pointer; border: 1px solid var(--line); background: #fff;
    width: 46px; height: 46px; border-radius: 12px; line-height: 1;
    align-items: center; justify-content: center; color: var(--ink);
}
.nav-toggle-btn svg { width: 22px; height: 22px; }

@media (max-width: 820px) {
    .nav-toggle-btn { display: inline-flex; }
    .site-nav {
        position: absolute; left: 0; right: 0; top: 100%;
        flex-direction: column; align-items: stretch; gap: 2px;
        background: #fff; border-bottom: 1px solid var(--line);
        padding: 12px var(--gutter) 20px;
        box-shadow: var(--shadow-md);
        display: none;
    }
    .nav-toggle:checked ~ .site-nav { display: flex; }
    .site-nav a { padding: 13px 14px; font-size: 16px; }

    /* Submenus render inline and collapsed; a caret button expands each one. */
    .site-nav__item { display: flex; flex-wrap: wrap; align-items: center; width: 100%; }
    .site-nav__item > a { flex: 1 1 auto; }
    .site-nav__item.has-children > a::after { display: none; }
    .site-nav__item.has-children::after { content: none; }
    .site-nav__toggle {
        display: inline-flex; align-items: center; justify-content: center;
        flex: 0 0 auto; width: 46px; height: 46px; border: 0; background: none; cursor: pointer; color: var(--ink);
    }
    .site-nav__toggle::before { content: "\25BE"; font-size: 13px; transition: transform .2s var(--ease); }
    .site-nav__item.is-open .site-nav__toggle::before { transform: rotate(180deg); }
    .site-nav__submenu {
        flex-basis: 100%; position: static; opacity: 1; visibility: visible; transform: none;
        display: none; border: 0; border-radius: 0; box-shadow: none; padding: 2px 0 6px 14px; margin: 0;
        max-height: none; overflow: visible;
    }
    .site-nav__item.is-open .site-nav__submenu { display: flex; }
    .site-nav__submenu a { font-size: 15px; color: var(--muted, #6b7280); }
}

/* ---- Hero ---------------------------------------------------------------- */
.hero {
    position: relative; isolation: isolate;
    min-height: clamp(420px, 66vh, 660px);
    display: flex; align-items: center;
    background-size: cover; background-position: center;
    color: #fff;
}
.hero::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(11, 41, 35, .25) 0%, rgba(11, 41, 35, .55) 55%, rgba(11, 41, 35, .78) 100%);
}
.hero--plain { background: linear-gradient(120deg, #0f6b5c 0%, #0b4d42 60%, #08362e 100%); }
.hero--plain::before { display: none; }
.hero__inner { padding-block: clamp(48px, 9vw, 110px); max-width: 760px; }
.hero__title { color: #fff; font-size: clamp(32px, 5.4vw, 56px); margin-bottom: .35em; text-wrap: balance; }
.hero__subtitle { font-size: clamp(17px, 2.2vw, 21px); color: rgba(255, 255, 255, .92); max-width: 40ch; margin-bottom: 1.6em; }

/* ---- Page header (interior pages) --------------------------------------- */
.page-header {
    position: relative; isolation: isolate;
    min-height: clamp(420px, 66vh, 660px);
    display: flex; align-items: flex-end;
    background-size: cover; background-position: center;
    color: #fff;
}
.page-header::before {
    content: ""; position: absolute; inset: 0; z-index: -1;
    background: linear-gradient(180deg, rgba(11, 41, 35, .2), rgba(11, 41, 35, .72));
}
.page-header--plain { background: linear-gradient(120deg, #0f6b5c, #0b4d42); }
.page-header--plain::before { display: none; }
/* Compact page title shown when a page has no hero image (no image band). */
.page-title { padding-block: clamp(28px, 5vw, 48px) 0; }
.page-title__heading { margin: 0; font-size: clamp(26px, 4vw, 42px); color: var(--ink); text-wrap: balance; }
.page-title__flag { display: inline-block; margin: 0 0 12px; font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em; color: var(--alert-dark); }
.page-header .container { padding-block: clamp(28px, 5vw, 52px); }
.page-header__title { color: #fff; font-size: clamp(28px, 4.4vw, 46px); margin: 0; text-wrap: balance; }
.page-header__flag {
    display: inline-block; margin: 0 0 14px;
    font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .1em;
    padding: 9px 18px; border-radius: var(--radius-pill);
    background: var(--alert); color: #fff;
    box-shadow: 0 6px 18px rgba(140, 52, 22, .35);
}

/* ---- Team grid (content page block list) -------------------------------- */
.team-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 24px; margin-top: 40px; }
.team-card { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; display: flex; flex-direction: column; }
.team-card__photo { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }
.team-card__body { padding: 18px; }
.team-card__name { margin: 0 0 2px; font-size: 18px; }
.team-card__role { margin: 0 0 10px; color: var(--green); font-weight: 600; font-size: 14px; }
.team-card__bio { margin: 0 0 12px; font-size: 14px; color: var(--muted); }
.team-card__links { margin: 0; display: flex; gap: 14px; font-size: 14px; font-weight: 600; }

/* ---- Hero / page-header image slider ------------------------------------ */
.mediaslider { position: absolute; inset: 0; z-index: -2; overflow: hidden; }
.mediaslider__slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity .9s ease; }
.mediaslider__slide.is-active { opacity: 1; }
.mediaslider__nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 2; width: 44px; height: 44px; border: 0; border-radius: 50%; background: rgba(0, 0, 0, .35); color: #fff; font-size: 30px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .15s ease; }
.mediaslider__nav:hover { background: rgba(0, 0, 0, .6); }
.mediaslider__nav--prev { left: 16px; }
.mediaslider__nav--next { right: 16px; }
.mediaslider__dots { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; gap: 9px; }
.mediaslider__dot { width: 11px; height: 11px; padding: 0; border: 0; border-radius: 50%; background: rgba(255, 255, 255, .55); cursor: pointer; transition: background .15s ease, transform .15s ease; }
.mediaslider__dot:hover { background: rgba(255, 255, 255, .85); }
.mediaslider__dot.is-active { background: #fff; transform: scale(1.15); }
@media (max-width: 600px) { .mediaslider__nav { width: 38px; height: 38px; font-size: 24px; } }

/* ---- Rich text ----------------------------------------------------------- */
.rte { max-width: 70ch; }
.rte > :first-child { margin-top: 0; }
.rte p { margin: 0 0 1.1em; }
.rte h2 { font-size: 1.55em; margin: 1.6em 0 .5em; }
.rte h3 { font-size: 1.25em; margin: 1.4em 0 .4em; }
.rte a { text-decoration: underline; text-underline-offset: 2px; }
.rte ul, .rte ol { margin: 0 0 1.1em; padding-left: 1.3em; }
.rte li { margin-bottom: .4em; }
.rte img { border-radius: var(--radius-sm); margin: 1.2em 0; }
.rte blockquote { margin: 1.4em 0; padding: .6em 1.2em; border-left: 4px solid var(--accent); color: var(--muted); font-style: italic; }

/* ---- Card grid & cards --------------------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: clamp(18px, 2.6vw, 30px); }

.card {
    display: flex; flex-direction: column;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); color: inherit;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); border-color: transparent; }
.card__media { position: relative; aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg-soft); }
.card__flag {
    position: absolute; top: 12px; left: 12px; z-index: 1;
    font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
    padding: 6px 13px; border-radius: var(--radius-pill);
    background: var(--alert); color: #fff;
    box-shadow: 0 4px 12px rgba(140, 52, 22, .3);
}
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card__media img { transform: scale(1.06); }
.card__body { padding: 18px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.card__title { font-size: 19px; margin: .35em 0 .3em; color: var(--ink); }
.card__text { color: var(--muted); font-size: 15px; margin: 0; display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.card__date { font-size: 13px; color: var(--muted); font-weight: 600; }
.card__meta { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: auto; padding-top: 16px; }
.card__meta > span:first-child { color: var(--muted); font-size: 14px; }
.card__price { font-weight: 800; color: var(--ink); font-size: 17px; }

/* ---- Badge --------------------------------------------------------------- */
.badge {
    align-self: flex-start;
    display: inline-block; font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: .06em; padding: 5px 11px; border-radius: var(--radius-pill);
    background: var(--accent-soft); color: var(--green-dark);
}
.badge--full { background: var(--alert-soft); color: var(--alert-dark); }

/* ---- Trip detail --------------------------------------------------------- */
.trip-layout { display: grid; grid-template-columns: minmax(0, 1fr) 340px; gap: clamp(28px, 4vw, 52px); align-items: start; }
.trip-main { min-width: 0; }
.trip-main > .rte { max-width: none; }
.trip-main h2 { font-size: 1.5em; margin: 1.6em 0 .5em; }
.trip__lead { font-size: 1.2em; color: var(--ink); font-weight: 500; margin: 0 0 1.4em; }
.trip__highlights { list-style: none; padding: 0; margin: 0 0 1.6em; display: grid; gap: 12px; }
.trip__highlights li { position: relative; padding-left: 34px; }
.trip__highlights li::before {
    content: ""; position: absolute; left: 0; top: 2px; width: 22px; height: 22px; border-radius: 50%;
    background: var(--accent-soft) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230b4d42' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center / 13px no-repeat;
}
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 12px; margin: 1em 0 1.6em; }
.gallery img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; border-radius: var(--radius-sm); display: block; }
.gallery__item { padding: 0; border: 0; background: none; cursor: pointer; border-radius: var(--radius-sm); overflow: hidden; }
.gallery__item img { transition: transform .4s var(--ease); }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item--hidden { display: none; }
/* "Bekijk meer…" tile: overlay the 6th image */
.gallery__item--more { position: relative; }
.gallery__more { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; background: rgba(0, 0, 0, .55); color: #fff; text-align: center; transition: background .2s var(--ease); }
.gallery__item--more:hover .gallery__more { background: rgba(0, 0, 0, .65); }
.gallery__more-label { font-weight: 700; font-size: 15px; }
.gallery__more-count { font-size: 20px; font-weight: 800; }

/* trip sidebar */
.trip-aside { position: sticky; top: 100px; display: grid; gap: 20px; }
.trip-summary { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 24px; }
.trip-summary__title { font-size: 18px; margin: 0 0 14px; }
.trip-facts { margin: 0; }
.trip-facts > div { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 9px 0; border-bottom: 1px solid var(--line); }
.trip-facts > div:last-child { border-bottom: 0; }
.trip-facts dt { color: var(--muted); font-size: 14px; }
.trip-facts dd { margin: 0; font-weight: 600; color: var(--ink); text-align: right; }
.trip-summary__price { font-size: 24px; font-weight: 800; color: var(--green); margin: 16px 0; }
.trip-summary__cta { width: 100%; justify-content: center; }
.trip-sto { border: 1px solid var(--line); border-radius: var(--radius); padding: 18px 20px; background: #fff; display: grid; gap: 12px; }
.trip-sto--covered { border-color: rgba(15, 107, 92, .25); background: var(--bg-soft); }
.trip-sto__logo-link { display: inline-block; }
.trip-sto__logo { max-width: 150px; height: auto; display: block; }
.trip-sto__text { font-size: 13.5px; color: var(--body); line-height: 1.5; }
.trip-sto__text > :last-child { margin-bottom: 0; }
.trip-route { margin: 0; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.trip-route img { width: 100%; display: block; }
.trip-route__map { position: relative; cursor: pointer; }
.trip-route__map iframe { display: block; width: 100%; height: auto; aspect-ratio: 4 / 3; border: 0; pointer-events: none; }
.trip-route__overlay { position: absolute; inset: 0; z-index: 2; display: flex; align-items: flex-end; justify-content: flex-end; padding: 8px; background: transparent; transition: background .15s ease; }
.trip-route__map:hover .trip-route__overlay { background: rgba(15, 107, 92, .10); }
.trip-route__expand { background: rgba(0, 0, 0, .65); color: #fff; font-size: 12px; font-weight: 600; padding: 6px 10px; border-radius: 6px; }

/* Enlarged map lightbox */
.map-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: center; justify-content: center; padding: 24px; background: rgba(0, 0, 0, .8); }
.map-modal.is-open { display: flex; }
.map-modal__inner { position: relative; width: min(1100px, 95vw); height: min(80vh, 800px); background: #fff; border-radius: var(--radius); overflow: hidden; box-shadow: 0 20px 60px rgba(0, 0, 0, .4); }
.map-modal__body, .map-modal__body .trip-route__embed { width: 100%; height: 100%; }
.map-modal__body iframe { width: 100%; height: 100%; aspect-ratio: auto; border: 0; pointer-events: auto; }
.map-modal__close { position: absolute; top: 10px; right: 12px; z-index: 3; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(0, 0, 0, .6); color: #fff; font-size: 26px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.map-modal__close:hover { background: rgba(0, 0, 0, .8); }

/* Trip signup form popup */
.form-modal { position: fixed; inset: 0; z-index: 1000; display: none; align-items: flex-start; justify-content: center; padding: clamp(16px, 5vh, 56px) 16px; background: rgba(0, 0, 0, .8); overflow-y: auto; }
.form-modal.is-open { display: flex; }
.form-modal__inner { position: relative; width: min(680px, 100%); background: #fff; border-radius: var(--radius); box-shadow: 0 20px 60px rgba(0, 0, 0, .4); }
.form-modal__body { padding: 60px clamp(20px, 4vw, 40px) clamp(20px, 4vw, 40px); }
.form-modal__body .contactform { margin: 0; }
.form-modal__close { position: absolute; top: 10px; right: 12px; z-index: 3; width: 40px; height: 40px; border: 0; border-radius: 50%; background: rgba(0, 0, 0, .06); color: #333; font-size: 26px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; }
.form-modal__close:hover { background: rgba(0, 0, 0, .12); }
.trip-route figcaption { padding: 10px 14px; font-size: 13px; color: var(--muted); font-weight: 600; }
.trip-contact { max-width: 760px; margin-top: clamp(32px, 5vw, 56px); }
.trip-notice {
    background: var(--alert-soft); border: 1px solid rgba(180, 69, 31, .18);
    border-radius: var(--radius); padding: clamp(24px, 3vw, 34px);
}
.trip-notice__title { font-size: 22px; margin: 0 0 .4em; color: var(--alert-dark); }
.trip-notice p { margin: 0 0 20px; color: var(--body); }
.trip-notice__actions { display: flex; flex-wrap: wrap; gap: 12px; }
@media (max-width: 900px) { .trip-layout { grid-template-columns: 1fr; } .trip-aside { position: static; } }

/* ---- Blog list ----------------------------------------------------------- */
.blog-intro { max-width: 70ch; margin-bottom: clamp(28px, 4vw, 44px); font-size: 1.1em; color: var(--body); }
.blog-grid { margin-top: clamp(24px, 3vw, 36px); }
.link-more { display: inline-block; margin-top: 14px; font-weight: 700; color: var(--green); font-size: 15px; }
.card:hover .link-more, .feature-card:hover .link-more { color: var(--green-dark); }

.feature-card {
    display: grid; grid-template-columns: 1.15fr 1fr; gap: 0; align-items: stretch;
    background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
    overflow: hidden; box-shadow: var(--shadow); color: inherit;
    transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.feature-card__media { overflow: hidden; min-height: 280px; }
.feature-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.feature-card:hover .feature-card__media img { transform: scale(1.05); }
.feature-card__body { padding: clamp(24px, 3vw, 40px); display: flex; flex-direction: column; justify-content: center; }
.feature-card__meta { display: flex; flex-wrap: wrap; gap: 6px 16px; color: var(--muted); font-size: 14px; font-weight: 600; margin: 12px 0 6px; }
.feature-card__title { font-size: clamp(22px, 2.6vw, 30px); margin: .1em 0 .35em; }
.feature-card__text { color: var(--body); margin: 0; }
@media (max-width: 760px) { .feature-card { grid-template-columns: 1fr; } .feature-card__media { min-height: 200px; } }

/* ---- Blog post ----------------------------------------------------------- */
.blogpost { max-width: 1080px; }
/* keep the intro text at a comfortable reading width; the timeline uses the full width */
.blogpost__meta, .blogpost__lead, .blogpost > .rte { max-width: 760px; }
.blogpost__meta { display: flex; flex-wrap: wrap; gap: 8px 18px; color: var(--muted); font-size: 14px; font-weight: 600; margin: 0 0 1.2em; }
.blogpost__lead { font-size: 1.25em; line-height: 1.5; color: var(--ink); font-weight: 500; margin: 0 0 1.4em; padding-bottom: 1.2em; border-bottom: 1px solid var(--line); }
.blogpost__back { margin-top: 2.4em; padding-top: 1.4em; border-top: 1px solid var(--line); }
.blogpost__back a { font-weight: 700; }

/* ---- Blog day-by-day timeline -------------------------------------------- */
.tl { list-style: none; margin: 2.4em 0 0; padding: 0; position: relative; }
.tl::before { content: ""; position: absolute; left: 19px; top: 6px; bottom: 6px; width: 2px; background: var(--line); }
.tl-day { position: relative; padding-left: 58px; margin-bottom: clamp(28px, 4vw, 44px); }
.tl-day__marker {
    position: absolute; left: 0; top: 0; width: 40px; height: 40px; border-radius: 50%;
    background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center;
    font-weight: 800; box-shadow: 0 0 0 4px var(--bg);
}
.tl-day__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(16px, 3vw, 32px); align-items: start; }
.tl-day__text h3 { margin: .1em 0 .5em; font-size: 1.25em; }
.tl-day__text .rte { max-width: none; }
@media (max-width: 720px) { .tl-day__grid { grid-template-columns: 1fr; } }

/* collage (click to open lightbox) */
.collage { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
.collage__item {
    padding: 0; border: 0; background: none; cursor: pointer; position: relative;
    border-radius: var(--radius-sm); overflow: hidden; aspect-ratio: 4 / 3;
}
.collage__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s var(--ease); }
.collage__item:hover img { transform: scale(1.06); }
.collage__item.is-hidden { display: none; }
.collage__more {
    position: absolute; inset: 0; background: rgba(11, 41, 35, .6); color: #fff;
    display: flex; align-items: center; justify-content: center; font-size: 22px; font-weight: 800;
}

/* lightbox */
.lightbox { position: fixed; inset: 0; z-index: 200; background: rgba(8, 20, 17, .92); display: none; align-items: center; justify-content: center; }
.lightbox.is-open { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 72vh; object-fit: contain; border-radius: 6px; box-shadow: 0 20px 60px rgba(0, 0, 0, .5); }
.lightbox__close, .lightbox__nav {
    position: absolute; background: rgba(255, 255, 255, .12); color: #fff; border: 0; cursor: pointer;
    width: 52px; height: 52px; border-radius: 50%; font-size: 30px; line-height: 1;
    display: flex; align-items: center; justify-content: center; transition: background .2s var(--ease);
}
.lightbox__close:hover, .lightbox__nav:hover { background: rgba(255, 255, 255, .25); }
.lightbox__close { top: 20px; right: 24px; font-size: 26px; }
.lightbox__nav--prev { left: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__nav--next { right: 18px; top: 50%; transform: translateY(-50%); }
.lightbox__count { position: absolute; bottom: 18px; left: 0; right: 0; text-align: center; color: rgba(255, 255, 255, .85); font-size: 14px; font-weight: 600; }
.lightbox__thumbs { position: absolute; bottom: 46px; left: 50%; transform: translateX(-50%); max-width: calc(100vw - 32px); display: flex; gap: 8px; overflow-x: auto; padding: 4px; scrollbar-width: thin; }
.lightbox__thumb { flex: 0 0 auto; width: 68px; height: 46px; padding: 0; border: 2px solid transparent; border-radius: 6px; overflow: hidden; cursor: pointer; background: none; opacity: .5; transition: opacity .2s var(--ease), border-color .2s var(--ease); }
.lightbox__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.lightbox__thumb:hover { opacity: .85; }
.lightbox__thumb.is-active { opacity: 1; border-color: #fff; }
@media (max-width: 600px) {
    .lightbox__nav { width: 44px; height: 44px; } .lightbox__nav--prev { left: 8px; } .lightbox__nav--next { right: 8px; }
    .lightbox__thumb { width: 54px; height: 38px; }
}

/* ---- Contact ------------------------------------------------------------- */
.contact__grid { display: grid; grid-template-columns: 1fr 1.2fr; gap: clamp(28px, 5vw, 56px); align-items: start; margin-top: 2em; }
.contact__details p { margin: 0 0 .6em; }
.contact__map { margin-top: 2.5em; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.contact__map iframe { display: block; width: 100%; border: 0; min-height: 320px; }
@media (max-width: 760px) { .contact__grid { grid-template-columns: 1fr; } }

/* ---- Contact form (Umbraco Forms, "default" theme) ----------------------- */
.contactform { background: var(--bg-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(22px, 4vw, 34px); }
.contactform__title { font-size: 22px; margin: 0 0 1em; }

.umbraco-forms-field { margin-bottom: 18px; }
.umbraco-forms-label { display: block; font-weight: 600; font-size: 14px; color: var(--ink); margin-bottom: 6px; }
.umbraco-forms-indicator { color: var(--accent); margin-left: 2px; }
.umbraco-forms-tooltip { display: block; color: var(--muted); font-size: 13px; margin-bottom: 6px; }
.contactform input.text,
.contactform textarea,
.contactform select {
    width: 100%; font: inherit; font-size: 16px; color: var(--ink);
    padding: 12px 14px; border: 1px solid #cdd8d4; border-radius: var(--radius-sm); background: #fff;
    transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.contactform textarea { resize: vertical; min-height: 130px; }
.contactform input.text:focus,
.contactform textarea:focus,
.contactform select:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(22, 160, 133, .18); }

/* honeypot / anti-spam field — must stay hidden (default stylesheet is disabled) */
.umbraco-forms-hidden { display: none !important; }

/* validation */
.field-validation-error, .umbraco-forms-field.error .field-validation-error { display: block; color: #b3261e; font-size: 13px; margin-top: 6px; }
.input-validation-error { border-color: #b3261e !important; }
.validation-summary-errors { color: #b3261e; font-size: 14px; margin-bottom: 1em; }
.validation-summary-errors ul { margin: 0; padding-left: 1.1em; }

/* submit button + success message */
.umbraco-forms-navigation { margin-top: 8px; }
.umbraco-forms-navigation input[type="submit"],
.umbraco-forms-navigation button[type="submit"] {
    display: inline-flex; align-items: center; font: inherit; font-weight: 700; line-height: 1;
    padding: 15px 28px; border: 0; border-radius: var(--radius-sm); background: var(--green); color: #fff; cursor: pointer;
    box-shadow: 0 6px 16px rgba(15, 107, 92, .28); transition: transform .2s var(--ease), box-shadow .2s var(--ease), background .2s var(--ease);
}
.umbraco-forms-navigation input[type="submit"]:hover,
.umbraco-forms-navigation button[type="submit"]:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 10px 24px rgba(15, 107, 92, .34); }
.umbraco-forms-submitmessage { display: block; background: var(--accent-soft); color: var(--green-dark); border-radius: var(--radius-sm); padding: 16px 18px; font-weight: 600; }
.umbraco-forms-submitmessage * { background: none; }

/* ---- Footer -------------------------------------------------------------- */
.site-footer { background: var(--green-dark); color: rgba(255, 255, 255, .82); margin-top: var(--section-y); }
.site-footer__inner { display: grid; grid-template-columns: 1.4fr 1fr 1.2fr; gap: clamp(24px, 4vw, 48px); padding-block: clamp(40px, 6vw, 64px); }
.site-footer h1, .site-footer h2, .site-footer h3, .site-footer strong { color: #fff; }
.site-footer a { color: #fff; }
.site-footer a:hover { color: var(--accent-soft); }
.site-footer .rte { max-width: none; }
.site-footer__col p { margin: 0 0 .55em; }
.site-footer__heading { font-size: 16px; font-weight: 800; margin: 0 0 14px; }
.site-footer__social { display: flex; flex-direction: column; gap: 8px; align-items: flex-start; }
.site-footer__social a { font-weight: 600; }

/* STO Garant block (footer column 2, under the socials) */
.site-footer__sto { margin-top: 22px; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.site-footer__sto-logo { display: inline-block; background: #fff; padding: 8px 10px; border-radius: var(--radius-sm); }
.site-footer__sto-logo img { max-width: 90px; height: auto; display: block; }
.site-footer__sto-link { font-size: 14px; font-weight: 600; }

/* Small inline social icons (footer column 2) */
.social-icons { display: flex; align-items: center; gap: 14px; margin-top: 12px; }
.social-icon { display: inline-flex; color: rgba(255, 255, 255, .7) !important; transition: color .2s var(--ease); }
.social-icon:hover { color: #fff !important; }
.social-icon svg { width: 18px; height: 18px; fill: currentColor; display: block; }

/* Newsletter signup (footer column 3) */
.site-footer__newsletter-intro { margin: 0 0 14px; font-size: 14px; color: rgba(255, 255, 255, .82); }
.site-footer__newsletter .umbraco-forms-field { margin-bottom: 12px; }
.site-footer__newsletter .umbraco-forms-label { color: rgba(255, 255, 255, .78); font-size: 13px; }
.site-footer__newsletter .umbraco-forms-tooltip { color: rgba(255, 255, 255, .55); }
.site-footer__newsletter input.text,
.site-footer__newsletter input[type="email"],
.site-footer__newsletter input[type="text"] {
    width: 100%; padding: 11px 13px; font: inherit;
    border-radius: var(--radius-sm); border: 1px solid rgba(255, 255, 255, .25);
    background: rgba(255, 255, 255, .1); color: #fff;
}
.site-footer__newsletter input::placeholder { color: rgba(255, 255, 255, .55); }
.site-footer__newsletter input.text:focus,
.site-footer__newsletter input[type="email"]:focus {
    outline: none; border-color: var(--accent); box-shadow: 0 0 0 3px rgba(22, 160, 133, .3);
}
.site-footer__newsletter .umbraco-forms-submitmessage { background: rgba(255, 255, 255, .12); color: #fff; }
.site-footer__newsletter .umbraco-forms-navigation input[type="submit"],
.site-footer__newsletter .umbraco-forms-navigation button[type="submit"] { background: var(--accent); width: 100%; justify-content: center; }
.site-footer__newsletter .umbraco-forms-navigation input[type="submit"]:hover,
.site-footer__newsletter .umbraco-forms-navigation button[type="submit"]:hover { background: #128069; }
.site-footer__copy { border-top: 1px solid rgba(255, 255, 255, .14); padding-block: 20px; font-size: 13px; color: rgba(255, 255, 255, .6); display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.site-footer__links { display: flex; gap: 18px; flex-wrap: wrap; }
.site-footer__links a { color: rgba(255, 255, 255, .6); font-weight: 600; }
.site-footer__links a:hover { color: #fff; }
@media (max-width: 760px) { .site-footer__inner { grid-template-columns: 1fr; gap: 28px; } }

/* ---- Informatiepagina content blocks ------------------------------------ */
.info-page { display: flex; flex-direction: column; gap: clamp(32px, 5vw, 56px); }
.info-block { margin: 0; }
.info-block__heading { margin: 0 0 .6em; }

/* Text with image: two columns, optionally reversed */
.info-block--text-image { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(24px, 4vw, 48px); align-items: center; }
.info-block--text-image.is-image-right .info-block__media { order: 2; }
.info-block__media img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
@media (max-width: 760px) { .info-block--text-image { grid-template-columns: 1fr; } .info-block--text-image.is-image-right .info-block__media { order: 0; } }

/* Single image */
.info-block--image { margin: 0; }
.info-block--image img { width: 100%; height: auto; border-radius: var(--radius); box-shadow: var(--shadow); display: block; }
.info-block--image figcaption,
.info-block--video figcaption { margin-top: .6em; font-size: 14px; color: var(--muted, #6b7280); text-align: center; }

/* Responsive video embed (16:9) */
.info-block__video { position: relative; width: 100%; aspect-ratio: 16 / 9; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: #000; }
.info-block__video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

/* Links / buttons */
.info-block__buttons { display: flex; flex-wrap: wrap; gap: 12px; }

/* Google Maps embed */
.info-block--map { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.info-block--map iframe { display: block; width: 100%; border: 0; min-height: 360px; }

/* ---- Fotoalbums --------------------------------------------------------- */
.albums-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: clamp(16px, 2.5vw, 28px); }
.album { display: block; }
.album__cover { position: relative; width: 100%; display: block; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.album__cover img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; display: block; transition: transform .4s var(--ease); }
.album__cover:hover img { transform: scale(1.05); }
.album__overlay { position: absolute; inset: 0; display: flex; flex-direction: column; align-items: flex-start; justify-content: flex-end; gap: 2px; padding: 16px; text-align: left; color: #fff; background: linear-gradient(to top, rgba(0, 0, 0, .65) 0%, rgba(0, 0, 0, .15) 45%, rgba(0, 0, 0, 0) 70%); }
.album__name { font-size: 18px; font-weight: 800; }
.album__count { font-size: 13px; font-weight: 600; color: rgba(255, 255, 255, .85); }
.albums-empty { color: var(--muted, #6b7280); }
