/* style.css | Versie 3 -- 2026-09-15 | .sectie-donker-centrering gefixt (specificiteitsbotsing met .sectie h2/p margin) */

:root {
    --navy: #1F1B42;
    --lightblue: #93C5D7;
    --wit: #ffffff;
    --grijs: #666666;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Nunito', Arial, sans-serif;
    color: var(--navy);
    background: var(--wit);
}

body.acceptatie {
    padding-top: 32px;
}

.acceptatie-balk {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #c0392b;
    color: #fff;
    text-align: center;
    font-weight: bold;
    padding: 6px 0;
    z-index: 100;
}

/* ============================================================
   HEADER
   ============================================================ */

.site-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.logo-link img {
    height: 40px;
    display: block;
}

.site-nav a {
    color: var(--navy);
    text-decoration: none;
    font-weight: 600;
    margin-left: 28px;
    font-size: 15px;
}

.site-nav a:hover {
    color: var(--lightblue);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
    background: var(--navy);
    color: var(--wit);
    text-align: center;
    padding: 64px 24px;
}

.hero h1 {
    font-size: clamp(28px, 6vw, 44px);
    font-weight: 700;
    margin: 0 0 16px;
    line-height: 1.2;
    overflow-wrap: break-word;
    word-break: break-word;
}

.hero-sub {
    color: var(--lightblue);
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 32px;
}

.hero-tekst {
    max-width: 640px;
    margin: 0 auto 32px;
    font-size: 16px;
    line-height: 1.6;
}

/* ============================================================
   SECTIES
   ============================================================ */

.sectie {
    max-width: 800px;
    margin: 0 auto;
    padding: 56px 24px;
    text-align: center;
}

.sectie h2 {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 24px;
}

.sectie p {
    font-size: 16px;
    line-height: 1.7;
    margin: 0 0 16px;
}

.sectie-projecten {
    text-align: left;
}

.sectie-projecten h2 {
    text-align: center;
}

.project {
    margin-bottom: 28px;
}

.project h3 {
    font-size: 19px;
    margin: 0 0 8px;
}

.sectie-donker {
    background: #f4f6f8;
    max-width: 100%;
    padding: 56px 24px;
}

.sectie-donker > h2,
.sectie-donker > p {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   FOOTER
   ============================================================ */

.site-footer {
    text-align: center;
    padding: 32px 24px;
    color: var(--grijs);
    font-size: 13px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 600px) {
    .site-header {
        flex-direction: column;
        gap: 12px;
    }
    .hero h1 {
        font-size: 32px;
    }
    .hero-sub {
        font-size: 18px;
    }
}
