/*
    File        : style.css
    Version     : 3.0.0
    Date        : 2026-03-26

    Remarks / Changelog
    -------------------
    2026-03-26 - v3.0.0
    - Volledige nieuwe stylesheet in duidelijk meer DNS-achtige richting
    - Brede blauwe header met prominenter logo links
    - Klassiek corporate menu rechts
    - Actieve menu-indicatie
    - HTML en CSS opnieuw volledig op elkaar afgestemd
    - Mobiele weergave behouden via hamburger-menu

    Older changes
    -------------
    - Diverse eerdere stijlen vervangen wegens mismatch of te moderne uitstraling
*/

/* Basis */
html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f3f5f7;
    color: #152942;
    line-height: 1.6;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header */
.site-header {
    background: linear-gradient(180deg, #4b91cf 0%, #4387c4 100%);
    border-top: 2px solid #7fb0dc;
    border-bottom: 1px solid #3c78ac;
}

.header-inner {
    min-height: 158px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    position: relative;
}

.site-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex: 0 0 auto;
}

.site-logo img {
    display: block;
    width: auto;
    height: 138px;
    margin-left: -10px; /* visuele correctie i.v.m. transparante linkerrand logo */
}

/* Navigatie */
.site-nav {
    display: flex;
    align-items: stretch;
    justify-content: flex-end;
    gap: 0;
    margin-left: auto;
    flex-wrap: nowrap;
}

.site-nav a {
    color: #ffffff;
    text-decoration: none;
    font-size: 15px;
    line-height: 1;
    padding: 21px 16px;
    display: flex;
    align-items: center;
    font-weight: normal;
    white-space: nowrap;
}

.site-nav a:hover {
    background: rgba(0, 0, 0, 0.10);
}

.site-nav a.is-active {
    background: #24354f;
    color: #ffffff;
}

/* Hamburger */
.menu-toggle {
    display: none;
    width: 46px;
    height: 46px;
    border: 1px solid rgba(255, 255, 255, 0.45);
    background: transparent;
    border-radius: 4px;
    padding: 0;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #ffffff;
    margin: 5px auto;
}

/* Hero */
.hero {
    padding: 78px 0 62px;
    background: #f3f5f7;
}

.hero-kicker {
    margin: 0 0 14px;
    font-size: 18px;
    color: #152942;
}

.hero h1 {
    margin: 0 0 18px;
    font-size: 68px;
    line-height: 1.05;
    font-weight: bold;
    color: #132a49;
    letter-spacing: -1px;
    max-width: 980px;
}

.hero-text {
    margin: 0 0 28px;
    font-size: 18px;
    color: #5c6d81;
    max-width: 920px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 20px;
    text-decoration: none;
    font-size: 15px;
    font-weight: bold;
    transition: all 0.2s ease;
}

.btn-primary {
    background: #285b98;
    border: 1px solid #285b98;
    color: #ffffff;
}

.btn-primary:hover {
    background: #204978;
    border-color: #204978;
}

.btn-secondary {
    background: transparent;
    border: 1px solid #bbc4cf;
    color: #6a1b9a;
}

.btn-secondary:hover {
    background: #ffffff;
    border-color: #285b98;
    color: #285b98;
}

/* Secties */
.section {
    padding: 58px 0;
}

.section h2 {
    margin: 0 0 28px;
    font-size: 34px;
    line-height: 1.15;
    color: #132a49;
}

/* Diensten */
.cards {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.card {
    background: #ffffff;
    border: 1px solid #d4dbe3;
    padding: 24px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.card:hover {
    border-color: #89add0;
    box-shadow: 0 10px 22px rgba(20, 44, 73, 0.08);
}

.card h3 {
    margin: 0 0 10px;
    font-size: 22px;
    color: #132a49;
}

.card p {
    margin: 0;
    font-size: 16px;
    color: #5c6d81;
}

/* Over */
.section-alt {
    background: #eef2f6;
    border-top: 1px solid #dfe5ec;
    border-bottom: 1px solid #dfe5ec;
}

.narrow {
    max-width: 920px;
}

.narrow p {
    margin: 0 0 16px;
    font-size: 17px;
    color: #485a71;
}

/* CTA */
.section-cta {
    padding-top: 52px;
    padding-bottom: 52px;
}

.cta-panel {
    background: #e7edf4;
    text-align: center;
    padding: 54px 28px;
}

.cta-panel h2 {
    margin-bottom: 14px;
}

.cta-panel p {
    margin: 0 0 24px;
    font-size: 17px;
    color: #5c6d81;
}

/* Contact */
#contact p {
    margin: 0 0 10px;
    font-size: 17px;
}

#contact a {
    color: #285b98;
    text-decoration: none;
}

#contact a:hover {
    text-decoration: underline;
}

/* Footer */
.site-footer {
    background: #ffffff;
    border-top: 1px solid #d4dbe3;
}

.footer-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    color: #68788a;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 980px) {
    .header-inner {
        min-height: 112px;
    }

    .site-logo img {
        height: 96px;
        margin-left: -6px;
    }

    .menu-toggle {
        display: inline-block;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 112px;
        right: 24px;
        width: 240px;
        background: #ffffff;
        border: 1px solid #d8e0e8;
        box-shadow: 0 12px 24px rgba(16, 35, 58, 0.12);
        flex-direction: column;
        align-items: stretch;
        z-index: 1001;
    }

    .site-nav.open {
        display: flex;
    }

    .site-nav a {
        color: #16273e;
        padding: 14px 16px;
        border-bottom: 1px solid #edf1f5;
        background: #ffffff;
    }

    .site-nav a:last-child {
        border-bottom: none;
    }

    .site-nav a.is-active {
        background: #f4f8fc;
        color: #285b98;
    }

    .site-nav a:hover {
        background: #f4f8fc;
        color: #285b98;
    }

    .hero {
        padding: 56px 0 50px;
    }

    .hero h1 {
        font-size: 44px;
        letter-spacing: 0;
    }

    .hero-text {
        font-size: 17px;
    }

    .cards {
        grid-template-columns: 1fr;
    }

    .footer-inner {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        padding-top: 18px;
        padding-bottom: 18px;
    }
}

/* EOF :: style.css */