/* Basisinstellingen om vreemde witruimtes te voorkomen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif; /* Klassiek lettertype */
    color: white;
}

/* --- Deel 1: Het paarse gedeelte --- */
.hero {
    height: 100vh; /* Cruciaal: Vult het volledige scherm */
    background-color: #3e3263; /* De donkerpaarse kleur uit je mockup */
    display: flex;
    align-items: center; /* Verticaal centreren */
    justify-content: center; /* Horizontaal centreren */
    padding: 40px;
}

.hero-content {
    display: flex;
    width: 100%;
    max-width: 1100px; /* Beperk breedte op grote schermen */
    gap: 60px; /* Ruimte tussen foto en tekst */
}

/* Foto-kant */
.photo-side {
    position: relative;
    flex: 1; /* Neemt de helft van de breedte in */
}

.portrait-photo {
    width: 100%;
    display: block;
    box-shadow: 10px 10px 0px rgba(0,0,0,0.2); /* Subtiele schaduw */
}

.signature-logo {
    font-family: 'Pacifico', cursive; /* Handgeschreven lettertype */
    font-size: 5rem;
    color: white;
    position: absolute;
    bottom: -30px;
    right: -40px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3); /* Zorgt dat het leesbaar is op de foto */
}

/* Woordenboek-tekst kant */
.definition-side {
    flex: 1; /* Neemt de andere helft van de breedte in */
    font-size: 1.3rem;
    line-height: 1.6;
    display: flex;
    flex-direction: column;
    justify-content: center; /* Tekst verticaal centreren */
    color: rgba(255,255,255,0.9); /* Iets minder hard wit */
}

.pronunciation, .grammar {
    margin-bottom: 10px;
}

.grammar em, ol li em {
    font-weight: normal;
}

/* --- Deel 2: Het scrollbare bio-gedeelte --- */
.bio-section {
    min-height: 100vh;
    background-image: url('photo-2.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
}

.bio-overlay {
    background: rgba(0, 0, 0, 0.4);
    width: 100%;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Houdt tekst boven en info onder */
    align-items: center;
}

.bio-text {
    /* Gebruik 'vw' (viewport width) zodat de tekst kleiner wordt als het scherm krimpt */
    font-size: clamp(1.2rem, 4vw, 1.8rem); 
    max-width: 800px;
    line-height: 1.5;
    margin-top: 40px;
    text-align: center;
}

/* Container voor alles onderaan */
.bottom-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1100px;
    margin-bottom: 20px;
}

.contact-info {
    margin-bottom: 15px; /* Ruimte tussen de tekst en de icoontjes */
    font-size: clamp(0.9rem, 3vw, 1.1rem);
}

.contact-info a {
    color: white;
    text-decoration: none;
    font-weight: bold;
    border-bottom: 1px solid white;
}

/* De iconen verspreid over de breedte */
.social-icons {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-icons img {
    width: clamp(25px, 5vw, 35px); /* Icoontjes schalen nu ook mee */
    filter: brightness(0) invert(1);
    transition: transform 0.2s;
}