/* ========================================
   BASIS / VARIABELEN
======================================== */

:root{
    /* Kleuren */
    --navy:#203A5A;
    --navy-deep:#081424;
    --navy-dark:#0C1B2C;

    --gold:#C69B52;
    --gold-dark:#A67C36;

    --sand:#F7F5F1;
    --main-bg:#F3EFE6;
    --ivory:#F5F0E5;
	--offwhite:#FCFAF6;
    --white:#FFFFFF;

    --text:var(--navy);

    /* Transparante vlakken */
    --surface-soft:rgba(255,255,255,.62);
    --surface-card:rgba(255,255,255,.70);
    --border:rgba(32,58,90,.08);

    /* Pagina */
    --page-padding:20px;
    --section-padding:72px;

    /* Afrondingen */
    --radius:18px;
    --hero-radius:40px;

    /* Schaduwen */
    --shadow:0 10px 40px rgba(0,0,0,.08);
    --shadow-card:0 8px 28px rgba(0,0,0,.06);
    --shadow-card-hover:0 18px 40px rgba(0,0,0,.12);

    /* Animaties */
    --transition:.25s ease;

    /* Hero */
    --hero-position:70% center;

	--font-heading: "Playfair Display", serif;
    --font-body: "Inter", sans-serif;
	
    --card-border:rgba(32,58,90,.08);
    --card-radius:14px;
    --card-shadow:0 8px 28px rgba(0,0,0,.06);

    --content-padding:12px;
    --content-gap:10px;
}


/* ========================================
   RESET
======================================== */

*,
*::before,
*::after{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    min-height:100%;
    overflow-x:clip;

    background:var(--sand);
    color:var(--text);

    font-family:Inter, sans-serif;
    font-size:16px;
    line-height:1.5;
}

h1,
h2,
h3,
h4,
h5,
h6{
    color:inherit;
}

a{
    color:inherit;
}

img{
    display:block;
    max-width:100%;
}

button,
input,
textarea,
select{
    font:inherit;
}


/* ========================================
   SCROLL INTRO
======================================== */

/*
    Dit is de lengte van de volledige
    scrollanimatie.

    We gebruiken 400svh omdat er nu vijf
    verschijnmomenten zijn:
    logo, titel, subtitel, divider en info.
*/

.scroll-intro{
    position:relative;
    height:400vh;
    height:400svh;
}

/*
    Dit gedeelte blijft tijdens de
    scrollanimatie aan het scherm plakken.
*/

.hero-stage{
    position:sticky;
    top:0;
    width:100%;
    height:100vh;
    height:100svh;
    overflow:hidden;
    isolation:isolate;
    background:var(--navy-deep);
}

/* ========================================
   HERO-AFBEELDING
======================================== */

.hero-background{
    position:absolute;
    inset:0;
    z-index:1;
    background-image:url("../images/hero.webp");
    background-position:var(--hero-position);
    background-size:cover;
    background-repeat:no-repeat;
    transform:scale(1);
    transform-origin:center;
    will-change:transform;
}

/* ========================================
   HERO LOGO EN TEKST
======================================== */

.hero-content{
    position:absolute;
    top:30%;
    left:50%;
    z-index:3;
    width:calc(100% - (2 * var(--page-padding)));
    color:var(--navy);
    text-align:center;
    transform:translate(-50%,-50%);
    will-change:transform;
}

.hero-logo{
    width:42vw;
    max-width:190px;
    height:auto;
    margin:0 auto;
    opacity:0;
    transform:scale(.2);
    transform-origin:center;
    will-change:transform, opacity;
}

.hero-logo-wrap{
    margin-bottom:10px;
    will-change:transform;
}

.hero-copy{
    will-change:transform;
}

.hero-title{
    color:var(--navy);
    font-family:"Playfair Display", serif;
    font-size:clamp(2.4rem,11vw,3.25rem);
    font-weight:600;
    line-height:.95;
    letter-spacing:-.045em;
    opacity:0;
    transform:scale(.4);
    transform-origin:center;
    will-change:transform, opacity;
}

