﻿@import url('https://fonts.googleapis.com/css2?family=Fredoka:wght@400;500;600;700&family=Nunito:wght@400;600;700;800&display=swap');

/* RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Nunito', Arial, sans-serif;
    color: #2f2a24;
    background: #f7f4ee;
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, .nav-list a, .page-title, .footer-col h3 {
    font-family: 'Fredoka', Arial, sans-serif;
}

.lobster {
    font-family: 'Fredoka', Arial, sans-serif;
    font-size: 32px;
}

.Nunito {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 32px;
}


/* HEADER */

.site-header {
    background: linear-gradient(180deg, #10235c 0%, #162d73 100%);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 18px rgba(0,0,0,.18);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    flex-shrink: 0;
}

    .logo img {
        height: 82px;
        width: auto;
    }


/* NAVIGATION */

.main-nav {
    margin-left: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item,
.has-sub {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-list a {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 4px;
    letter-spacing: 0.01em;
    color: #ffffff;
    transition: color .2s ease, transform .2s ease;
}

    .nav-list a:hover {
        color: #ffd36b;
        transform: translateY(-1px);
    }

.has-sub > a::after {
    content: "▾";
    font-size: 11px;
    margin-left: 6px;
    margin-top: 2px;
    opacity: .8;
}


/* SUBMENU */

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 10px 0;
    background: #fffaf1;
    border: 2px solid #f1d18a;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
    z-index: 1000;
}

    .submenu ul {
        list-style: none;
    }

    .submenu li a {
        display: block;
        padding: 11px 18px;
        font-size: 15px;
        font-weight: 700;
        color: #24315f;
        transition: background .2s ease, color .2s ease;
    }

        .submenu li a:hover {
            background: #fff0c9;
            color: #b86b00;
        }

@media (min-width: 769px) {
    .has-sub:hover .submenu {
        display: block;
    }
}


/* MOBILE MENU */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {

    .header-inner {
        padding: 10px 16px;
        gap: 16px;
    }

    .logo img {
        height: 66px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        position: static;
    }

    .nav-list {
        position: absolute;
        top: 86px;
        left: 0;
        width: 100%;
        height: calc(100vh - 86px);
        padding: 30px 24px;
        background: #10235c;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        display: none;
        z-index: 2000;
        overflow-y: auto;
    }

        .nav-list.show {
            display: flex;
        }

        .nav-list li {
            width: 100%;
        }

        .nav-list a {
            width: 100%;
            justify-content: flex-start;
            font-size: 22px;
            padding: 8px 0;
        }

    .has-sub {
        display: block;
        width: 100%;
    }

    .submenu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        padding: 8px 0 8px 18px;
        margin-top: 2px;
        background: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .has-sub.open .submenu {
        display: block;
    }

    .submenu li a {
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        padding: 6px 0;
        opacity: .88;
        background: none;
    }

        .submenu li a:hover {
            color: #ffd36b;
            opacity: 1;
        }
}


/* PAGE HEADER / HERO */

.page-header {
    position: relative;
    height: 240px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,15,44,.24) 0%, rgba(8,15,44,.48) 100%);
}

.page-header-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.page-title {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.05;
    color: #fff8ea;
    text-shadow: 0 4px 14px rgba(0,0,0,.35);
}

.page-subtitle {
    margin-top: 10px;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff1bf;
    text-shadow: 0 2px 10px rgba(0,0,0,.28);
}

@media (max-width: 768px) {

    .page-header {
        height: 220px;
        min-height: 220px;
        padding: 30px 20px;
    }

    .page-title {
        font-size: 40px;
        line-height: 1.1;
    }

    .page-subtitle {
        font-size: 17px;
        line-height: 1.4;
        max-width: 320px;
        margin: 10px auto 0 auto;
    }
}


/* CONTENT */

