/* Afbeelding links, tekst + locatie rechts */
.afbeelding-links-titel-tekst-en-locatie {
    padding: 160px 35px 0;
    background: transparent;
}

@media (max-width: 768px) {
    .afbeelding-links-titel-tekst-en-locatie {
        padding: 80px 35px 0px;
    }
}

.afbeelding-blok-container {
    display: flex;
    align-items: flex-start;
    gap: 50px;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap; /* zorgt voor responsive breekpunt */
}

.blok-afbeelding {
    flex: 1;
    min-width: 300px;
}

.blok-afbeelding img {
    height: 648px;
    border-radius: 40px;
    display: block;
    object-fit: cover;
    max-width: 100%;
}

.blok-tekst {
    flex: 1;
    max-width: 550px;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Verticaal centreren */
    gap: 20px;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
}

.blok-tekst h2 {
    font-size: 40px;
    font-weight: 600;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
}

.blok-tekst p {
    font-size: 20px;
    font-weight: 300;
    line-height: 1.3;
    margin: 0;
    font-family: 'Josefin Sans', sans-serif;
}

.locatie-lijst {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.locatie-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.locatie-item img {
    width: 49px;
    height: 49px;
}

.locatie-item .adres,
.locatie-item .postcode {
    font-size: 22px;
    font-weight: 500;
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
}

.adres-postcode {
    display: flex;
    flex-direction: column;
    gap: 2px;
}


.locatie-item .adres-postcode {
    display: flex;
    flex-direction: row;
    gap: 10px;
}

.adres-postcode-wrapper a {
    color: #fff;
}


@media (max-width: 1400px) {
    .afbeelding-blok-container {
        flex-direction: column;
        gap: 30px;
    }

    .blok-tekst {
        min-width: 70%;
        padding: 0;
    }

    .blok-tekst h2 {
        text-align: center;
        font-size: 32px;
    }

    .blok-tekst p,
    .locatie-item {
        text-align: center;
        justify-content: center;
    }
 
    .adres-postcode {
        flex-direction: column;
        gap: 2px;
    }
}

@media (max-width: 1060px) {
    .blok-tekst {
        min-width: 100%;
    }

    .blok-tekst h2 {
        text-align: start;
    }

    .blok-tekst p {
        text-align: start;
    }

    .locatie-item {
        text-align: start;
        justify-content: start;
    }
}


@media (max-width: 600px) {
        .blok-afbeelding img {
        width: 100%;
        height: auto;
        border-radius: 20px;
        object-fit: cover;
    }
}

/* Extra responsive voor schermen kleiner dan 460px */
@media (max-width: 460px) {
    .afbeelding-blok-container {
        flex-direction: column;
        gap: 20px;
        margin: 0 auto;
    }

    .blok-afbeelding,
    .blok-tekst {
        min-width: 100%;
    }

    .blok-tekst h2 {
        text-align: start;
    }

    .blok-tekst p,
    .locatie-item {
        display: flex;
        align-items: center; /* zorgt dat tekst en afbeelding netjes op één lijn staan */
        gap: 8px; /* afstand tussen afbeelding en tekst */
        text-align: start;
        justify-content: flex-start; /* voorkomt dat ze uit elkaar gaan */
    }

    .adres-postcode {
        flex-direction: column;
        gap: 2px;
    }

    .locatie-item .adres,
    .locatie-item .postcode {
        font-size: 17px;
    }
}
