/* Layout afbeelding + tekst */
.over-container {
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
    justify-content: center;
    flex-wrap: wrap;
}

/* Profielfoto */
.Profile-Erik-picture {
    width: 400px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;

    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.6),
        0 5px 15px rgba(0, 0, 0, 0.4);
}

/* Tekst card */
.over-tekst {
    max-width: 900px; 
}

.over-tekst p {
    padding: 2rem; /* 🔥 extra ruimte van de rand */
    backdrop-filter: blur(10px);
    border-radius: 12px;
    box-shadow:
        0 15px 30px rgba(0, 0, 0, 0.65),
        0 5px 15px rgba(0, 0, 0, 0.45);
}

/* Mobiel */
@media (max-width: 500px) {
    .over-container {
        flex-direction: column;   /* onder elkaar */
        align-items: center;      /* centreren */
        text-align: center;
        padding: 20px;
    }

    .Profile-Erik-picture {
        width: 80%;               /* afbeelding kleiner */
        max-width: 250px;
        height: auto;
        margin-bottom: 20px;
    }

    .over-tekst {
        width: 100%;
    }

    .over-tekst p {
        font-size: 16px;
        line-height: 1.6;
    }
}
