.page-apropos {
    overflow: hidden;
}

.apropos {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 60px;
    text-align: center;
    padding: 0 8vw;
}

.apropos > h2 {
    font-family: 'Planet Kosmos';
    font-size: 2rem;
    text-shadow: 0 0 10px #f0f;
    margin-top: 70px;
    margin-bottom: -35px;
}

.about {
    max-width: 1000px;
    display: grid;
    grid-template-columns: 320px 1fr;
    align-items: center;
    gap: 60px;
    padding: 30px;
    background: rgba(0,255,255,0.02);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 0 10px #0ff, 0 0 20px #f0f, 0 0 30px #0ff;
}

.about #moi {
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 20px;
}

.about h2 {
    grid-column: 2;
    font-size: 2rem;
    letter-spacing: 0.2em;
    text-shadow: 0 0 10px #f0f;
    margin-bottom: 20px;
}

.about p {
    grid-column: 2;
    font-size: 1rem;
    line-height: 1.7;
    color: rgba(255,255,255,0.9);
    text-align: left;
}

.about-text {
    overflow: visible;
}

.outils-list {
    display: flex;
    gap: 20px;
    margin-top: 30px;
    align-items: center;
    justify-content: center;
    position: relative;
}

.outils {
    width: 15%;
    height: auto;
    opacity: 0.8;
    border-radius: 15px;
    transition: transform 0.3s, opacity 0.3s, box-shadow 0.3s;
    position: relative;
}

.outils:hover {
    transform: scale(1.1);
    opacity: 1;
    box-shadow: 0 0 20px rgb(123, 189, 255);
}

.cv-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.cv-download {
    display: inline-block;
    padding: 15px 30px;
    font-family: 'Orbitron', sans-serif;
    font-size: 0.8rem;
    color: rgb(123, 189, 255);
    border: 2px solid rgb(123, 189, 255);
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    background-color: rgba(0,255,255,0.01);
    cursor: pointer;
}

.cv-download:hover {
    transform: translateY(-2px);
    color: rgb(237, 135, 237);
    border: 2px solid rgb(237, 135, 237);
    box-shadow: 0 0 30px rgb(237, 135, 237);
}

.cv-download:active {
    transform: translateY(0);
}

/* =========================
   RESPONSIVE MOBILE
========================= */
@media (max-width: 768px) {
    .apropos {
        padding: 0 20px;
        gap: 15px;
        height: 100vh;
        justify-content: center;
    }

    .apropos > h2 {
        font-size: 1.2rem;
        margin-top: 0;
        margin-bottom: 0;
    }

    .about {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 15px;
        max-width: 100%;
    }

    .about #moi {
        height: 180px;
        width: 100%;
    }

    .about h2 {
        grid-column: 1;
        font-size: 1.1rem;
        text-align: center;
        margin-bottom: 8px;
    }

    .about p {
        grid-column: 1;
        font-size: 0.7rem;
        text-align: center;
        line-height: 1.4;
        max-height: 100px;
        overflow-y: auto;
    }

    .outils-list {
        gap: 10px;
        margin-top: 10px;
        flex-wrap: nowrap;
    }

    .outils {
        width: 12%;
        min-width: 35px;
    }

    .cv-buttons {
        justify-content: center;
        margin-top: 10px;
        gap: 10px;
    }

    .cv-download {
        font-size: 0.6rem;
        padding: 8px 15px;
        letter-spacing: 1px;
    }
}

@media (max-width: 480px) {
    .apropos > h2 {
        font-size: 1rem;
    }

    .about {
        padding: 12px;
        gap: 10px;
    }

    .about #moi {
        height: 150px;
    }

    .about h2 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .about p {
        font-size: 0.65rem;
        line-height: 1.3;
        max-height: 80px;
    }

    .outils {
        width: 14%;
        min-width: 30px;
    }

    .cv-download {
        font-size: 0.55rem;
        padding: 6px 12px;
    }
}

@media (max-height: 600px) {
    .about #moi {
        height: 120px;
    }

    .about p {
        font-size: 0.6rem;
        max-height: 60px;
    }

    .outils {
        min-width: 25px;
    }
}