/* Algemene stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.nav-links a.active {
    background-color: rgba(255, 255, 255, 0.2);
}

body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1.6;
    background-color: #ffffff;
}

/* Container voor consistente breedte en centrering */
.container {
    width: 90%;
    max-width: 1100px;
    margin: 2rem auto;
    padding: 1rem;
}

/* Hoofdtitel */
h2 {
    font-size: 2.5rem;
    color: #0a154c;
    font-family: "DM Sans", sans-serif;
    text-align: center;
    margin-bottom: 3rem;
    margin-top: 3rem;
}



/* Sectie blokken */
.section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.section div {
    background: #ffffff;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}


h3 {
    font-size: 2.2rem;
    color: #0a154c;
    margin-bottom: 1rem;
}

.schematekst p {
    justify-content: center;
    align-items: center;
    text-align: center;
    font-size: 1.2rem; /* Verhoogt de leesbaarheid */
    line-height: 1.6; /* Maakt de tekst prettiger leesbaar */
    margin-bottom: 1rem; /* Ruimte tussen de paragrafen */
    color: #333; /* Neutrale donkere kleur */
}

.schematekst2 {
    margin-bottom: 5rem;
}

p {
    font-size: 1.1rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Open Water Sectie */
.open-water-container {
    background: #ffffff;
    padding: 2rem;
    margin-top: 3rem;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    margin-bottom: 1.5rem;
}

/* Alleen toepassen op de Open Water-sectie */
.open-water-container .open-water-content {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: flex-start;
}

.open-water-container .open-water-text {
    flex: 2;
}

.open-water-container .open-water-carousel {
    flex: 1;
    overflow-x: auto;
    white-space: nowrap;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
}

.open-water-container .carousel {
    display: flex;
    gap: 1rem;
}

.open-water-container .carousel-slide {
    flex: 0 0 auto;
    width: 100%; /* Zorg ervoor dat de afbeeldingen de volledige breedte van de container gebruiken */
    height: 100%; /* Zorg ervoor dat de afbeeldingen zich ook verticaal aanpassen */
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    scroll-snap-align: center;
}

.open-water-container .carousel-slide img {
    width: 80%; /* Zorg ervoor dat de afbeelding de volledige breedte vult */
    height: 80%; /* Zorg ervoor dat de afbeelding de volledige hoogte vult */
    object-fit: cover; /* Zorg ervoor dat de afbeelding proportioneel wordt geschaald zonder vervorming */
    border-radius: 8px
}
/* Media Query voor kleinere schermen */
@media (max-width: 768px) {
    .open-water-container .open-water-content {
        flex-direction: column; /* Zet de carousel onder de tekst */
        align-items: center; /* Zorg ervoor dat de items gecentreerd zijn */
    }

    .open-water-container .open-water-carousel {
        width: 100%; /* Laat de carousel de volledige breedte gebruiken */
        margin-top: 2rem; /* Geef wat ruimte tussen de tekst en de carousel */
    }

    .open-water-container .carousel-slide {
        width: 100%; /* Zorg ervoor dat de slides de volledige breedte van de container gebruiken */
    }

/* Footer algemene stijl */
.footer {
    background: #0a154c;
    color: white;
    padding: 3rem 0;
    clear: both; /* Zorgt ervoor dat de footer altijd onder de secties komt */
}

/* Footer container met grid layout */
.footer-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    width: 90%;
    max-width: 1200px;
    margin: auto;
}

/* Footer logo styling */
.footer-logo {
    text-align: center;
}

.footer-logo-image {
    width: 220px;
    height: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    font-size: 1rem;
    color: #aaa;
}

/* Footer link styling */
.footer-links,
.footer-socials,
.footer-contact {
    text-align: left;
}

.footer-links h4,
.footer-socials h4,
.footer-contact h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #fff;
    font-family: "DM Sans", sans-serif;
}

.footer-links ul,
.footer-socials ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li,
.footer-socials ul li {
    margin-bottom: 0.5rem;
}

.footer-links ul li a,
.footer-socials ul li a {
    color: #aaa;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links ul li a:hover,
.footer-socials ul li a:hover {
    color: #fff;
}

/* Footer contact informatie */
.footer-contact p {
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #aaa;
}

/* Footer onderaan */
.footer-bottom {
    text-align: center;
    padding: 1rem 0;
    font-size: 0.9rem;
    border-top: 1px solid #333;
    margin-top: 2rem;
    margin-bottom: -3rem;
    color: #aaa;
}




/* Responsief voor mobiele schermen */
@media (max-width: 768px) {
    .section {
        grid-template-columns: 1fr;
    }

    h2 {
        font-size: 2.4rem;
    }

    h3 {
        font-size: 1.8rem;
    }

    p {
        font-size: 1rem;
    }
}}