.content-wrapper {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    flex: 1;
}

    .content-wrapper h2 {
        color: #10235c;
        font-size: 2.1em;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .content-wrapper h3 {
        color: #1a2b69;
        font-size: 1.5em;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .content-wrapper p {
        font-size: 18px;
        color: #413931;
        margin-bottom: 18px;
    }

    .content-wrapper img {
        border-radius: 12px;
    }


/* TEXT + IMAGE BLOK */

.text-img {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

    .text-img .txt {
        flex: 1;
    }

    .text-img .img {
        flex: 0 0 32%;
    }

    .text-img:has(.img) .txt {
        flex: 0 0 68%;
    }

    .text-img .img img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,.10);
    }

@media (max-width: 800px) {
    .text-img {
        flex-direction: column;
    }

        .text-img .img,
        .text-img:has(.img) .txt {
            flex: none;
            width: 100%;
        }
}


/* INTRO BLOK */

.intro-section {
    margin-top: 60px;
    margin-bottom: 20px;
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: #fffdf8;
    border: 2px solid #f0ddb0;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(16,35,92,.08);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.intro-left h2 {
    color: #10235c;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-left img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
}

.intro-right {
    color: #4b433c;
    font-size: 17px;
    line-height: 1.8;
}

    .intro-right p {
        margin-bottom: 16px;
    }

@media (max-width: 800px) {

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-container {
        padding: 24px;
        border-radius: 16px;
    }

    .intro-left h2 {
        font-size: 32px;
    }

    .intro-right {
        font-size: 16px;
    }
}


/* KNOPPEN */

.btn,
.button,
input[type=submit],
button.button-link {
    display: inline-block;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #f6b32a 0%, #e89511 100%);
    color: #ffffff;
    font-family: 'Fredoka', Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(232,149,17,.28);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

    .btn:hover,
    .button:hover,
    input[type=submit]:hover,
    button.button-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 18px rgba(232,149,17,.32);
        opacity: .98;
    }


/* FOOTER */

.main-footer {
    margin-top: auto;
    background: linear-gradient(180deg, #1a2562 0%, #152053 100%);
    color: #ffffff;
}

.footer-upper {
    padding: 55px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
    color: #fff2c6;
}

.footer-links {
    list-style: none;
    font-size: 16px;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ffffff;
        opacity: .92;
        transition: color .2s ease, opacity .2s ease;
    }

        .footer-links a:hover {
            color: #ffd36b;
            opacity: 1;
        }

.footer-logos img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 15px;
    background: #ffffff;
    padding: 8px;
    border-radius: 10px;
}

.footer-news a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-contact {
    list-style: none;
    font-size: 16px;
}

    .footer-contact li {
        margin-bottom: 12px;
    }

    .footer-contact i {
        margin-right: 10px;
        color: #ffd36b;
    }

.footer-bottom {
    text-align: center;
    padding: 18px;
    font-size: 14px;
    color: rgba(255,255,255,.88);
    border-top: 1px solid rgba(255,255,255,.12);
}


/* FOOTER RESPONSIVE */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .footer-upper {
        padding: 40px 20px;
    }

    .footer-logos a {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-logos img {
        width: 100%;
        max-width: none;
        height: auto;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* EXTRA ALGEMENE BLOKSTIJL */

.card-block {
    background: #fffdf8;
    border: 2px solid #f0ddb0;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(16,35,92,.08);
}


/* FORMULIEREN */

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e3d9c4;
    border-radius: 14px;
    background: #fffdf9;
    color: #2f2a24;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

    input[type=text]:focus,
    input[type=email]:focus,
    input[type=tel]:focus,
    input[type=password]:focus,
    textarea:focus,
    select:focus {
        border-color: #e7a51b;
        box-shadow: 0 0 0 4px rgba(231,165,27,.12);
    }

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #1f2c63;
}


/* KLEINE EXTRA RESPONSIVE TWEAKS */

@media (max-width: 768px) {

    .content-wrapper {
        margin: 35px auto;
    }

        .content-wrapper h2 {
            font-size: 1.8em;
        }

        .content-wrapper p {
            font-size: 17px;
        }
}




