.image-placeholder {
    position: absolute;
    transform-origin: top center;
    transition: transform 0.02s linear, opacity 0.02s linear;
}

.image-placeholder img {
    width: 100%;
}

/* Modifiez les styles des image-placeholder */
.image-placeholder:nth-child(2) {
    z-index: 1;
    width: 12vw;
    top: 12vw;
    left: 12vw;
}

.image-placeholder:nth-child(3) {
    z-index: 1;
    width: 12vw;
    top: 8vw;
    right: 13vw;
}

.image-placeholder:nth-child(4) {
    z-index: 1;
    width: 13vw;
    bottom: 10vw;
}

.image-placeholder:nth-child(5) {
    z-index: 1;
    width: 19vw;
    bottom: 13vw;
    left: 40vw;
}

.image-placeholder:nth-child(6) {
    z-index: 1;
    width: 12vw;
    right: 0;
    bottom: 4vw;
}

.unfixed {
    position: absolute;
}

.content-wrapper {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}


.scrolling-text {
    position: fixed;
    top: 50%;
    transform: translate(20vw, -100%);
    font-size: 12vw;
    white-space: nowrap;
    will-change: transform;
    z-index: 2;
    transition: transform 0.02s linear;
    font-family: 'PlayFair Display', serif;
    font-weight: 600;
    font-size: 18rem;
    color: #EFEAE7;
}

.call-to-scroll {
    position: absolute;
    bottom: 2vw;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Unbounded', serif;
    font-size: 0.8rem;
    transition: all 0.5s ease;
}

.summary {
    transform: translateY(-0vh);
    /* padding: 0vh 30vw 0vh 30vw; */
    max-width: 40vw;
    margin: auto;
}

.all-projects-button {
    margin: 4rem 0 9rem 0;
}

.projects {
    display: flex;
    flex-direction: column;
    max-width: 1080px;
    margin: auto;
}

.projects-header {
    margin-bottom: 3rem;
    position: sticky;
    top: 5rem;
}

.projects-header-title {
    position: relative;
    width: 30.8vw;
}

.projects-header-title img {
    width: 100%;
}

.projects-header-title span {
    position: absolute;
    right: 5%;
    top: 44%;
    font-family: 'Unbounded', sans-serif;
    font-size: 1.2rem;
    font-weight: 500;
}

.project {
    width: 50vw;
    margin-bottom: 5rem;
    position: relative;
    z-index: 5;
    cursor: pointer;
    text-decoration: none;
    color: white;
}

.project--right {
    align-self: flex-end;
}

.project img {
    width: 100%;
    transition: transform 0.3s ease;
    background-size: cover;
    border-radius: 15px;
}

.project:hover img {
    content: var(--alt);
    transform: scale(1.02);
}

.project-identity {
    font-family: 'Unbounded', sans-serif;
    margin-top: 1rem;
    display: flex;
    align-items: center;
}

.project-identity h3 {
    padding: 0;
    margin: 0;
}

