#particles-js {
    position: fixed;
    width: 100%;
    height: 100vh;
    background: #f6e1cf;
    top: 0;
    left: 0;
    z-index: -1;
}

/* Base globale */
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden;
    background: transparent;
}

/* Titre About */
#about h1 {
    font-size: 3rem;
    color: black;
    text-align: center;
    margin-top: 100px;
    padding-left: 20px; /* léger retrait du bord */
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
    font-family: Montserrat, sans-serif;

}


#about h1.visible {
    opacity: 1;
    transform: translateY(0);
}



/* Colonne texte */
.texte-colonne {
    flex: 1 1 55%;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 1; /* Rendu visible tout de suite */
    transform: none; /* Pas de décalage */
    transition: none; /* Pas d'animation */
    z-index: 1;
    color: black;
}

.texte-colonne.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Colonne image */
.image-colonne {
    flex: 1 1 35%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    transform: scale(0.5);
    transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.image-colonne.visible {
    opacity: 1;
    transform: scale(1);
    transition-delay: 0.1s;
}

.image-colonne img {
    width: 100%;
    max-width: 350px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

/* Responsive */
@media screen and (max-width: 768px) {
    #contenu {
        flex-direction: column;
        text-align: left;
    }

    .image-colonne {
        margin-top: 30px;
        align-items: center;
    }
}
.car {
    background-color: white;
    border-radius: 20px;
    box-shadow: 10px 8px 8px black;
    padding-top: 15px;
    margin-bottom: 150px;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding-left: 30px;
    padding-right: 30px;
    padding-bottom: 15px;
}

#tout {
    margin-top: 20px;
    font-weight: bold;
    text-align: center; /* ici seulement */

}
.parcours {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 20px;
    font-family: Poppins, sans-serif;

}

#outils {
    font-family: Montserrat, sans-serif;
    font-size: 22px;

}
.parcours-img img {

}

.parcours-texte {
    flex: 1;
    color: black;
    text-align: center;
    font-size: 1rem;
}

.parcours-texte h3 {
    text-align: center;
}

.parcours-texte p {
    font-family: 'Poppins', sans-serif;
}

.passionst p {
    font-family: 'Poppins', sans-serif;
}
.faits {
    max-width: 950px; /* même largeur que ta boîte rouge */
    margin: 0 auto 70px; /* centre le bloc */
    padding: 20px;
    text-align: center;

}

.faits p {
    line-height: 1.7; /* meilleure lisibilité */
}


/* Outils / bouton CV */
#outi {
    margin-top: 35px;
    margin-bottom: 40px;
}

.outil-container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: 30px;
}

.cv-button {
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 1rem;
    margin-top: 40px;
    margin-bottom: 50px;
    display: inline-block;
    transition: background-color 0.3s ease, color 0.3s ease;
    margin-left: 120px;
    border: 2px solid #333;
    background-color: transparent;
    color: #333;
}

.cv-button:hover {
    background-color: #333;
    color: #fff;
}

#click {
    color: gray;
    font-weight: bold;
    text-decoration: none;
}

#click:hover {
    text-decoration: underline;
}
.carousel-wrapper {
    position: relative;
    width: 80%;
    margin: auto;
}

.carousel {
    overflow: hidden;
    width: 100%;
}

.track {
    display: flex;
    gap: 30px;
    transition: transform 0.3s ease;
}

/* Images */
.track img {
    width: 120px;
    height: 120px;
    object-fit: contain;

    padding: 12px;
    border-radius: 20px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
}

/* Arrows */
.arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    font-size: 45px;
    border: none;
    background: rgba(0,0,0,0.3);
    color: white;
    padding: 5px 15px;
    border-radius: 10px;
    cursor: pointer;
    backdrop-filter: blur(10px);
    transition: 0.2s;
}

.arrow:hover {
    background: rgba(255,255,255,0.25);
}

.left {
    left: 5px;
}

.right {
    right: 5px;
}

.outils h3 {
    color: black;
    padding-left: 130px;
    margin-bottom: 40px;
    margin-top: 150px;
}


.faits {
    max-width: 1200px;
    margin: 50px auto;
    display: flex;
    gap: 40px;
    align-items: flex-start;
    padding: 20px;
}



.passionsi {
    flex: 1;
    color: black;
    text-align: center;
}

.parcours-texte h3 {
    text-align: center;
}

.passionst {
    font-size: 1rem;
    margin-top: 90px;
}