@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;700;800;900&display=swap');

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

:root {
    --rood: #cc0000;
    --zwart: #1a1a1a;
    --wit: #ffffff;
    --grijs-licht: #f5f5f5;
    --grijs-tekst: #555;
    --max-breedte: 1100px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--zwart);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: var(--rood);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.container {
    max-width: var(--max-breedte);
    margin: 0 auto;
    padding: 0 20px;
}

/* ── Scroll offset for fixed nav ── */
[id] {
    scroll-margin-top: 80px;
}

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--wit);
    border-bottom: 3px solid var(--rood);
    z-index: 100;
    padding: 4px 0;
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    flex-shrink: 0;
}
.nav__logo img {
    height: auto;
    width: 200px;
    max-width: none;
}
@media (max-width: 1100px) {
    .nav__logo img { width: 170px; }
}
@media (max-width: 900px) {
    .nav__logo img { width: 150px; }
}
@media (max-width: 768px) {
    .nav__logo img { width: 160px; }
}

.nav__links {
    display: flex;
    list-style: none;
    gap: 24px;
}

.nav__links a {
    color: var(--zwart);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav__links a:hover {
    color: var(--rood);
    text-decoration: none;
}

.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav__hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--zwart);
    transition: transform 0.3s;
}

@media (max-width: 768px) {
    .nav__hamburger {
        display: flex;
    }

    .nav__links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--wit);
        flex-direction: column;
        padding: 16px 20px;
        gap: 12px;
        border-bottom: 3px solid var(--rood);
    }

    .nav__links.is-open {
        display: flex;
    }
}

/* ── Hero ── */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('../img/hero.jpg') center/cover no-repeat;
    padding: 120px 20px 60px;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
}

.hero__content {
    position: relative;
    text-align: center;
    color: var(--wit);
    max-width: 800px;
}

.hero__logo {
    max-width: 400px;
    margin: 0 auto 32px;
    filter: brightness(0) invert(1);
}

.hero__titel {
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 16px;
}

.hero__accent {
    color: #ff3333;
    font-weight: 900;
}

.hero__sub {
    font-size: 18px;
    opacity: 0.9;
    margin-bottom: 32px;
}

.hero__knop {
    display: inline-block;
    background: var(--rood);
    color: var(--wit);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 32px;
    border-radius: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}

.hero__knop:hover {
    background: #a00000;
    text-decoration: none;
}

@media (max-width: 768px) {
    .hero {
        min-height: 80vh;
        padding: 100px 16px 40px;
    }

    .hero__logo {
        max-width: 280px;
    }
}

/* ── Secties (gedeeld) ── */
.sectie {
    padding: 80px 0;
}

.sectie--grijs {
    background: var(--grijs-licht);
}

.sectie__titel {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 900;
    margin-bottom: 16px;
    color: var(--zwart);
}

.sectie__titel::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: var(--rood);
    margin-top: 12px;
}

.sectie__intro {
    font-size: 18px;
    line-height: 1.7;
    color: var(--grijs-tekst);
    max-width: 720px;
    margin-bottom: 40px;
}

/* ── Tijdlijn ── */
.tijdlijn {
    position: relative;
    padding-left: 32px;
    margin-bottom: 40px;
}

.tijdlijn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--rood);
}

.tijdlijn__item {
    position: relative;
    margin-bottom: 28px;
    padding-left: 16px;
}

.tijdlijn__item::before {
    content: '';
    position: absolute;
    left: -38px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rood);
    border: 3px solid var(--wit);
}

.tijdlijn__datum {
    font-weight: 800;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--rood);
    margin-bottom: 4px;
}

.tijdlijn__tekst {
    font-size: 16px;
    line-height: 1.6;
    color: var(--grijs-tekst);
}

/* ── Citaat ── */
.citaat {
    border-left: 4px solid var(--rood);
    padding: 20px 24px;
    background: var(--grijs-licht);
    border-radius: 0 8px 8px 0;
}

.citaat blockquote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 8px;
}

.citaat cite {
    font-size: 14px;
    font-weight: 600;
    color: var(--grijs-tekst);
    font-style: normal;
}

