.press-mentions {
    width: 100%;
    height: 78vh;
    padding: 7vh 0 10vh 0;
    background: #fdfdfd;
}

.press-mentions>h2 {
    text-align: center;
    color: var(--body-text-color);
    font-size: 3rem;
}

press-mentions-widget {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-container {
    width: 100%;
    max-width: 1200px;
    height: 65vh;
    position: relative;
    perspective: 1000px;
}

.carousel-track {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transform-style: preserve-3d;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
}

.card {
    position: absolute;
    width: 240px;
    height: 45vh;
    background: #fdfdfd;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    cursor: pointer;
}

.card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.card.center {
    z-index: 10;
    transform: scale(1.1) translateZ(0);
}

.card.center img {
    filter: none;
}

.card.left-2 {
    z-index: 1;
    transform: translateX(-400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}

.card.left-2 img {
    filter: grayscale(100%);
}

.card.left-1 {
    z-index: 5;
    transform: translateX(-200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}

.card.left-1 img {
    filter: grayscale(100%);
}

.card.right-1 {
    z-index: 5;
    transform: translateX(200px) scale(0.9) translateZ(-100px);
    opacity: 0.9;
}

.card.right-1 img {
    filter: grayscale(100%);
}

.card.right-2 {
    z-index: 1;
    transform: translateX(400px) scale(0.8) translateZ(-300px);
    opacity: 0.7;
}

.card.right-2 img {
    filter: grayscale(100%);
}

.card.hidden {
    opacity: 0;
    pointer-events: none;
}

.article-info {
    text-align: center;
    transition: all 0.5s ease-out;
}

.article-name {
    color: var(--body-text-color);
    font-size: 2.5rem;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.article-name::before,
.article-name::after {
    content: "";
    position: absolute;
    top: 100%;
    width: 100px;
    height: 2px;
    background: var(--body-text-color);
}

.article-name::before {
    left: -120px;
}

.article-name::after {
    right: -120px;
}

.article-date {
    color: var(--body-text-color);
    font-size: 1.5rem;
    font-weight: 500;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    position: relative;
    margin: 0;
}

.dots {
    margin-top: 15px;
    display: flex;
    justify-content: center;
    gap: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ff4d007b;
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    
    transform: scale(1.2);
}


.press-mentions .dot {
    background: #ff4d007b;
}

.press-mentions .dot.active {
    background: #ff4d00;
}

.carousel .dot {
    background: #fdfdfd7b;
}

.carousel .dot.active {
    background: #fdfdfd;
}

.carousel .dots {
    bottom: 50px;
}



.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ff4d0098;
    color: var(--body-text-color);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 20;
    transition: all 0.3s ease;
    font-size: 1.7rem;
    border: none;
    outline: none;
    color: #fdfdfd;
    padding-top: 4px;
}

.nav-arrow:hover {
    background: #ff4d00c8;
    transform: translateY(-50%) scale(1.1);
}

.nav-arrow.left {
    left: 20px;
}

.nav-arrow.right {
    right: 20px;
}


/* Carrousel Réalisations */

.carousel-wrapper {
    width: 100vw;
    height: 92vh;
    overflow: hidden;
    position: relative;
}

.carousel-title {
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    padding: 1rem 2rem;
    border-radius: 10px;
    z-index: 10;
    font-size: 3rem;
    font-weight: bold;
}

.carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 100%;

}

.slide {
    min-width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow:
        inset 0 150px 150px -40px rgba(0, 0, 0, 0.5),
        /* haut */
        inset 0 -260px 300px -20px rgba(0, 0, 0, 0.4);
}

.slide-content {
    position: absolute;
    transform: translateX(-50%);
    bottom: 100px;
    left: 50%;
    color: white;
    max-width: 70%;
}

.slide-content h3 {
    font-size: 3.5rem;
    font-family: "Glacial light";
}

.slide-content p {
    font-size: 1.5rem;
}



.nav-left {
    left: 100px;
}

.nav-right {
    right: 100px;
}


@media (max-width: 768px) {
    .press-mentions>h2{
        font-size: 2rem;
    }

    .carousel-container {
        height: 65vh;
    }

    .card {
        width: 250px;
        height: 45vh;
    }

    .card.left-2 {
        transform: translateX(-250px) scale(0.8) translateZ(-300px);
    }

    .card.left-1 {
        transform: translateX(-120px) scale(0.9) translateZ(-100px);
    }

    .card.right-1 {
        transform: translateX(120px) scale(0.9) translateZ(-100px);
    }

    .card.right-2 {
        transform: translateX(250px) scale(0.8) translateZ(-300px);
    }

    .article-name {
        font-size: 2rem;
    }

    .article-date {
        font-size: 1.2rem;
    }

    .article-name::before,
    .article-name::after {
        width: 50px;
    }

    .article-name::before {
        left: -70px;
    }

    .article-name::after {
        right: -70px;
    }

    .carousel-wrapper {
        height: 50vh;
    }

    .carousel {
        height: 100%;
    }

    .slide-content {
        max-width: 80%;
    }

    .carousel-title {
        font-size: 1.8rem;
        padding: 0.5rem 1rem;
        width: 100%;
        left: 50%;
        text-align: center;
    }

    .slide-content h3 {
        font-size: 1.5rem;
        font-weight: 500;
    }

    .slide-content p {
        font-size: 1.2rem;
        margin: 10px 0;
    }

    .nav-arrow.left {
    left: 10px;
}

    .nav-arrow.right {
        right: 10px;
    }

    .nav-left {
    left: 10px;
}

.nav-right {
    right: 10px;
}

}

































header {
    position: fixed;
    color: #333;
    padding: 10px 0;
    text-align: center;
    width: 100%;
    height: 7vh;
    background-color: rgba(35, 35, 35);
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    visibility: hidden;
    /* Masqué par défaut */
    opacity: 0;
    /* Transparent par défaut */
    transform: translateY(-20px);
    /* Décalé vers le haut */
    transition: opacity 0.8s ease, transform 0.8s ease, visibility 0.8s;
}

.header-visible {
    visibility: visible;
    /* Visible */
    opacity: 1;
    /* Complètement opaque */
    transform: translateY(0);
    /* Retourne à sa position initiale */
}

.header-image {
    height: 100%;
}

#header>a {
    height: 7vh;
}



.landing-page {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
}

.landing-page-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.landing-page-logo {
    width: 200px;
    position: relative;
    z-index: 1;
}

.rosace-wrapper {
    height: 5vh;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.main-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: auto;
}

.about {
    height: 100vh;
    display: flex;
    flex-direction: column-reverse;
    background-color: #fdfdfd;
}

.about-text-wrapper {
    display: flex;
    flex-direction: column-reverse;
    padding: 0vh 10vw;
    align-items: center;
}

.about-image-wrapper {
    width: 100vw;
    height: 35vh;
    padding: 0 0vw;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column-reverse;
    padding-bottom: 3vh;
}

.about-image-wrapper>img {
    width: 80%;
    overflow: hidden;
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    width: 80vw;
    padding: 3vh 10vw 3vh 10vw;
    line-height: 1.5;
}

.about-text span {
    font-size: small;
    color: var(--body-text-color);
    padding: 5px 0;
}

.about-text>h2 {
    font-size: 1.2rem;
    padding-top: 0.5vh;
    padding-bottom: 1vh;
    margin: 0;
    font-weight: 100;
    color: var(--body-text-color);
    line-height: 1.5;
}

.audience {
    display: flex;
    flex-direction: column;
    width: 80vw;
    background-color: #fdfdfd;
    padding-bottom: 5vh;
    gap: 20px;
    padding: 0vh 10vw 10vh 10vw;
}

.audience-title {
    font-size: 1.2rem;
    color: var(--body-text-color);
    font-family: var(--font-family);
    font-weight: 700;
}


.main-content {
    position: relative;
    z-index: 1;
}


.contact-us {
    flex-direction: column;
    padding: 15vh 5vw 10vh 5vw;
    background-color: #FF4D00;
    position: fixed;
    top: 0;
    left: 0;
    width: 90vw;
    height: 75vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 0;
}

.contact-us-text {
    color: #fdfdfd;
    width: 100%;
    font-size: 2.2rem;
    text-transform: uppercase;
}

.contact-us-wrapper {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 60px;
    border: solid 1px #fdfdfd;
    border-left: 0;
    border-right: 0;
}

.contact-us-input {
    width: 60%;
    outline: none;
    background-color: transparent;
    color: #fdfdfd;
    font-size: 1 rem;
    height: 100%;
    border: 0;
    padding-left: 10px;
}

.contact-us-input::placeholder {
    color: #ededed;
    font-weight: 100;
    font-family: Yaldevi, sans-serif;
}

.contact-us-button {
    padding: 0;
    margin: 0;
    width: 40%;
    height: 100%;
    background-color: transparent;
    color: #fdfdfd;
    outline: none;
    font-size: 1.5rem;
    cursor: pointer;
    border: none;
    border-left: solid 1px #fdfdfd;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-us-button>img {
    height: 50px;
}

.activity {
    display: flex;
    flex-direction: column;
    padding: 5vh 0;
    height: 300vh;
    background-color: #fdfdfd;
    justify-content: space-evenly;
}

.activity>div {
    display: flex;
    flex-direction: column;
    padding: 2vh 10vw;
}

.activity-img-wrapper {
    display: flex;
    width: 100%;
    height: 60vh;
    justify-content: center;
    align-items: center;
}

.activity-img-wrapper>img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.activity-text {
    display: flex;
    flex-direction: column;
    justify-content: start;
    height: auto;
    width: 100%;
}

.activity-text>a {
    margin: 2vh 0;
    width: fit-content;
}

.activity-text>a>h2 {

    font-size: 1.8rem;
    width: 100%;
    text-align: left;
    text-wrap: nowrap;

}

.activity-text>span {
    font-size: 1rem;
}

.parallaxe-wrapper {
    position: relative;
    overflow: hidden;
    height: 600vh;
    width: 100vw;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.activity,
.parallaxe-item-wrapper {
    position: relative;
    z-index: 1;
}

.portfolio {
    width: 100vw;
    height: 100vh;
    background-color: #fdfdfd;
}





@media (min-width: 1025px) {

    .parallaxe-wrapper {
        height: 400vh;
    }

    .about {
        flex-direction: row;
        height: 100vh;
        justify-content: space-between;
    }

    .about-text {
        flex-direction: column;
        width: 35vw;
        padding-right: 15vw;
        padding-left: 0;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .about-text>h2 {
        font-size: 1.7rem;
        padding-top: 0.7vh;
        padding-bottom: 1vh;
        margin: 0;
        font-weight: light;
        color: var(--body-text-color);
    }

    .about-image-wrapper {
        height: 80vh;
        width: 40vw;
        overflow: visible;
        padding: 10vh 5vw 10vh 5vw;
    }

    .about-image-wrapper>img {
        height: 100%;
        width: auto;

    }

    .about-text span {
        width: 100%;
        font-size: 1.1rem;
        padding: 3vh 0;
    }

    .audience {
        width: 80vw;
        padding: 0vh 10vw 10vh 10vw;
        gap: 20px;
    }

    .audience-text-wrapper {
        display: flex;
        flex-direction: column;
    }

    .audience-title {
        font-size: 1.5rem;

    }

    .audience-text {
        font-size: 1.1rem;
    }

    .contact-us-text {
        font-size: 5rem;
    }

    .contact-us-wrapper {
        height: 80px;
    }

    .contact-us-input {
        font-size: 2rem;
        font-family: Yaldevi, sans-serif;
        font-weight: 100;
    }

    .contact-us-input::placeholder {
        font-size: 2rem;
    }

    .contact-us-button>img {
        height: 70px;
    }

    .activity {
        flex-direction: row;
        padding: 5vh 0vw;
        width: 100vw;
        justify-content: space-evenly;
        height: 90vh;
    }

    .activity>div {
        padding: 0;
        width: 19vw;
    }

    .activity-text>span {
        font-size: 1rem;
    }

    .activity-text>a>h2 {
        font-size: 1.5rem;
    }

    .landing-page-logo {
        width: 40vw;
        max-height: 100%;
    }

}

@media (min-width: 1500px) {
    .about>.about-text span {
        font-size: 1.4rem;
    }
}