/* Minder Regels Meer Service - Stijlblad */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
    --kleur-basis: #1B2A4A;
    --kleur-basis-licht: #243660;
    --kleur-accent: #E17A2D;
    --kleur-accent-hover: #C4651E;
    --kleur-groen: #2B8C6A;
    --kleur-groen-zacht: #E9F5F0;
    --kleur-achtergrond: #FAFAF7;
    --kleur-wit: #FFFFFF;
    --kleur-tekst: #2A2D32;
    --kleur-tekst-licht: #5F6672;
    --kleur-rand: #DDD9D2;
    --kleur-lichtgrijs: #F0EDE8;
    --font-kop: 'Libre Baskerville', Georgia, serif;
    --font-tekst: 'DM Sans', system-ui, sans-serif;
    --breedte-max: 1140px;
    --afronding: 6px;
    --schaduw-klein: 0 1px 3px rgba(27,42,74,0.08);
    --schaduw-middel: 0 4px 12px rgba(27,42,74,0.1);
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    font-family: var(--font-tekst);
    color: var(--kleur-tekst);
    background-color: var(--kleur-achtergrond);
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--kleur-basis);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--kleur-accent);
}

h1, h2, h3, h4 {
    font-family: var(--font-kop);
    line-height: 1.3;
    color: var(--kleur-basis);
}

h1 { font-size: 2.15rem; margin-bottom: 0.6em; }
h2 { font-size: 1.55rem; margin-bottom: 0.5em; }
h3 { font-size: 1.2rem; margin-bottom: 0.4em; }

p {
    margin-bottom: 1em;
}

/* --- Toegankelijkheid: skip link --- */

.skip-naar-inhoud {
    position: absolute;
    left: -9999px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 9999;
    background: var(--kleur-basis);
    color: var(--kleur-wit);
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    text-decoration: none;
    border-radius: 0 0 var(--afronding) 0;
}

.skip-naar-inhoud:focus {
    left: 0;
    top: 0;
    width: auto;
    height: auto;
    overflow: visible;
}

/* --- Wrapper --- */

.pagina-wrapper {
    max-width: var(--breedte-max);
    margin: 0 auto;
    padding: 0 1.25rem;
}

/* --- Bovenbalk --- */

.bovenbalk {
    background-color: var(--kleur-basis);
    border-bottom: 3px solid var(--kleur-accent);
}

.bovenbalk__inner {
    max-width: var(--breedte-max);
    margin: 0 auto;
    padding: 0 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 70px;
}

.bovenbalk__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    flex-shrink: 0;
}

.bovenbalk__logo-afbeelding {
    height: 40px;
    width: auto;
}

.bovenbalk__logo-tekst {
    font-family: var(--font-kop);
    font-size: 1.05rem;
    color: var(--kleur-wit);
    font-weight: 700;
    line-height: 1.2;
    white-space: nowrap;
}

.bovenbalk__logo-tekst span {
    color: var(--kleur-accent);
}

/* --- Navigatie --- */

.navigatie {
    display: flex;
    align-items: center;
}

.navigatie__lijst {
    list-style: none;
    display: flex;
    gap: 0.25rem;
}

.navigatie__item {}

.navigatie__link {
    display: block;
    padding: 0.5rem 0.9rem;
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: var(--afronding);
    transition: background 0.2s ease, color 0.2s ease;
}

.navigatie__link:hover,
.navigatie__link--actief {
    background-color: rgba(255,255,255,0.12);
    color: var(--kleur-wit);
}

.navigatie__mobiel-knop {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    color: var(--kleur-wit);
}

.navigatie__mobiel-knop svg {
    display: block;
}

/* --- Hero sectie --- */

