/* ============================================================
   aboutme.css
   Paginaspecifieke stijlen voor de About Me pagina.
   Bouwt voort op de gedeelde stijlen in style.css.
============================================================ */

/* ============================================================
   ABOUT HERO: grote paginatitel bovenaan
============================================================ */

/* Hero sectie gecentreerd met minimale hoogte */
.aboutHero {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 40vh;
    padding: 6rem 2rem 3rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Beige ovaal als decoratieve achtergrondvorm achter de titel */
.aboutHero::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80vw;
    height: 65vh;
    background-color: #f0eedc;
    border-radius: 50%;
    z-index: 0;
}

/* Titel boven het ovaal uitsteken */
.aboutHeroTitel {
    display: flex;
    flex-direction: column;
    line-height: 1;
    gap: 0.1em;
    position: relative;
    z-index: 1;
}

/* "ABOUT" in grote vette blokletters */
.aboutHeroTitelBold {
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-weight: 800;
    font-size: clamp(5rem, 15vw, 12rem);
    letter-spacing: -0.02em;
    color: #111;
    text-transform: uppercase;
}

/* "Me" in sierlijk blauw schrift */
.aboutHeroTitelScript {
    font-family: "sloop-script-two", sans-serif;
    font-weight: 400;
    font-size: clamp(12rem, 10vw, 10rem);
    color: #0000cc;
    position: relative;
    top: -5rem;
    left: 5rem;
}

/* ============================================================
   ABOUT PROFIEL: foto links en tekst rechts
============================================================ */

/* Profielsectie met maximale breedte gecentreerd */
.aboutProfiel {
    padding: 2rem 2rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
}

/* Twee kolommen: foto links, tekst rechts */
.aboutProfielRaster {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
}

/* Afbeelding container links */
.aboutProfielAfbeelding {
    margin: 0;
}

/* Profielfoto vult de container */
.aboutProfielFoto {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 2 / 3;
    object-fit: cover;
    object-position: center top;
}

/* Tekstblok rechts naast de foto */
.aboutProfielTekst {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding-top: 0.5rem;
}

/* Alinea stijl in het tekstblok */
.aboutProfielTekst p {
    font-family: "acumin-pro", sans-serif;
    font-size: clamp(0.95rem, 1.5vw, 1.1rem);
    line-height: 1.75;
    color: #111;
    margin: 0;
}

/* ============================================================
   SECTIE TITEL: herbruikbare titel voor meerdere secties
============================================================ */

/* Titel met groot en sierlijk schrift naast elkaar */
.sectieTitel {
    display: flex;
    align-items: baseline;
    gap: 0.3em;
    margin-bottom: 3rem;
}

/* Groot vet woord zoals "MY" */
.sectieTitelBold {
    font-family: Arial, Helvetica, sans-serif;
    font-weight: 800;
    font-size: clamp(3rem, 8vw, 6rem);
    text-transform: uppercase;
    letter-spacing: -0.02em;
    color: #111;
    line-height: 1;
}

/* Sierlijk woord zoals "Skills" in blauw */
.sectieTitelScript {
    font-family: "sloop-script-two", sans-serif;
    font-weight: 400;
    font-size: clamp(4rem, 5vw, 6rem);
    color: #0000cc;
    line-height: 1;
    margin-right: 5rem;
}

/* ============================================================
   ABOUT VAARDIGHEDEN: tegels met nummer, naam en omschrijving
============================================================ */

/* Vaardigheden sectie met maximale breedte */
.aboutVaardigheden {
    padding: 4rem 2rem 6rem;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
}

/* Beige ovaal als decoratieve achtergrondvorm achter de tegels */
.aboutVaardigheden::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -10%;
    transform: translateY(-50%);
    width: 55vw;
    height: 50vh;
    background-color: #f0eedc;
    border-radius: 50%;
    z-index: 0;
}

/* Inhoud boven het ovaal uitsteken */
.aboutVaardighedenRaster,
.aboutVaardigheden > .sectieTitel {
    position: relative;
    z-index: 1;
}

/* Tegels naast elkaar in een raster */
.aboutVaardighedenRaster {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

/* Elke vaardighedentegel met een lijn bovenaan */
.aboutVaardighedenTegel {
    border-top: 2px solid #111;
    padding-top: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

/* Groot nummer linksboven in de tegel */
.aboutVaardighedenNummer {
    font-family: "acumin-pro-extra-condensed", sans-serif;
    font-weight: 800;
    font-size: 3rem;
    color: #bbb;
    line-height: 1;
}

/* Naam van de vaardigheid */
.aboutVaardighedenNaam {
    font-family: "playfair-display", serif;
    font-style: italic;
    font-size: 1.5rem;
    font-weight: 400;
    color: #111;
    margin: 0;
}

/* Korte beschrijving van de vaardigheid */
.aboutVaardighedenOmschrijving {
    font-family: "acumin-pro", sans-serif;
    font-size: 0.95rem;
    line-height: 1.65;
    color: #555;
    margin: 0;
}

/* ============================================================
   ACTIEVE NAVIGATIELINK: markeer de huidige pagina
============================================================ */

/* Huidige pagina krijgt een onderstreping in de navigatie */
.navActief {
    text-decoration: underline;
    text-underline-offset: 4px;
}

/* ============================================================
   RESPONSIVE: aanpassingen voor tablet en mobiel
============================================================ */

@media (max-width: 768px) {

    /* Profielraster: foto en tekst onder elkaar op mobiel */
    .aboutProfielRaster {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    /* Vaardigheidstegels: één kolom op mobiel */
    .aboutVaardighedenRaster {
        grid-template-columns: 1fr;
    }

    /* Hero iets compacter op mobiel */
    .aboutHero {
        min-height: 30vh;
        padding: 5rem 1.5rem 2rem;
    }
}

@media (min-width: 480px) and (max-width: 768px) {

    /* Vaardigheidstegels: twee kolommen op kleine tablet */
    .aboutVaardighedenRaster {
        grid-template-columns: repeat(2, 1fr);
    }
}