.hero-subtitle{
    margin-top:16px;
    color:var(--navy);
    font-size:clamp(.95rem,4.2vw,1.1rem);
    line-height:1.45;
    letter-spacing:.02em;
    opacity:0;
    transform:scale(.6);
    transform-origin:center;
    will-change:transform, opacity;
}

/* ========================================
   HERO DETAILS
======================================== */

.hero-details{
    position:absolute;
    top:53%;
    left:50%;
    z-index:3;
    width:calc(100% - (2 * var(--page-padding)));
    max-width:420px;
    color:var(--navy);
    transform:translateX(-50%);
    will-change:transform;
}

/* ========================================
   DIVIDER
======================================== */

.hero-divider{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin:0 auto 18px;
    color:var(--gold);
    opacity:0;
    transform:scale(.7);
    transform-origin:center;
    will-change:transform, opacity;
}

.hero-divider > span:not(.divider-bird){
    width:56px;
    height:1px;
    background:var(--gold);
}

.divider-bird{
    display:block;

    width:18px;
    height:18px;

    background:var(--gold);

    -webkit-mask-image:url("../icons/mallemok.svg");
    mask-image:url("../icons/mallemok.svg");

    -webkit-mask-repeat:no-repeat;
    mask-repeat:no-repeat;

    -webkit-mask-position:center;
    mask-position:center;

    -webkit-mask-size:contain;
    mask-size:contain;

    flex-shrink:0;
}



/* ========================================
   HERO LOCATIE EN TIJD
======================================== */

.hero-meta{
    display:flex;
    flex-direction:column;
    gap:14px;

    width:100%;
    max-width:360px;

    margin:0 auto;

    opacity:0;
    transform:translateY(24px);

    will-change:transform, opacity;
}

.info-card{
    display:flex;
    align-items:center;
    gap:16px;

    width:100%;
}

.info-card svg{
    width:32px;
    height:32px;

    color:var(--navy);

    flex-shrink:0;
    stroke-width:1.8;
}

.info-text{
    color:var(--navy);
    text-align:left;
    line-height:1.4;
}

.info-text strong{
    display:block;

    margin-bottom:3px;

    color:var(--navy);
    font-weight:600;
}

.info-text p{
    margin:0;

    color:var(--navy);

    font-size:.9rem;
    line-height:1.4;
}

/* ========================================
   JOUW BESTAANDE MAIN
======================================== */

.site-main{
    position:relative;
    z-index:5;
    background:transparent;
}

.page-content{
    position:relative;
    z-index:5;

    width:100%;
    margin-inline:auto;

    margin-top:-100vh;
    margin-top:-100svh;

    padding:
        24px
        var(--page-padding)
        80px;

    background:transparent;

    border-radius:
        var(--hero-radius)
        var(--hero-radius)
        0
        0;
}

/* ========================================
   INFO SECTION
======================================== */

.info-section{
    width:100%;

    margin:0 auto;
    padding:32px 26px;

    background:var(--offwhite);

    border:1px solid var(--border);
    border-radius:var(--radius);

    box-shadow:var(--shadow);
}

.info-section h2{
    margin-bottom:16px;

    color:var(--navy);

    font-family:"Playfair Display", serif;
    font-size:2rem;
    font-weight:600;
    line-height:1.15;
}

.info-section p{
    color:var(--text);

    font-size:1rem;
    line-height:1.75;
}

.info-section p + p{
    margin-top:14px;
}


/* ========================================
   FEATURE GRID
======================================== */

.cards-section{
    width:100%;
    padding-inline:var(--content-padding);
}

.feature-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:16px;

    width:100%;

    margin-top:48px;
    padding-bottom:40px;
}