.hero {
    background: linear-gradient(135deg, var(--kleur-basis) 0%, var(--kleur-basis-licht) 100%);
    padding: 3.5rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    right: -50px;
    top: -50px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(225,122,45,0.15) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero__inner {
    max-width: var(--breedte-max);
    margin: 0 auto;
    padding: 0 1.25rem;
    position: relative;
    z-index: 1;
}

.hero__kop {
    font-family: var(--font-kop);
    font-size: 2.5rem;
    color: var(--kleur-wit);
    margin-bottom: 0.75rem;
    max-width: 700px;
}

.hero__kop em {
    font-style: normal;
    color: var(--kleur-accent);
}

.hero__tekst {
    color: rgba(255,255,255,0.8);
    font-size: 1.1rem;
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.hero__partners {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.55);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.hero__partners-scheiding {
    width: 40px;
    height: 1px;
    background: rgba(255,255,255,0.25);
}

/* --- Sectie generiek --- */

.sectie {
    padding: 3rem 0;
}

.sectie--grijs {
    background-color: var(--kleur-lichtgrijs);
}

.sectie__kop {
    display: flex;
    align-items: baseline;
    gap: 1rem;
    margin-bottom: 1.75rem;
}

.sectie__kop h2 {
    margin-bottom: 0;
}

.sectie__kop-lijn {
    flex: 1;
    height: 1px;
    background-color: var(--kleur-rand);
}

.sectie__kop-link {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--kleur-accent);
    text-decoration: none;
    white-space: nowrap;
}

.sectie__kop-link:hover {
    text-decoration: underline;
}

/* --- Introductie blok --- */

.intro {
    padding: 2.75rem 0;
}

.intro__raster {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.intro__kolom p {
    color: var(--kleur-tekst-licht);
    font-size: 0.98rem;
}

.intro__kolom p:last-child {
    margin-bottom: 0;
}

/* --- Thema kaarten --- */

.thema-raster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}

.thema-kaart {
    background: var(--kleur-wit);
    border: 1px solid var(--kleur-rand);
    border-radius: var(--afronding);
    padding: 1.5rem;
    transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.thema-kaart:hover {
    box-shadow: var(--schaduw-middel);
    border-color: transparent;
}

.thema-kaart__icoon {
    width: 44px;
    height: 44px;
    background: var(--kleur-groen-zacht);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.thema-kaart__icoon svg {
    width: 22px;
    height: 22px;
    color: var(--kleur-groen);
}

.thema-kaart__titel {
    font-family: var(--font-kop);
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: var(--kleur-basis);
}

.thema-kaart__tekst {
    font-size: 0.88rem;
    color: var(--kleur-tekst-licht);
    line-height: 1.6;
    margin-bottom: 0;
}

/* --- Kengetallen balk --- */

.kengetallen {
    background-color: var(--kleur-basis);
    padding: 2rem 0;
}

.kengetallen__raster {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.kengetallen__item {}

.kengetallen__getal {
    font-family: var(--font-kop);
    font-size: 2.2rem;
    color: var(--kleur-accent);
    font-weight: 700;
    line-height: 1.1;
}

.kengetallen__label {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-top: 0.35rem;
    line-height: 1.4;
}

/* --- Praktijkvoorbeelden blok --- */

.voorbeeld-raster {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.25rem;
}

.voorbeeld-kaart {
    background: var(--kleur-wit);
    border-radius: var(--afronding);
    border: 1px solid var(--kleur-rand);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.voorbeeld-kaart__label {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--kleur-groen);
    background: var(--kleur-groen-zacht);
    padding: 0.2rem 0.6rem;
    border-radius: 3px;
    margin-bottom: 0.75rem;
    align-self: flex-start;
}

.voorbeeld-kaart__titel {
    font-family: var(--font-kop);
    font-size: 1rem;
    margin-bottom: 0.5rem;
    color: var(--kleur-basis);
}

.voorbeeld-kaart__titel a {
    text-decoration: none;
    color: inherit;
}

.voorbeeld-kaart__titel a:hover {
    color: var(--kleur-accent);
}

.voorbeeld-kaart__tekst {
    font-size: 0.88rem;
    color: var(--kleur-tekst-licht);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 0;
}

/* --- CTA blok --- */

.cta-blok {
    background: var(--kleur-groen);
    border-radius: var(--afronding);
    padding: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    margin: 3rem 0;
}

.cta-blok__tekst h2 {
    color: var(--kleur-wit);
    font-size: 1.4rem;
    margin-bottom: 0.35rem;
}

.cta-blok__tekst p {
    color: rgba(255,255,255,0.85);
    font-size: 0.95rem;
    margin-bottom: 0;
}

.cta-blok__knop {
    display: inline-block;
    background: var(--kleur-wit);
    color: var(--kleur-groen);
    padding: 0.7rem 1.75rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: var(--afronding);
    white-space: nowrap;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.cta-blok__knop:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    color: var(--kleur-groen);
}

/* --- Voettekst --- */

.voettekst {
    background-color: var(--kleur-basis);
    color: rgba(255,255,255,0.7);
    padding: 2.5rem 0 1.5rem;
}

.voettekst__raster {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2.5rem;
    margin-bottom: 2rem;
}

.voettekst__kolom {}

.voettekst__logo-tekst {
    font-family: var(--font-kop);
    font-size: 1rem;
    color: var(--kleur-wit);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.voettekst__logo-tekst span {
    color: var(--kleur-accent);
}

.voettekst__beschrijving {
    font-size: 0.85rem;
    line-height: 1.6;
    max-width: 340px;
    margin-bottom: 0;
}

.voettekst__kop {
    font-family: var(--font-kop);
    font-size: 0.9rem;
    color: var(--kleur-wit);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.voettekst__lijst {
    list-style: none;
}

.voettekst__lijst li {
    margin-bottom: 0.35rem;
}

.voettekst__lijst a {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.2s ease;
}

.voettekst__lijst a:hover {
    color: var(--kleur-wit);
}

.voettekst__onder {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 1.25rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.78rem;
    color: rgba(255,255,255,0.45);
}

.voettekst__onder a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
}

.voettekst__onder a:hover {
    color: var(--kleur-wit);
}

.voettekst__rechts {
    display: flex;
    gap: 1.25rem;
}

/* --- Cookie melding --- */

.cookie-melding {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--kleur-basis);
    color: rgba(255,255,255,0.85);
    padding: 1rem 1.5rem;
    z-index: 1000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    display: none;
}

.cookie-melding--zichtbaar {
    display: block;
}

.cookie-melding__inner {
    max-width: var(--breedte-max);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.cookie-melding__tekst {
    font-size: 0.85rem;
    line-height: 1.5;
    flex: 1;
}

.cookie-melding__tekst a {
    color: var(--kleur-accent);
}

.cookie-melding__knoppen {
    display: flex;
    gap: 0.5rem;
    flex-shrink: 0;
}

.cookie-melding__knop {
    padding: 0.45rem 1rem;
    border-radius: var(--afronding);
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    font-family: var(--font-tekst);
    transition: opacity 0.2s ease;
}

.cookie-melding__knop:hover {
    opacity: 0.85;
}

.cookie-melding__knop--akkoord {
    background: var(--kleur-accent);
    color: var(--kleur-wit);
}

.cookie-melding__knop--weiger {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.25);
}

/* --- Responsive --- */

@media (max-width: 900px) {
    .intro__raster {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .thema-raster {
        grid-template-columns: 1fr 1fr;
    }

    .kengetallen__raster {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .voorbeeld-raster {
        grid-template-columns: 1fr;
    }

    .voettekst__raster {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .cta-blok {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 680px) {
    .bovenbalk__inner {
        flex-wrap: wrap;
        padding: 0.75rem 1.25rem;
    }

    .navigatie__lijst {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 0.5rem 0 0.25rem;
        gap: 0;
    }

    .navigatie__lijst--open {
        display: flex;
    }

    .navigatie__link {
        padding: 0.6rem 0;
        border-radius: 0;
    }

    .navigatie__mobiel-knop {
        display: block;
    }

    .hero__kop {
        font-size: 1.75rem;
    }

    .hero__tekst {
        font-size: 1rem;
    }

    .thema-raster {
        grid-template-columns: 1fr;
    }

    h1 { font-size: 1.65rem; }
    h2 { font-size: 1.3rem; }

    .cookie-melding__inner {
        flex-direction: column;
        text-align: center;
    }
}

/* Nieuws timeline */
.nieuws-timeline {
    margin-top: 2rem;
}

.nieuws-timeline__item {
    border-left: 3px solid var(--kleur-accent);
    padding: 0 0 2.5rem 1.75rem;
    position: relative;
}

.nieuws-timeline__item::before {
    content: '';
    width: 13px;
    height: 13px;
    border-radius: 50%;
    background: var(--kleur-accent);
    position: absolute;
    left: -8px;
    top: 0.35rem;
}

.nieuws-timeline__item:last-child {
    border-left-color: transparent;
    padding-bottom: 0;
}

.nieuws-timeline__datum {
    font-size: 0.85rem;
    color: var(--kleur-tekst-licht);
    margin-bottom: 0.35rem;
}

.nieuws-timeline__item h3 {
    font-family: var(--lettertype-kop);
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    line-height: 1.35;
}

.nieuws-timeline__item h3 a {
    color: var(--kleur-primair);
    text-decoration: none;
}

.nieuws-timeline__item h3 a:hover {
    color: var(--kleur-accent);
}

.nieuws-timeline__item p {
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    line-height: 1.65;
}

.nieuws-timeline__lees-meer {
    display: inline-block;
    margin-top: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--kleur-accent);
    text-decoration: none;
}

.nieuws-timeline__lees-meer:hover {
    text-decoration: underline;
}

/* Nieuws overzicht (indexpagina) */
.nieuws-overzicht {
    margin-top: 1.5rem;
}

.nieuws-item {
    padding: 1.5rem 0;
    border-bottom: 1px solid #e0e0e0;
}

.nieuws-item:first-child {
    padding-top: 0;
}

.nieuws-item h2 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.nieuws-item h2 a {
    color: var(--kleur-primair);
    text-decoration: none;
}

.nieuws-item h2 a:hover {
    color: var(--kleur-accent);
}

.nieuws-item p {
    font-size: 0.95rem;
    line-height: 1.6;
}
