﻿/* RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}


.lobster {
    font-family: 'Lobster', cursive;
    font-size:32px;
}

.Nunito {
    font-family: 'Nunito', cursive;
    font-size: 32px;
}

body {
    font-family: 'Nunito',Arial,sans-serif;
    color: #333;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}


/* HEADER */

.site-header {
    background: #fff;
    color: white;
    position: sticky;
    top: 0;
    z-index: 1000;

}

.site-header {
    border-bottom: 8px solid #9b323c;
}

.header-inner {
    max-width: 1200px;
    margin: auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 60px;
}




/* NAVIGATION */

/* NAV BAR */

.nav-list {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center; /* zorgt dat alles verticaal gelijk staat */
}

/* menu items */

.nav-item,
.has-sub {
    position: relative;
    display: flex;
    align-items: center;
}

/* links */

.nav-list a {
    display: flex;
    align-items: center;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #9b323c;
    padding: 18px 6px;
    letter-spacing: 0.01em;
    transition: color .2s, opacity .2s;
}

    .nav-list a:hover {
        color: #7f2831;
    }

.has-sub > a::after {
    content: "▾";
    color: #9b323c;
    font-size: 20px;
    margin-left: 6px;
    margin-top: 2px;
    opacity: .75;
}


/* SUBMENU */

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 230px;
    border-radius: 6px;
    box-shadow: 0 8px 22px rgba(0,0,0,.15);
    padding: 10px 0;
    z-index: 1000;
}

    .submenu ul {
        list-style: none;
    }

    .submenu li a {
        display: block;
        padding: 10px 18px;
        font-size: 15px;
        font-weight: 500;
        color: #333;
    }

        .submenu li a:hover {
            background: #f2f5fb;
        }


/* dropdown */

@media (max-width:768px) {

    .nav-toggle {
        display: block;
        color: #9b323c;
    }

    .main-nav {
        position: static;
    }

    .nav-list {
        flex-direction: column;
        background: #9b323c;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        display: none;
        padding: 40px 30px;
        gap: 22px;
        z-index: 2000;
    }

        .nav-list.show {
            display: flex;
        }

        .nav-list li {
            width: 100%;
        }

        .nav-list a {
            font-family: 'Nunito', Arial, sans-serif;
            font-size: 20px;
            font-weight: 700;
            color: white;
            padding: 10px 0;
            justify-content: flex-start;
            letter-spacing: 0.01em;
        }

            .nav-list a:hover {
                color: rgba(255,255,255,0.9);
            }

    .has-sub > a::after {
        color: white;
        opacity: .8;
    }

    .submenu {
        position: static;
        display: none;
        width: 100%;
        background: none;
        box-shadow: none;
        border-radius: 0;
        padding: 8px 0 10px 18px;
        margin-top: 2px;
    }

    .has-sub.open .submenu {
        display: block;
    }

    .submenu li a {
        font-family: 'Nunito', Arial, sans-serif;
        color: white;
        font-size: 16px;
        font-weight: 600;
        padding: 6px 0;
        opacity: 0.85;
    }

        .submenu li a:hover {
            opacity: 1;
            background: none;
        }
}

/* MOBILE MENU */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    color: #9b323c;
    cursor: pointer;
    line-height: 1;
}


@media (min-width:769px) {
    .has-sub:hover .submenu {
        display: block;
    }
}

@media (max-width:768px) {

    .nav-toggle {
        display: block;
    }
    .main-nav {
        position: static;
    }

    .nav-list {
        flex-direction: column;
        background: #9b323c;
        position: absolute;
        top: 90px;
        left: 0;
        width: 100%;
        height: calc(100vh - 90px);
        display: none;
        padding: 40px 30px;
        gap: 22px; /* minder ruimte tussen items */
        z-index: 2000;
    }

        .nav-list.show {
            display: flex;
        }

        /* menu links uitlijnen */

        .nav-list li {
            width: 100%;
        }

        .nav-list a {
            font-size: 20px;
            padding: 10px 0;
            justify-content: flex-start; /* links uitlijnen */
        }


    .has-sub {
        display: block;
        width: 100%;
    }

    .submenu {
        position: static;
        width: 100%;
        padding: 8px 0 10px 18px;
    }


    .submenu {
        position: static;
        display: none;
        width: 100%;
        background: none;
        box-shadow: none;
        border-radius: 0;
        padding: 8px 0 10px 18px;
        margin-top: 2px;
    }

    .has-sub.open .submenu {
        display: block;
    }

    .submenu li a {
        color: white;
        font-size: 16px;
        padding: 6px 0;
        opacity: 0.85;
    }

        .submenu li a:hover {
            opacity: 1;
        }
}



/* CONTENT */

.content-wrapper {
    max-width: 1200px;
    width: 100%;
    margin: 40px auto;
    padding: 0 20px;
    flex: 1;
}

.text-img {
    display: block;
    width: 100%;
}

    .text-img .txt {
        display: block;
        width: 100% !important;
        max-width: none !important;
        margin: 0 !important;
    }

    .text-img ul,
    .text-img p,
    .text-img h2,
    .content-wrapper ul,
    .content-wrapper p {
        max-width: none !important;
    }

@media(max-width:800px) {

    .text-img {
        flex-direction: column;
    }
}


/* FOOTER */

.main-footer {
    background: #9b323c;
    color: white;
    margin-top: auto;
}

.footer-upper {
    padding: 50px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
    font-size: 14px;
}

    .footer-links li {
        margin-bottom: 8px;
    }

    .footer-links a {
        color: white;
        opacity: .9;
    }

        .footer-links a:hover {
            opacity: 1;
            text-decoration: underline;
        }

.footer-logos img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 15px;
    background: white;
    padding: 8px;
    border-radius: 6px;
}

.footer-news a {
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.footer-contact {
    list-style: none;
    font-size: 14px;
}

    .footer-contact li {
        margin-bottom: 10px;
    }

    .footer-contact i {
        margin-right: 8px;
        color: #83d0f5;
    }

.footer-bottom {
    text-align: center;
    padding: 18px;
    font-size: 13px;
    border-top: 1px solid rgba(255,255,255,.15);
}


/* MOBILE FOOTER */



@media(max-width:900px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:600px) {

    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* INTRO BLOK */

.intro-section {
    margin-top: 60px;
}

.intro-container {
    max-width: 1000px;
    margin: auto;
    padding: 40px;
    background: white;
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.intro-left h2 {
    color: #20286d;
    font-size: 38px;
    margin-bottom: 20px;
}

.intro-left img {
    width: 100%;
    border-radius: 6px;
}

.intro-right {
    color: #555;
    font-size: 15px;
    line-height: 1.7;
}

    .intro-right p {
        margin-bottom: 16px;
    }

@media(max-width:800px) {

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-container {
        padding: 25px;
    }
}

.page-header {
    position: relative;
    height: 340px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.page-header-inner {
    position: relative;
    text-align: center;
    color: white;
    z-index: 2;
}

.page-title {
    font-family: 'Nunito', cursive;
    font-size: 64px;
    margin: 0;
}

.page-subtitle {
    font-family: 'Nunito', cursive;
    margin-top: 10px;
    font-size: 20px;
}

@media (max-width:768px) {

    .page-header {
        min-height: 260px;
        padding: 40px 20px;
        text-align: center;
    }

    .page-title {
        font-size: 36px;
        line-height: 1.2;
        margin-bottom: 10px;
    }

    .page-subtitle {
        font-size: 16px;
        line-height: 1.5;
        max-width: 320px;
        margin: auto;
    }
}
