.over-ons-wrapper {
    color: white;
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 20px;
    position: relative;
}

/* Hoofdcontainer: links tekst, rechts afbeelding */
.over-ons-container {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 80px;
    padding: 0 35px;
}

/* Linker kolom */
.over-ons-links {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

/* Elk tekstblok */
.over-ons-item {
    display: flex;
    flex-direction: column;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blok-nummer {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blok-titel {
    font-size: 40px;
    font-weight: 700;
    font-family: 'Josefin Sans', sans-serif;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Wanneer item actief is (in beeld) */
.over-ons-item.active .blok-titel {
    font-size: 40px;
    transform: scale(1.05);
}

.over-ons-item.active .blok-nummer {
    font-size: 40px;
    transform: scale(1.05);
}

/* Wanneer item niet actief is */
.over-ons-item:not(.active) {
    opacity: 0.6;
}

.over-ons-item:not(.active) .blok-titel {
    font-size: 40px;
}

.over-ons-item:not(.active) .blok-nummer {
    font-size: 40px;
}

@media (max-width: 699px) {
    .over-ons-item:not(.active) .blok-titel,
    .over-ons-item:not(.active) .blok-nummer,
    .over-ons-item.active .blok-nummer,
    .over-ons-item.active .blok-titel {
        font-size: 30px;
    }

    .blok-tekst {
        font-size: 18px !important;
    }
}



.blok-tekst {
    line-height: 1.3;
    padding-top: 22px;
    font-size: 24px;
    font-weight: 300;
    font-family: 'Josefin Sans', sans-serif;
}

/* Rechter kolom: afbeelding */
.over-ons-rechts {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
	margin-top: 90px;
}

.over-ons-rechts img {
    width: 100%;
    max-width: 800px;
    object-fit: contain;
	border-radius: 20px;
}

/* Achtergrond logo */
.page-id-19 .over-ons-wrapper::before {
    content: "";
    position: absolute;
    top: 11%;
    right: 47%;
    transform: translate(-40%, -50%) rotate(-15deg);
    width: 900px;
    height: 900px;
    background-image: url('/wp-content/uploads/2025/10/cropped-4ef3a4d48633272748c803a0fe0a6a5fcbbb64a3.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    opacity: 0.2;
    pointer-events: none; 
    z-index: -1;
    filter: blur(5px);
}

/* Responsive */
@media (max-width: 1300px) {
    .over-ons-container {
        flex-direction: column;
        align-items: center;
        text-align: start;
        gap: 60px;
    }

    .over-ons-links {
        align-items: center;
    }

    .over-ons-links br {
        display: none;
    }

    .over-ons-item {
        max-width: 90%;
    }

    .over-ons-rechts {
        justify-content: center;
        width: 100%;
    }

    .over-ons-rechts img {
        height: auto;
        max-width: 90%;
        padding-top: 0;
    }
}

@media (max-width: 946px) {
    .simple-hero {
        height: 550px;
    }
}

@media (max-width: 535px) {
    .hero-titel {
    font-size: 40px;
    }

    .hero-tekst {
        font-size: 20px;
    }

    .simple-hero {
        height: 600px;
    }
}