.citaat--groot {
    margin-top: 40px;
    padding: 40px 48px;
    background: var(--zwart);
    border-left: none;
    border-radius: 12px;
    text-align: center;
}

.citaat--groot blockquote {
    font-size: 26px;
    font-weight: 700;
    color: var(--wit);
    font-style: italic;
    margin-bottom: 16px;
}

.citaat--groot cite {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.65);
}

.citaat--klein {
    margin-top: 16px;
    padding: 14px 18px;
    border-left-width: 3px;
}

.citaat--klein blockquote {
    font-size: 15px;
    margin-bottom: 6px;
}

.citaat--klein cite {
    font-size: 13px;
}

/* ── Impact grid ── */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.impact-blok {
    background: var(--wit);
    padding: 32px 24px;
    border-radius: 8px;
    border-top: 4px solid var(--rood);
}

.impact-blok__icoon {
    font-size: 36px;
    margin-bottom: 12px;
}

.impact-blok__titel {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 8px;
}

.impact-blok p {
    font-size: 15px;
    line-height: 1.6;
    color: var(--grijs-tekst);
}

@media (max-width: 768px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Standpunten ── */
.standpunten-lijst {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.standpunt {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.standpunt__nummer {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: var(--rood);
    color: var(--wit);
    font-size: 24px;
    font-weight: 900;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.standpunt__inhoud h3 {
    font-size: 20px;
    font-weight: 800;
    margin-bottom: 6px;
}

.standpunt__inhoud p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--grijs-tekst);
}

/* ── Collectief ── */
.collectief-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.collectief-item {
    background: var(--wit);
    padding: 20px 16px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 15px;
    text-align: center;
    border-left: 4px solid var(--rood);
}

@media (max-width: 768px) {
    .collectief-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .collectief-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Nieuws ── */
.nieuws-lijst {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.nieuws-item {
    display: block;
    padding: 20px 24px;
    background: var(--grijs-licht);
    border-radius: 8px;
    border-left: 4px solid var(--rood);
    color: var(--zwart);
    transition: background 0.2s;
}

.nieuws-item:hover {
    background: #eaeaea;
    text-decoration: none;
}

.nieuws-item__datum {
    font-size: 13px;
    font-weight: 600;
    color: var(--rood);
    margin-right: 12px;
}

.nieuws-item__bron {
    font-size: 13px;
    font-weight: 600;
    color: var(--grijs-tekst);
}

.nieuws-item__titel {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    line-height: 1.5;
}

/* ── Documenten ── */
.documenten__kop {
    font-size: 22px;
    font-weight: 700;
    color: var(--rood);
    margin-bottom: 12px;
    text-align: center;
}

.documenten-lijst {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.document-item {
    display: block;
    padding: 20px 24px 20px 60px;
    background: #fff;
    border-radius: 8px;
    border-left: 4px solid var(--rood);
    color: var(--zwart);
    transition: background 0.2s;
    position: relative;
}

/* PDF-icoon links in het blok */
.document-item::before {
    content: "";
    position: absolute;
    left: 22px;
    top: 22px;
    width: 22px;
    height: 26px;
    background: var(--rood);
    -webkit-mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 28'><path d='M4 0h11l9 9v19H4z'/></svg>") no-repeat center / contain;
    mask: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 28'><path d='M4 0h11l9 9v19H4z'/></svg>") no-repeat center / contain;
}

.document-item:hover {
    background: #f4f4f4;
    text-decoration: none;
}

.document-item__meta {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--grijs-tekst);
}

.document-item__titel {
    display: block;
    margin-top: 6px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.5;
}

.document-item__omschrijving {
    display: block;
    margin-top: 4px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--grijs-tekst);
}

@media (max-width: 480px) {
    .document-item {
        padding: 18px 18px 18px 50px;
    }

    .document-item::before {
        left: 16px;
        top: 20px;
    }
}

/* ── Foto grid ── */
.foto-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.foto-item {
    overflow: hidden;
    border-radius: 8px;
    background: var(--wit);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: pointer;
}

.foto-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12);
}

.foto-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

.foto-item__tekst {
    padding: 10px 14px;
    font-size: 14px;
    color: var(--grijs-tekst);
    line-height: 1.4;
}

@media (max-width: 768px) {
    .foto-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .foto-item img {
        height: 180px;
    }
}

@media (max-width: 480px) {
    .foto-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Lightbox ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 2rem;
}

.lightbox.open {
    display: flex;
}

.lightbox img {
    max-width: 90vw;
    max-height: 80vh;
    border-radius: 8px;
    object-fit: contain;
}

.lightbox-tekst {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin-top: 12px;
    text-align: center;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    background: none;
    border: none;
    color: #fff;
    font-size: 2.5rem;
    cursor: pointer;
    line-height: 1;
}

/* ── Reacties ondertekenaars ── */
.reacties-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.reactie-item {
    background: var(--wit);
    border-radius: 12px;
    padding: 28px 30px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
}

.reactie-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.reactie-item::before {
    content: "\201C";
    position: absolute;
    top: 16px;
    left: 20px;
    font-size: 56px;
    font-family: Georgia, serif;
    color: var(--rood);
    opacity: 0.15;
    line-height: 1;
}

.reactie-item blockquote {
    font-size: 15px;
    font-style: italic;
    line-height: 1.7;
    color: var(--zwart);
    margin-bottom: 16px;
    padding-top: 8px;
}

.reactie-item cite {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: var(--rood);
    font-style: normal;
    padding-top: 12px;
    border-top: 2px solid var(--grijs-licht);
}

@media (max-width: 768px) {
    .reacties-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .reacties-grid {
        grid-template-columns: 1fr;
    }
}

/* ── Footer ── */
.footer {
    background: var(--zwart);
    color: var(--wit);
    padding: 60px 0 0;
}

.footer__inner {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.footer__info {
    max-width: 400px;
}

.footer__logo {
    height: 36px;
    width: auto;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer__info p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

.footer__contact h3 {
    font-size: 18px;
    font-weight: 800;
    margin-bottom: 8px;
}

.footer__contact p {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}

.footer__mail {
    color: var(--wit);
    font-weight: 700;
    font-size: 18px;
    border-bottom: 2px solid var(--rood);
    padding-bottom: 2px;
}

.footer__mail:hover {
    color: var(--rood);
    text-decoration: none;
}

.footer__onder {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding: 16px 0;
}

.footer__onder p {
    font-size: 13px;
    opacity: 0.5;
}

@media (max-width: 768px) {
    .sectie {
        padding: 48px 0;
    }

    .footer__inner {
        flex-direction: column;
    }
}

/* ── Petitie knop + teller in hero ── */
.hero__petitie {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 1rem;
    margin-top: 16px;
}

.hero__petitie .hero__knop {
    padding: 14px 32px;
    font-size: 15px;
    text-align: center;
}

@media (max-width: 480px) {
    .hero__petitie {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
}

.hero__knop--petitie {
    position: relative;
}

.badge {
    position: absolute;
    top: -14px;
    right: -14px;
    min-width: 32px;
    height: 32px;
    background: var(--wit);
    color: var(--rood);
    font-size: 0.85rem;
    font-weight: 900;
    border-radius: 999px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
    line-height: 1;
    white-space: nowrap;
}

/* ── Petitie pagina ── */
.hero--klein {
    min-height: 280px;
    max-height: 320px;
    background: url('../img/hero.jpg') center/cover no-repeat;
    padding: 100px 20px 40px;
}

.petitie-adressering {
    background: var(--grijs-licht);
    border-left: 4px solid var(--rood);
    padding: 1.5rem 2rem;
    margin-bottom: 2.5rem;
    border-radius: 0 4px 4px 0;
}

.petitie-adressering ul {
    list-style: none;
    margin: 0.5rem 0 1rem 0;
}

.petitie-adressering li::before {
    content: "- ";
}

.petitie-adressering li {
    margin-bottom: 0.25rem;
}

/* Petitie tekst */
.petitie-tekst {
    max-width: 800px;
    margin: 0 auto;
}

.petitie-tekst h3 {
    font-size: 1.3rem;
    margin: 2.5rem 0 0.75rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--rood);
    color: var(--zwart);
}

.petitie-tekst > p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grijs-tekst);
    margin-bottom: 1rem;
}

.petitie-punten {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin: 1.5rem 0 2rem;
}

.petitie-punt {
    background: var(--grijs-licht);
    padding: 1.75rem;
    border-radius: 8px;
    border-top: 3px solid var(--rood);
}

.petitie-punt h4 {
    color: var(--rood);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.petitie-punt p {
    font-size: 0.95rem;
    color: var(--grijs-tekst);
    line-height: 1.7;
}

.petitie-tekst .standpunten-lijst {
    margin-top: 1.5rem;
}

.petitie-juridisch {
    max-width: 800px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid #ddd;
    font-size: 0.9rem;
    color: var(--grijs-tekst);
}

.petitie-juridisch p {
    margin-bottom: 0.5rem;
}

/* ── Formulier ── */
.petitie-form {
    max-width: 640px;
    margin: 0 auto;
    background: var(--wit);
    padding: 2.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    border: 1px solid #e5e5e5;
}

.form-rij {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
}

.form-veld label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--zwart);
}

