﻿: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 {
    min-height: 100dvh;
    display: flex;
    flex-direction: column
}


/* Header */

.site-header {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start; /* links uitlijnen */
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 20px;
}

.title-block {
    margin-top: 6px; 
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.title {
    margin: 0;
    font-size: 2.8rem;
    font-weight: 800;
}

.date {
    margin: 4px 0 0;
    font-size: 1.4rem;
    opacity: 0.8;
}



.logo-container {
    flex-shrink: 0
}

.site-logo {
    height: 90px;
    width: auto;
    display: block
}
.brand-container {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Titel verticaal centreren */
}




.brand {
    font-weight: 800;
    letter-spacing: .2px ;
    line-height: 1.1;
}

.brand__sub {
    font-weight: 700;
    opacity: .8
}

.main-nav {
    display: flex;
    gap: 16px;
    margin-left: auto
}

.nav-link {
    color: var(--text);
    text-decoration: none;
    font-weight: 600;
    opacity: .9
}

    .nav-link:hover {
        opacity: 1
    }

.contact-link {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-left: 16px;
    color: var(--text);
    text-decoration: none;
    font-weight: 600
}

.icon-contact {
    width: 14px;
    height: 14px
}


/* Mobile nav */
.hamburger {
    display: none;
    margin-left: 12px;
    width: 42px;
    height: 42px;
    border-radius: 10px;
    border: 1px solid #e2e8f0;
    background: #fff
}

    .hamburger span {
        display: block;
        width: 20px;
        height: 2px;
        background: #0f2544;
        margin: 5px auto
    }

.mobile-nav {
    display: none;
    background: #fff;
    box-shadow: var(--shadow);
    margin: 0 auto;
    max-width: 1200px;
    border-radius: 14px;
    padding: 8px
}

.mobile-link {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    color: var(--text)
}

.mobile-link {
    display: block;
    padding: 12px 14px;
    text-decoration: none;
    color: var(--text)
}


/* Main */
.main {
    flex: 1;
    display: grid;
    place-items: center;
    padding: 32px 20px
}
.hero-banner {
    height: 170px;
    border-radius: 18px 18px 0 0;
    background-image: url('/images/bannerfoto.jpg');
    background-size: cover;
    background-position: center;
    border: 1px solid rgba(0,0,0,.06);
    border-bottom: none;
}
.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
}

    .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: -12px 0 0 0;
    line-height: 1.08
}

.date {
    font-size: clamp(18px, 2.2vw, 24px);
    margin: 0 0 0 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 0 28px 0
}


/* CTA's */
.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
}

    .cta svg {
        width: 22px;
        height: 22px;
        flex: 0 0 22px
    }

    .cta:hover {
        transform: translateY(-2px)
    }

.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 */
.partners {
    margin-top: 28px;
    padding-top: 18px;
    border-top: 1px solid #eef2f7
}

.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
        }


/* Pagina-secties */
.page-section {
    width: min(100%, 1100px);
    background: var(--card);
    border-radius: calc(var(--radius) + 6px);
    box-shadow: var(--shadow);
    padding: clamp(24px, 4vw, 48px);
}

.page-title {
    margin: 0 0 12px 0
}


/* Footer */
.site-footer {
    max-width: 1200px;
    margin: 18px auto 26px;
    padding: 0 20px;
    color: var(--muted);
    font-size: 14px
}


/* Responsive */
@media (max-width: 900px) {
    .main-nav {
        display: none
    }

    .hamburger {
        display: block
    }

    .mobile-nav {
        display: block
    }

    .cta-row {
        grid-template-columns: 1fr
    }
    /* Zorg dat woorden mogen afbreken i.p.v. buiten beeld te lopen */
    .site-header .title {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

 
        .site-header {
            flex-direction: column; 
            align-items: center; 
            text-align: center;
            gap: 12px;
        }

        .title-block {
            align-items: center;
            margin-top: 0;
        }

        .site-logo {
            height: 60px; /* iets kleiner */
        }

        .site-header .title {
            font-size: 1.8rem; /* kleiner zodat het past */
            line-height: 1.05;
            margin: 0;
        }

        .site-header .date {
            font-size: 1.1rem;
            margin-top: 6px;
        }
    

}