.feature-card{
    position:relative;

    display:flex;
    flex-direction:column;
    align-items:center;

    min-width:0;
    min-height:220px;

    padding:26px 14px 48px;

    color:inherit;
    text-align:center;
    text-decoration:none;

    background:var(--surface-card);

    border:1px solid var(--border);
    border-radius:var(--radius);

    box-shadow:var(--shadow-card);

    transition:
        transform var(--transition),
        box-shadow var(--transition);
}

.feature-card:focus-visible{
    outline:3px solid var(--gold);
    outline-offset:4px;
}


/*
    Alleen het grote hoofdicoon van de kaart.
    De card-arrow wordt hierdoor niet geraakt.
*/

.feature-card > svg:not(.card-arrow){
    width:52px;
    height:52px;

    margin-bottom:14px;

    color:var(--navy);
    stroke-width:1.7;

    flex-shrink:0;
}

.feature-card h3{
    margin:0 0 12px;

    color:var(--navy);

    font-family:"Playfair Display", serif;
    font-size:clamp(1.05rem,5.2vw,1.4rem);
    font-weight:600;
    line-height:1.15;

    overflow-wrap:anywhere;
}

.feature-card p{
    color:var(--text);

    font-size:.82rem;
    line-height:1.45;

    overflow-wrap:anywhere;
}

.feature-card > .card-arrow{
    position:absolute;
    right:14px;
    bottom:14px;

    width:18px;
    height:18px;

    margin:0;

    color:var(--navy);

    transition:
        transform var(--transition),
        color var(--transition);
}

.feature-card:active{
    transform:scale(.98);
}

/* ========================================
   SPECIALE KAART — 7DE TRADITIE
======================================== */

.tradition-card{
    grid-column:1 / -1;

    display:grid;
    grid-template-columns:auto 1fr;
    align-items:center;
    gap:14px;

    width:100%;
    min-height:0;

    padding:18px 40px 18px 14px;

    color:var(--navy);
    text-align:left;

    background:var(--gold);

    border:1px solid rgba(32,58,90,.12);
    border-radius:var(--card-radius);
    box-shadow:var(--card-shadow);
}

.tradition-icon{
    display:flex;
    align-items:center;
    justify-content:center;

    width:52px;
    height:52px;

    background:var(--navy);
    color:var(--gold);

    border-radius:50%;
    flex-shrink:0;
}

.tradition-icon svg{
    width:26px;
    height:26px;

    margin:0;

    color:var(--gold);
    stroke-width:1.8;
}

.tradition-content{
    min-width:0;
}

.tradition-label{
    display:block;

    margin-bottom:4px;

    color:rgba(32,58,90,.75);

    font-size:.64rem;
    font-weight:700;
    line-height:1.3;
    letter-spacing:.14em;
    text-transform:uppercase;
}

.tradition-card h3{
    margin:0 0 6px;

    color:var(--navy);

    font-family:var(--font-heading);
    font-size:1.5rem;
    font-weight:600;
    line-height:1.1;
}

.tradition-card p{
    margin:0;

    color:var(--navy);

    font-size:.84rem;
    line-height:1.5;
}

.tradition-card > .card-arrow{
    right:16px;
    bottom:16px;

    color:var(--navy);
}

/* ========================================
   EXTRA SECTIES ONDER JOUW MAIN
======================================== */

.site-sections{
    position:relative;
    z-index:5;

    background:var(--main-bg);
}

.content-section{
    display:flex;
    flex-direction:column;
    justify-content:center;

    min-height:100vh;
    min-height:100svh;

    padding:
        var(--section-padding)
        var(--page-padding);

    background:var(--main-bg);
    color:var(--navy);
}

.content-section h2{
    max-width:100%;

    color:inherit;

    font-family:"Playfair Display", serif;
    font-size:clamp(2.2rem,10vw,3.2rem);
    font-weight:500;
    line-height:1;
    letter-spacing:-.04em;

    text-wrap:balance;
}

.content-section p{
    max-width:100%;

    margin-top:26px;

    color:inherit;

    font-size:1rem;
    line-height:1.65;
}

