:root {
    --bg: #f6f8fb;
    --card: #ffffff;
    --text: #0f2544;
    --muted: #52617b;
    --brand: #1f6feb; /* primair */
    --accent: #ff7a1a; /* werkgevers */
    --accent-2: #16a34a; /* info */
    --radius: 18px;
    --shadow: 0 10px 30px rgba(15,37,68,.08);
    --ring: 0 0 0 4px rgba(31,111,235,.15);
}

* {
    box-sizing: border-box
}

html, body {
    height: 100%
}

body {
    margin: 0;
    font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: var(--text);
    background: radial-gradient(1200px 600px at 15% 0%, #e9f1ff 0%, transparent 60%), radial-gradient(1200px 600px at 85% -10%, #e6fff3 0%, transparent 60%), var(--bg);
}

/* Wrapper wordt gebruikt voor de homepage-layout */
.wrapper {
    min-height: 100dvh;
    display: flex;
    flex-direction: column
}

    /* ---------- GE-SCOPEDE HOMEPAGE LAYOUT ---------- */

    .wrapper header {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 20px 20px;
        max-width: 1100px;
        margin: 0 auto;
    }

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 800;
    letter-spacing: .2px
}

.brand__logo {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--brand), #6aa8ff);
    box-shadow: var(--shadow)
}

.brand__sub {
    font-weight: 700;
    opacity: .8
}

header a.nav {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    opacity: .85
}

    header a.nav:focus-visible {
        outline: none;
        box-shadow: var(--ring);
        border-radius: 10px
    }

/* Alleen main binnen .wrapper centreren (homepage) */
/*.wrapper main {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 32px 20px
}*/

.hero {
    width: min(100%, 1100px);
    background: var(--card);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 48px);
    overflow: hidden;
    position: relative;
    text-align: center; /* tekst centreren in hero */
}

    .hero::after {
        content: "";
        position: absolute;
        inset: auto -60px -60px auto;
        width: 240px;
        height: 240px;
        background: radial-gradient(120px 120px at 50% 50%, rgba(31,111,235,.08), transparent 70%);
        pointer-events: none
    }

.title {
    font-size: clamp(28px, 4.2vw, 46px);
    margin: 0 0 6px 0;
    line-height: 1.08
}

.date {
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 0 0 22px 0;
    color: var(--muted);
    font-weight: 600
}

.intro {
    max-width: 900px;
    font-size: clamp(15px, 1.5vw, 18px);
    line-height: 1.7;
    color: #293a55;
    margin: 0 auto 28px; /* centreren via auto aan beide kanten */
}

.cta-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px
}

.cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 18px 20px;
    border-radius: 16px;
    text-decoration: none;
    color: #fff;
    font-weight: 700;
    letter-spacing: .2px;
    box-shadow: var(--shadow);
    transition: transform .12s ease, box-shadow .12s ease, opacity .12s ease
}

    .cta svg {
        width: 22px;
        height: 22px;
        flex: 0 0 22px
    }

    .cta:focus-visible {
        outline: none;
        box-shadow: var(--ring)
    }

    .cta:hover {
        transform: translateY(-2px)
    }

    .cta:active {
        transform: translateY(0)
    }

.cta--werkgevers {
    background: linear-gradient(135deg, var(--accent), #ff9b52)
}

.cta--studenten {
    background: linear-gradient(135deg, var(--brand), #6aa8ff)
}

.cta--info {
    background: linear-gradient(135deg, var(--accent-2), #6ee7b7)
}

.partners {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #eef2f7
}

.logos {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center
}

    .logos img {
        height: 36px;
        filter: grayscale(100%);
        opacity: .85
    }

        .logos img:hover {
            filter: none;
            opacity: 1
        }

/* Footer alleen binnen wrapper beperken qua breedte (homepage) */
.wrapper footer {
    max-width: 1100px;
    margin: 18px auto 26px;
    padding: 0 20px;
    color: var(--muted);
    font-size: 14px;
}

/* Responsiveness */
@media (max-width: 900px) {
    .cta-row {
        grid-template-columns: 1fr
    }

    .logos {
        justify-content: center
    }
}

.logo-container {
    flex-shrink: 0;
    display: flex; /* logo centreren */
    justify-content: center;
    margin-bottom: 16px;
}

.site-logo {
    height: 70px;
    width: auto;
    display: block;
}

.centered-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 18px;
    align-items: center;
}

    .centered-logos img {
        height: 36px;
        filter: grayscale(100%);
        opacity: .85;
    }

        .centered-logos img:hover {
            filter: none;
            opacity: 1;
        }

.header-spacer {
    flex: 1;
}

.contact-link {
    display: flex;
    align-items: center;
    gap: 4px;
}

.icon-contact {
    width: 14px;
    height: 14px;
}

@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
        animation: none !important
    }
}

/* ----------------------------------------------------------
   MOBILE FIXES – Centreert de content op kleine schermen
   (alleen relevant voor de homepage/CTA's)
----------------------------------------------------------- */

@media (max-width: 600px) {

    .wrapper {
        width: 100%;
        max-width: 100%;
        padding: 0 1rem;
        margin: 0 auto;
    }

    /* CTA knoppen mooi gecentreerd en onder elkaar */
    .cta-row {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: center;
    }

    .cta {
        width: 100%;
        max-width: 380px;
        text-align: center;
        justify-content: center;
    }
}