.form-optioneel {
    font-weight: 400;
    color: var(--grijs-tekst);
    font-size: 0.8rem;
}

.form-veld input,
.form-veld textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-family: inherit;
    font-size: 1rem;
    background: var(--grijs-licht);
    transition: border-color 0.2s, background 0.2s;
}

.form-veld input:focus,
.form-veld textarea:focus {
    outline: none;
    border-color: var(--rood);
    background: var(--wit);
}

.form-veld textarea {
    resize: vertical;
}

.form-veld--breed {
    margin-bottom: 1.25rem;
}

.form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-weight: 400;
    font-size: 0.9rem;
    cursor: pointer;
    line-height: 1.5;
    color: var(--grijs-tekst);
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 3px;
    flex-shrink: 0;
    accent-color: var(--rood);
}

.petitie-knop {
    width: 100%;
    border: none;
    cursor: pointer;
    font-family: inherit;
    font-size: 1.1rem;
    margin-top: 0.75rem;
    padding: 16px 32px;
}

.petitie-teller {
    text-align: center;
    margin-top: 2rem;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--rood);
}

@media (max-width: 768px) {
    .hero--klein {
        min-height: 200px;
        max-height: 240px;
        padding: 80px 16px 30px;
    }

    .petitie-punten {
        grid-template-columns: 1fr;
    }

    .form-rij {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .petitie-form {
        padding: 1.5rem;
    }
}

/* ── Aftelklok ── */
.aftelklok {
    margin: 2.5rem auto 0;
    max-width: 640px;
    background: rgba(204, 0, 0, 0.92);
    color: #fff;
    border-radius: 12px;
    padding: 1.5rem 1.5rem 1.25rem;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.35);
    text-align: center;
}