.content-section .eyebrow{
    margin:0 0 20px;

    color:var(--gold-dark);

    font-size:.75rem;
    font-weight:700;
    line-height:1.4;
    text-transform:uppercase;
    letter-spacing:.22em;
}


/* ========================================
   DONKERE SECTIE
======================================== */

.dark-section{
    background:var(--navy-dark);
    color:var(--ivory);
}

.dark-section h1,
.dark-section h2,
.dark-section h3,
.dark-section p,
.dark-section span,
.dark-section strong{
    color:inherit;
}

.dark-section .eyebrow{
    color:var(--gold);
}


/* ========================================
   ALGEMENE CONTAINER
======================================== */

.container{
    width:calc(100% - (2 * var(--page-padding)));
    margin-inline:auto;
}


/* ========================================
   APPARATEN MET EEN MUIS
======================================== */

@media (hover:hover){

    .feature-card:hover{
        transform:translateY(-4px);
        box-shadow:var(--shadow-card-hover);
    }

    .feature-card:hover > .card-arrow{
        color:var(--gold);
        transform:translateX(5px);
    }

}

/* ========================================
   MINDER ANIMATIE
======================================== */

@media (prefers-reduced-motion:reduce){

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms !important;
        animation-iteration-count:1 !important;
        transition-duration:.01ms !important;
    }

}

/* ========================================
   INFO-BLOCK
======================================== */

.info-block{
    width:100%;
    padding:10svh 1.5rem;
}

.info-content{
    width:100%;
    max-width:42rem;
    margin:0 auto;
}

.info-block h2{
    margin:0 0 1.5rem;
    font-size:clamp(2rem, 8vw, 3rem);
    line-height:1.1;
}

.info-block p{
    margin:0 0 1.25rem;
    font-size:1rem;
    line-height:1.75;
}

.info-block p:last-child{
    margin-bottom:0;
}

.info-intro{
    background:#eee7dc;
    color:#182333;
}

.info-na{
    background:#dfe5e8;
    color:#182333;
}

.info-free{
    background:#f7f4ee;
    color:#182333;
}

.info-invite{
    background:#182333;
    color:#f7f4ee;
}

.info-invite h2{
    color:#d6b66f;
}

.invite-welcome{
    margin-top:36px;
    color:var(--navy);
    font-family:var(--font-heading);
    font-size:1.45rem;
    font-weight:600;
    letter-spacing:-.01em;
}

/* =========================================
   COMPLETE FOOTER — MOBILE FIRST
========================================= */

.site-footer {
    width: 100%;
    margin-top: 1.5rem;
    overflow: hidden;
}


/* =========================================
   WITTE FOOTERBALK
========================================= */

.footer-links {
    position: relative;
    z-index: 2;

    width: calc(100% - 1.5rem);
    margin: 0 auto;
    padding: 0.5rem 0.4rem;

    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));

    background: rgba(255, 253, 248, 0.96);
    border: 1px solid rgba(16, 47, 77, 0.08);
    border-radius: 1.1rem;

    box-shadow:
        0 0.6rem 1.8rem rgba(20, 40, 55, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
}

.footer-link {
    position: relative;

    display: grid;
    grid-template-columns: 2rem 1fr;
    grid-template-rows: auto auto;
    column-gap: 0.45rem;

    min-width: 0;
    padding: 0.55rem 0.45rem 1.6rem;

    color: #102f4d;
    text-decoration: none;
}

.footer-link:not(:last-child) {
    border-right: 1px solid rgba(16, 47, 77, 0.14);
}


/* =========================================
   ICONEN
========================================= */

.footer-link-icon {
    grid-row: 1 / 3;
    width: 2rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;

    color: #102f4d;
}

.footer-link-icon svg {
    width: 1.85rem;
    height: 1.85rem;
    stroke-width: 1.7;
}

.footer-question-icon {
    width: 1.9rem;
    height: 1.9rem;
    border: 1.7px solid #102f4d;
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
}


