/* ===== À propos Page ===== */

.apropos-main {
    padding-top: 9vh;
}

/* Hero */
.apropos-hero {
    padding: 4vh;
    display: flex;
    gap: 4vh;
    align-items: center;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.apropos-photo-wrap {
    flex-shrink: 0;
}

.apropos-photo {
    width: 18vh;
    height: 18vh;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid #164fb8;
    box-shadow: 0 10px 36px rgba(22,79,184,0.25);
}

.apropos-intro h1 {
    font-size: 4.5vh;
    font-weight: 900;
    color: rgba(10,10,10,0.88);
    margin: 0 0 0.6vh 0;
}

.apropos-intro h1 span { color: #164fb8; }

.apropos-title-line {
    font-size: 1.9vh;
    color: rgba(0,0,0,0.5);
    margin: 0 0 1.5vh 0;
    font-weight: 600;
}

.apropos-bio {
    font-size: 2vh;
    color: rgba(0,0,0,0.72);
    line-height: 1.65;
    margin: 0 0 2vh 0;
    max-width: 60ch;
}

.apropos-actions {
    display: flex;
    gap: 1.2vh;
    flex-wrap: wrap;
}

/* Cards grid */
.apropos-cards-section {
    padding: 0 4vh 3vh 4vh;
}

.apropos-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vh;
    max-width: 960px;
    margin: 0 auto;
}

.apropos-card {
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 18px;
    box-shadow: 0 6px 24px rgba(0,0,0,0.09);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.apropos-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.13);
}

.apropos-card-header {
    background: #164fb8;
    padding: 1.8vh 2.2vh;
    display: flex;
    align-items: center;
    gap: 1.2vh;
}

.apropos-card-icon {
    font-size: 2.4vh;
}

.apropos-card-header h2 {
    margin: 0;
    color: white;
    font-size: 2.2vh;
    font-weight: 800;
}

.apropos-card-body {
    padding: 2vh 2.2vh;
}

/* Interest list */
.interest-list {
    display: flex;
    flex-direction: column;
    gap: 0.8vh;
}

.interest-item {
    display: flex;
    gap: 1.2vh;
    align-items: flex-start;
    padding: 1vh;
    border-radius: 12px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.interest-item:hover,
.interest-item.active {
    background: rgba(22,79,184,0.06);
}

.interest-icon { font-size: 2.2vh; flex-shrink: 0; }

.interest-item strong {
    font-size: 1.8vh;
    color: rgba(10,10,10,0.82);
    display: block;
}

.interest-item p {
    margin: 0;
    font-size: 1.5vh;
    color: rgba(0,0,0,0.55);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.interest-item.active p {
    max-height: 50px;
}

/* Langues */
.langue-list {
    display: flex;
    flex-direction: column;
    gap: 1.5vh;
}

.langue-item {}

.langue-info {
    display: flex;
    align-items: center;
    gap: 0.8vh;
    margin-bottom: 0.6vh;
}

.langue-flag { font-size: 2vh; }
.langue-name { font-size: 1.8vh; font-weight: 700; color: rgba(10,10,10,0.82); flex: 1; }
.langue-level { font-size: 1.5vh; font-weight: 700; color: #164fb8; }

.langue-bar {
    height: 7px;
    background: rgba(22,79,184,0.1);
    border-radius: 999px;
    overflow: hidden;
}

.langue-fill {
    height: 100%;
    background: #164fb8;
    border-radius: 999px;
    transition: width 1.2s ease;
}

/* Valeurs */
.valeurs-list {
    display: flex;
    flex-direction: column;
    gap: 1.2vh;
}

.valeur-item {
    display: flex;
    gap: 1.2vh;
    align-items: flex-start;
}

.valeur-icon { font-size: 2.2vh; flex-shrink: 0; }

.valeur-item strong {
    font-size: 1.8vh;
    color: rgba(10,10,10,0.82);
    display: block;
    margin-bottom: 0.2vh;
}

.valeur-item p {
    margin: 0;
    font-size: 1.5vh;
    color: rgba(0,0,0,0.55);
    line-height: 1.4;
}

/* Soft skills */
.softskills-section {
    padding: 0 4vh 5vh 4vh;
    max-width: 960px;
    margin: 0 auto;
    width: 100%;
    box-sizing: border-box;
}

.softskills-section h2 {
    font-size: 3vh;
    font-weight: 800;
    color: rgba(10,10,10,0.85);
    margin: 0 0 2vh 0;
    text-align: center;
}

.softskills-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2vh;
}

.skill-badge {
    padding: 1vh 2.5vh;
    background: rgba(255,255,255,0.78);
    border: 1px solid rgba(22,79,184,0.22);
    border-radius: 999px;
    font-size: 1.8vh;
    font-weight: 700;
    color: #164fb8;
    box-shadow: 0 4px 14px rgba(0,0,0,0.07);
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    cursor: default;
}

.skill-badge:hover {
    transform: translateY(-2px) scale(1.03);
    background: #164fb8;
    color: white;
    box-shadow: 0 8px 24px rgba(22,79,184,0.28);
}

/* Responsive */
@media (max-width: 700px) {
    .apropos-hero {
        flex-direction: column;
        text-align: center;
    }

    .apropos-actions { justify-content: center; }

    .apropos-cards-grid {
        grid-template-columns: 1fr;
    }

    .apropos-cards-section,
    .softskills-section {
        padding: 0 2vh 3vh 2vh;
    }
}
