/* RESET */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* BODY MET ZIJKANT-GRADIENT */
body {
    font-family: "Inter", "Segoe UI", Arial, sans-serif;
    color: #0f172a;
    line-height: 1.7;

    /* WIT MIDDEN + DONKERBLAUW AAN ZIJKANTEN */
    background:
        linear-gradient(
            to right,
            #0f2537 0%,
            #ffffff 12%,
            #ffffff 88%,
            #0f2537 100%
        );
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* LANGUAGE SWITCH */
.language-switch {
    position: fixed;
    top: 24px;
    right: 32px;
    z-index: 100;
}

.language-switch button {
    background: #ffffff;
    border: 1px solid #cbd5e1;
    padding: 6px 14px;
    margin-left: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    border-radius: 20px;
}

/* HEADER */
.header {
    padding: 90px 0 40px;
    background-color: transparent;
}

.header-content {
    display: flex;
    justify-content: center;
}

/* GROTER LOGO */
.logo {
    max-width: 320px;   /* HIER IS DE VERGROTING */
    width: 100%;
}

/* HERO */
.hero {
    text-align: center;
    padding: 100px 0 120px;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 600;
    color: #173a56;
    margin-bottom: 24px;
}

.hero p {
    max-width: 760px;
    margin: 0 auto;
    color: #475569;
    font-size: 1.1rem;
}

/* SECTIONS */
.section {
    padding: 100px 0;
}

.section h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 60px;
    color: #173a56;
}

/* CARDS */
.cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 32px;
}

.card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.06);
}

.card h3 {
    margin-bottom: 14px;
    color: #f28c1b;
    font-size: 1.2rem;
}

/* CONTACT */
.contact {
    text-align: center;
    background: linear-gradient(
        to right,
        #0f2537 0%,
        #0b1e2d 50%,
        #0f2537 100%
    );
    color: #ffffff;
}

.contact h2 {
    color: #ffffff;
}

.contact a {
    color: #f28c1b;
    text-decoration: none;
    font-weight: 500;
}

/* FOOTER */
.footer {
    background: #0b1e2d;
    color: #cbd5e1;
    text-align: center;
    padding: 26px 0;
    font-size: 0.9rem;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.2rem;
    }

    .logo {
        max-width: 240px;
    }

    body {
        background: #ffffff; /* mobiel geen zijkant-gradient */
    }
}