/* =========================================
   TEKST IN DE WITTE BALK
========================================= */

.footer-link-text {
    min-width: 0;
}

.footer-link-text h3 {
    margin: 0 0 0.25rem;

    font-size: clamp(0.68rem, 3vw, 0.9rem);
    line-height: 1.08;
    font-weight: 700;

    color: #102f4d;
}

.footer-link-text p {
    margin: 0;
    font-family: Inter, Arial, sans-serif;
    font-size: clamp(0.52rem, 2.15vw, 0.68rem);
    line-height: 1.35;
    color: #172f43;
}

.footer-link-arrow {
    position: absolute;
    right: 0.55rem;
    bottom: 0.4rem;
    color: #c39135;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1;
}


/* =========================================
   DONKERBLAUWE ONDERKANT
========================================= */

.footer-bottom {
    position: relative;
    min-height: 15rem;
    margin-top: 1rem;
    padding: 4rem 2.8rem 2rem;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background:
        radial-gradient(
            circle at 50% 0%,
            rgba(255, 255, 255, 0.04),
            transparent 40%
        ),
        #102f4d;

    color: #fffaf0;
    overflow: hidden;
}


/* Gebogen overgang */

.footer-bottom::before {
    content: "";
    position: absolute;
    top: -2rem;
    left: -5%;
    width: 110%;
    height: 3.5rem;
    background: #f7f3eb;
    border-radius: 0 0 50% 50%;
}


/* Subtiele textuur */

.footer-bottom::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255, 255, 255, 0.012) 0,
            rgba(255, 255, 255, 0.012) 1px,
            transparent 1px,
            transparent 4px
        );
    pointer-events: none;
}

/* =========================================
   HART EN LIJNEN
========================================= */

.footer-message {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 21rem;
    text-align: center;
}

.footer-heart-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    margin-bottom: 0.9rem;
}

.footer-heart-divider svg {
    width: 1.45rem;
    height: 1.45rem;
    flex-shrink: 0;
    fill: none;
    stroke: #d0a14c;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.footer-heart-line {
    display: block;
    width: 4.8rem;
    height: 1px;
    background: #d0a14c;
}


/* =========================================
   AFSLUITENDE TEKST
========================================= */

.footer-message p {
    margin: 0;
	font-family: var(--font-heading, "Playfair Display", serif);
    font-size: clamp(0.78rem, 3.1vw, 0.9rem);
    font-weight: 400;
    line-height: 1.55;
    letter-spacing: 0.01em;

    color: rgba(255, 250, 240, 0.82);
}

.footer-daily-link {
    display: block;

    color: inherit;
    text-decoration: none;

    -webkit-tap-highlight-color: transparent;
}

.footer-daily-link .footer-heart-divider {
    transition:
        transform 0.2s ease,
        opacity 0.2s ease;
}

.footer-daily-link p span {
    color: #d0a14c;
    font-weight: 500;

    border-bottom: 1px solid rgba(208, 161, 76, 0.35);
}

.footer-daily-link:active .footer-heart-divider {
    transform: scale(0.96);
    opacity: 0.8;
}

/* =========================================
   MALLEMOK LINKS
========================================= */

.footer-bird {
    position: absolute;
    z-index: 1;
    left: -0.6rem;
    bottom: 0.2rem;
    width: 7.5rem;
    height: auto;
    opacity: 0.17;
    pointer-events: none;
}


/* =========================================
   NA-LOGO RECHTS
========================================= */

.footer-na-logo {
    position: absolute;
    z-index: 2;
    right: 1rem;
    bottom: 1rem;
    width: 2.7rem;
    height: auto;
    opacity: 0.85;
}

/* =========================================
   ROUTE
========================================= */

.route-section {
    width: 100%;
    padding: 0 0.75rem;
    margin-bottom: 0.8rem;
    padding-inline:var(--content-padding);
}