.project-identity-chips {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.skills {
    background-color: #EFEAE7;
    padding: 8rem 0;
}

.skills-content {
    display: flex;
    justify-content: space-between;
    max-width: 1080px;
    margin: auto;
}

.skills h5 {
    position: sticky;
    top: 5rem;
    align-self: flex-start;
    margin: 0;
    padding: 0;
}

.skills-sections {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.skills-section {
    max-width: 50vw;
    width: 100%;
}

.skills-section:not(:first-child) {
    margin-top: 5rem
}

.skills-section-content {
    display: flex;
    justify-content: flex-end;
}

.skills-section-content img {
    position: relative;
    flex: 1;
    top: -1rem;
    margin-right: 2rem;
}

.skills-section-title {
    border-bottom: 1px solid rgb(149, 140, 140);
}

.skills-section-title h2 {
    margin: 0 0 1rem 0;
    padding: 0;
}

.skills-section-list {
    list-style: none;
    /* Enlève les puces par défaut */
    padding-left: 0;
    /* Enlève le padding de gauche */
    flex: 2;
}

.skills-section-list li {
    position: relative;
    /* Nécessaire pour positionner les numéros */
    font-family: 'Unbounded', sans-serif;
    border-bottom: 1px solid rgb(149, 140, 140);
    padding: 0.5rem 0 0.5rem 0;
    display: flex;
    justify-content: space-between;
    /* Distribue l'espace entre le texte et le numéro */
    align-items: center;
    /* Centre le contenu verticalement */
}

.skills-section-list li::after {
    content: counter(item);
    /* Utilise le compteur pour afficher le numéro */
    counter-increment: item;
    /* Incrémente le compteur pour chaque item */
    width: 1rem;
    text-align: center;
}

.skills-section-list {
    counter-reset: item;
    /* Réinitialise le compteur à chaque nouvelle liste */
}

.about {
    background-color: white;
}

.about-content {
    max-width: 1080px;
    margin: auto;
    height: 90vh;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about img {
    padding: 0 1rem 0.5rem 0;
    height: 50vh;
}

.about h5 {
    margin: 0;
}

.about p {
    margin: 0;
    color: black;
    font-family: 'Unbounded', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
}

.about-top {
    display: flex;
}

.about-top-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

@media (max-width: 1080px) {
    .home-mobile {
    margin-top: 5rem;
        width: 100vw;
    }

    .project:hover img {
        content: var(--alt);
        transform: scale(1);
    }

    .header-container {
        height: calc(100vh - 5rem);
        overflow: hidden;
    }

    .content-wrapper {
        position: relative;
        height: calc(100vh - 5rem);
    }

    .scrolling-text {
        position: relative;
        right: 0;
        display: block;
        white-space: unset;
        font-size: 5rem;
        transform: translate(0, -100%);
        margin: 5rem 2rem;
    }

    .image-placeholder:nth-child(2) {
        z-index: 1;
        width: 24vw;
        top: 12vw;
        left: 12vw;
    }

    .image-placeholder:nth-child(3) {
        z-index: 1;
        width: 24vw;
        top: 15vh;
        right: 13vw;
    }

    .image-placeholder:nth-child(4) {
        z-index: 1;
        width: 26vw;
        bottom: 28vh;
    }

    .image-placeholder:nth-child(5) {
        z-index: 1;
        width: 38vw;
        bottom: 10vh;
        left: 50%;
        transform: translateX(-50%);
    }

    .image-placeholder:nth-child(6) {
        z-index: 1;
        width: 24vw;
        right: 0;
        bottom: 22vh;
    }

    .summary {
        transform: none;
        margin: 3rem 4rem 7rem 4rem;
        max-width: none;
    }

    .projects {
        width: 100vw;
        overflow: hidden;
        padding: 0 1rem;
    }

    .projects-header {
        position: initial;
    }

    .project {
        width: 100%;
    }

    .projects-header-title {
        width: 63vw;
    }

    .projects-header-title span {
        font-size: 0.5rem;
        font-weight: 300;
        right: 8%;
    }

    .skills-content {
        flex-direction: column;
        padding: 0 1rem;
    }

    .skills h5 {
        position: initial;
    }

    .skills-sections {
        margin-top: 1rem;
        align-items: start;
    }

    .skills-section {
        max-width: none;
    }

    .skills-section-content {
        flex-direction: column;
    }

    .skills-section-content img {
        margin: 0 10vw;
    }

    .about-top {
        justify-content: center;
    }

    .about-top-right {
        display: none;
    }

    .about img {
        padding: 0.5rem;
        max-width: 100%;
    }

    .about p {
        padding: 2rem 1rem 0 1rem;
        font-size: 1.5rem;
    }

    .about p::before {
        content: "Moi, c’est Lucile ✨ directrice artistique et graphiste freelance ";
    }

    .about-content {
        height: auto;
    }
}