/* style.css | Versie 1 -- 2026-09-14 | Eerste versie -- huisstijl overgenomen van de bestaande WordPress-site */

: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;
}

/* ============================================================
   KNOPPEN
   ============================================================ */

.knop-primair {
    display: inline-block;
    background: var(--lightblue);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
    cursor: pointer;
}

.knop-primair:hover {
    opacity: 0.9;
}

/* ============================================================
   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 > * {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ============================================================
   FORMULIER
   ============================================================ */

.sectie-formulier {
    text-align: left;
    max-width: 520px;
}

.sectie-formulier h1 {
    text-align: center;
    font-size: 32px;
}

.veld {
    margin-bottom: 20px;
}

.veld label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
}

.veld input,
.veld textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-family: inherit;
    font-size: 15px;
}

.veld textarea {
    min-height: 120px;
    resize: vertical;
}

.veld-hint {
    display: block;
    font-size: 12px;
    color: var(--grijs);
    margin-top: 4px;
    text-align: right;
}

/* ============================================================
   MELDINGEN
   ============================================================ */

.meldingen {
    max-width: 520px;
    margin: 16px auto 0;
    padding: 0 24px;
}

.melding {
    padding: 10px 14px;
    border-radius: 4px;
    margin-bottom: 8px;
    font-size: 14px;
}

.melding-fout {
    background: #fbeaea;
    color: #a3342a;
}

/* ============================================================
   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;
    }
}