.aftelklok__kop {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 600;
}

.aftelklok__kop strong {
    font-weight: 900;
}

.aftelklok__cijfers {
    display: flex;
    justify-content: center;
    gap: 0.9rem;
    margin-bottom: 0.9rem;
}

.aftelklok__deel {
    background: rgba(0, 0, 0, 0.22);
    border-radius: 8px;
    padding: 0.75rem 0.9rem 0.6rem;
    min-width: 78px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.15rem;
}

.aftelklok__getal {
    display: block;
    font-size: 2.5rem;
    font-weight: 900;
    line-height: 1;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.02em;
}

.aftelklok__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.85;
    font-weight: 700;
}

.aftelklok__sub {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.95;
}

.aftelklok--voorbij .aftelklok__cijfers {
    display: none;
}

.aftelklok--voorbij .aftelklok__kop {
    font-size: 1.2rem;
    margin-bottom: 0;
}

@media (max-width: 600px) {
    .aftelklok {
        padding: 1.25rem 1rem 1rem;
    }
    .aftelklok__cijfers {
        gap: 0.5rem;
    }
    .aftelklok__deel {
        min-width: 62px;
        padding: 0.6rem 0.5rem 0.5rem;
    }
    .aftelklok__getal {
        font-size: 1.9rem;
    }
    .aftelklok__label {
        font-size: 0.68rem;
    }
    .aftelklok__kop {
        font-size: 0.95rem;
    }
    .aftelklok__sub {
        font-size: 0.85rem;
    }
}