.route-card{
    width:100%;
    margin:var(--content-gap) 0 0;
    overflow:hidden;

    background:var(--card-bg);
    border:1px solid var(--card-border);
    border-radius:var(--card-radius);
    box-shadow:var(--card-shadow);
    margin-left:0;
    margin-right:0;
}

.route-card-icon {
    width: 3rem;
    height: 3rem;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(16, 47, 77, 0.08);
    border-radius: 50%;

    background: rgba(255, 255, 255, 0.45);
    color: #102f4d;
}

.route-card-icon svg {
    width: 1.9rem;
    height: 1.9rem;

    stroke-width: 1.7;
}

.route-card-arrow {
    width: 1.3rem;
    height: 1.3rem;

    color: #d0a14c;
    stroke-width: 1.7;
}

/* =========================================
   ROUTE — MOBILE FIRST
========================================= */

.route-section,
.route-section * {
    box-sizing: border-box;
}

.route-section {
    width: 100%;
    margin: 0;
    padding: 0 var(--page-padding) 0.9rem;
}

.route-card {
    width: 100%;
    margin: 0;
    padding: 0.85rem;

    background: var(--surface-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);

    box-shadow: var(--shadow-card);
    overflow: hidden;
}


/* Kop */

.route-card-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;

    padding: 0.15rem 0.1rem 0.8rem;
}

.route-card-icon {
    width: 2.35rem;
    height: 2.35rem;

    flex: 0 0 2.35rem;

    display: flex;
    align-items: center;
    justify-content: center;

    color: var(--navy);
    background: var(--surface-soft);
    border: 1px solid var(--border);
    border-radius: 50%;
}

.route-card-icon svg {
    width: 1.35rem;
    height: 1.35rem;
    stroke-width: 1.7;
}

.route-card-copy {
    min-width: 0;
}

.route-card-label {
    display: block;
    margin-bottom: 0.18rem;

    font-family: var(--font-body);
    font-size: 0.62rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;

    color: var(--gold-dark);
}

.route-card-copy h2 {
    margin: 0 0 0.18rem;

    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.15;

    color: var(--navy);
}

.route-card-copy p {
    margin: 0;

    font-family: var(--font-body);
    font-size: 0.7rem;
    line-height: 1.35;

    color: var(--text);
}


/* Google Maps */

.route-map{
    display:block;

    width:100%;
    height:auto;

    margin:0;

    border:0;
    border-radius:0;
}

.route-map iframe {
    display: block;

    width: 100%;
    height: 100%;

    border: 0;
}


/* Routeknop */

.route-card > a.route-card-button {
    width: 100%;
    min-height: 2.8rem;
    margin: 0.65rem 0 0;
    padding: 0.75rem 0.9rem;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;

    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 600;
    line-height: 1.2;

    color: var(--ivory);
    background: var(--navy);

    border: 0;
    border-radius: calc(var(--radius) - 6px);

    text-decoration: none;
    transition: var(--transition);
    -webkit-tap-highlight-color: transparent;
}

.route-card > a.route-card-button:visited {
    color: var(--ivory);
}

.route-card > a.route-card-button:active {
    transform: scale(0.985);
}

.route-card-arrow {
    width: 1.1rem;
    height: 1.1rem;

    flex-shrink: 0;

    color: var(--gold);
    stroke-width: 1.8;
}

.route-header{
    padding:16px 14px 12px;
}

.route-button-wrap{
    padding:8px 10px 10px;
}

/* =========================================
   HORIZONTAL IMAGE SCROLL
========================================= */

.horizontal-image-section {
    position: relative;
    width: 100%;
}

.horizontal-image-sticky {
    position: sticky;
    top: 0;
    width: 100%;
    height: 100svh;
    overflow: hidden;
    background: var(--color-navy, #102f4d);
}

.horizontal-image {
    position: absolute;
    top: 0;
    left: 0;

    display: block;

    height: 100svh !important;
    width: auto;
    max-width: none !important;
    min-width: 0;

    object-fit: initial;

    transform: translate3d(0, 0, 0);
    will-change: transform;
}