/* ===================== LAYOUT.CSS ===================== */

/* Footer en algemene box-sizing */
footer, footer p {
    line-height: 1.4;
    letter-spacing: .3px;
}

*, footer {
    box-sizing: border-box;
}

/* Algemene kleuren */
.nav-left, body, html, p {
    color: #fff;
}

/* ===================== NAVIGATION ===================== */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #001f4d;
    border-bottom: 3px solid gold;
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 2000;
    padding: 0 20px;
    height: 60px;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
}

.nav-left {
    justify-content: center;
    flex: 1;
    gap: 15px;
    font-size: 16px;
}

.nav-right {
    gap: 15px;
}

.nav-right a {
    color: #fff;
    text-decoration: none;
    padding: 15px 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: .3s;
    font-size: 18px;
}

.nav-right a:hover {
    background: gold;
    color: #000;
    border-radius: 4px;
    padding: 10px 12px;
}

.mobile-icons, .nav-logo {
    display: none;
}

/* ===================== RESPONSIVE NAV ===================== */
@media (max-width: 768px) {
    .nav-logo {
        display: block;
        height: 190px;
        width: auto;
        margin: 120px 0 0 -48px;
    }

    .logo, .nav-left {
        display: none;
    }
}

@media (max-width: 980px) {
    .nav-left {
        display: none !important;
    }

    .mobile-icons {
        display: flex !important;
        gap: 15px;
        align-items: center;
        margin: 0 15px;
        color: #fff !important;
    }

    .mobile-icons i {
        font-size: 20px;
        color: #fff !important;
    }

    .mobile-icons a {
        text-decoration: none;
    }
}

@media (max-width: 968px) and (orientation: portrait) {
    .mobile-icons {
        margin-top: 20px;
    }
}

@media (max-width: 378px) and (orientation: portrait) {
    .mobile-icons {
        display: none !important;
    }
}

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    cursor: pointer;
}

.hamburger div {
    width: 100%;
    height: 3px;
    background: #fff;
}

/* Logo */
.logo {
    position: absolute;
    top: 70px;
    left: 20px;
    width: 300px;
    height: auto;
    z-index: 1000;
}

@media (max-width: 992px) {
    .logo {
        width: 250px;
    }
}

@media (max-width: 768px) {
    .nav-right a {
        font-size: 15px;
        padding: 10px;
        border-bottom: 2px solid gold;
    }

    .hamburger {
        display: flex;
        margin: 0 5px 0 auto;
    }

    .nav-left, .nav-right {
        display: none;
    }

    .nav-right {
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 20px;
        background: #001f4d;
        border: 2px solid gold;
        padding: 10px;
        border-radius: 4px;
    }

    .hamburger, .nav-right.show {
        display: flex;
    }

    .nav-right a:last-child {
        border-bottom: none;
    }
}

@media (min-width: 769px) {
    #navMenu a[href="#vca"] {
        display: none;
    }
}

/* ===================== FOOTER ===================== */
footer {
    background-color: #001f4d;
    color: gold;
    width: 100%;
    padding: 20px;
    box-sizing: border-box;
    font-size: .9375rem;
    position: relative;
}

footer::before {
    content: "";
    display: block;
    width: 100%;
    height: 3px;
    background-color: gold;
    position: absolute;
    top: 0;
    left: 0;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-center, .footer-left, .footer-right {
    flex: 1 1 250px;
    min-width: 200px;
}

footer h3 {
    font-size: 1.0625rem;
    margin-bottom: 6px;
    letter-spacing: .5px;
}

.footer-email, .footer-link {
    color: gold;
    text-decoration: none;
}

.footer-email:hover, .footer-link:hover {
    text-decoration: underline;
}

footer i {
    margin-right: 8px;
}

.adres, .postcode {
    margin: 0;
}

footer p {
    margin: 4px 0;
    font-size: .9375rem;
}

footer, footer a, footer h3, footer p, footer span {
    font-weight: 400;
}

/* ===================== RESPONSIVE FOOTER ===================== */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
        margin-top: 20px;
    }

    .footer-center, .footer-left, .footer-right {
        min-width: 100%;
        flex: 1 1 100%;
        width: 100%;
        max-width: 100%;
    }

    footer {
        font-size: 1rem;
        padding: 60px 15px 80px;
        margin-top: 0 !important;
        position: relative;
        top: -180px;
    }

    footer p {
        font-size: 1rem;
        line-height: 1.5;
    }

    .footer-container {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    footer a, footer h3, footer p {
        word-wrap: break-word;
        overflow-wrap: break-word;
        white-space: normal;
    }

    body, footer {
        background-color: #001f4d;
    }
}

/* ===================== OVERIGE GLOBAL STIJLEN ===================== */
* {
    padding: 0;
}

body, html {
    font-family: Lato, sans-serif;
    line-height: 1.5;
    background: #002366;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
}

body {
    padding-top: 0;
}

section {
    padding: 60px 20px;
    scroll-margin-top: 70px;
    text-align: center;
}

h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    font-weight: 700;
}

p {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Voorkom selecteren / draggen van body en afbeeldingen */
body, img {
    user-select: none;
    -webkit-user-drag: none;
    -webkit-touch-callout: none;
}
