/* Section À propos */
#apropos {
    align-items: flex-start;
    justify-content: flex-start;
    padding-top: 0;
    min-height: 100vh;
    position: relative;
    padding-bottom: 140px;
}

#apropos .content {
    width: 100%;
    text-align: left;
    align-self: flex-start;
    position: relative;
}

.qui {
    position: absolute;
    top: 10%;
    left: 10%;
    transform: scaleY(2);
    font-size: 4vw;
    font-weight: 1000;
    color: #2272ff;
    text-transform: uppercase;
    line-height: 0.75;
    letter-spacing: -2px;
    white-space: nowrap;
    font-family: 'ImpactWeb', Impact, Arial, sans-serif;
    transform-origin: center center;
    z-index: 0;
    pointer-events: none;
}

/* Conteneur principal */
.apropos-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 100vh;
    padding: 80px 80px 60px 160px;
    gap: 50px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 1;
}

/* Zone de texte à gauche */
.text-zone {
    flex: 1;
    top: 28%;
    left: 15%;
    max-width: 700px;
    z-index: 2;
    transition: all 0.5s ease;
    position: absolute;
}

.text-zone p {
    font-size: 0.8rem;
    line-height: 1.7;
    color: white;
    margin-bottom: 16px;
}

/* Conteneur Photo - Simple */
.photo-container {
    position: absolute;
    right: 3%;
    bottom: 1%;
    height: 95%;
    width: auto;
    z-index: 0;
    display: flex;
    align-items: flex-end;
}

.portrait-image {
    height: 100%;
    width: auto;
    object-fit: cover;
    object-position: center;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-out forwards;
    animation-delay: 0.3s;
}

/* Bouton avec effet de flou */
.cv-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 0;
}

/* Bouton avec effet de flou */
.cv-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 40px 0;
}

.button-blur {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 2px solid #2272ff;
    color: #2272ff;
    padding: 14px 28px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button-blur svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.button-blur:hover {
    background: #2272ff;
    color: white;
    border-color: #2272ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(34, 114, 255, 0.4);
}

.button-blur:hover svg {
    transform: translateX(4px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation section apropos */
#apropos .qui,
#apropos .text-zone p,
#apropos .photo-container {
    opacity: 0;
}

#apropos.show .qui,
#apropos.show .text-zone p,
#apropos.show .photo-container {
    opacity: 1;
    transition: opacity 1s;
}

#apropos.show .text-zone p:nth-child(1) { transition-delay: 0.1s; }
#apropos.show .text-zone p:nth-child(2) { transition-delay: 0.2s; }
#apropos.show .text-zone p:nth-child(3) { transition-delay: 0.3s; }
#apropos.show .text-zone p:nth-child(4) { transition-delay: 0.4s; }
#apropos.show .text-zone p:nth-child(5) { transition-delay: 0.5s; }
#apropos.show .text-zone p:nth-child(6) { transition-delay: 0.6s; }