body {
    margin: 0;
    padding: 0;
    background-color: #f5f5f5;
    font-family: Inter;
}

#landing-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
    background-color: white;
}

#landing-logo {
    margin: 30px auto;
}

#logo {
    width: 115px;
}

#landing-pictures>img {
    margin: 0 auto;
    width: 270px;
    max-width: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 13px;
    object-fit: cover;
    aspect-ratio: 1;
}

#landing-text {
    margin-bottom: 20px;
    font-size: 22px;
    color: #3a3a3a;
    text-align: center;
    font-weight: 500;
}

#landing-text-1 {
    font-weight: 700;
    font-style: italic;
}

#landing-text-2 {
    margin-bottom: 30px;
    font-size: 12px;
    color: #aeaeae;
    text-align: center;
}

#landing-button {
    margin: 0 auto;
    background-color: #c00000;
    cursor: pointer;
    border-radius: 13px;
    padding: 15px 25px;
    width: fit-content;
}

#landing-button a {
    text-decoration: none;
    color: white;
    font-size: 12px;
}







.landing-title {
    font-size: 30px;
    color: #3a3a3a;
    font-weight: 700;
    letter-spacing: -0.06em;
}














#landing-pictures {
    position: relative;
    width: 100%;
    height: 300px;
    /* ajuste selon tes besoins */
    display: flex;
    justify-content: center;
    align-items: center;
}

.landing-slide {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    opacity: 0;
    transition: none;
    z-index: 1;
    max-width: 100%;
    max-height: 100%;
    pointer-events: none;
}

.landing-slide.visible {
    opacity: 1;
    z-index: 2;
}

.landing-slide.pop {
    animation: pop-in 0.3s cubic-bezier(0.4, 0.8, 0.6, 1.2) forwards;
}

.landing-slide.hold {
    transform: scale(1.05);
}

.landing-slide.grow {
    animation: grow-accelerate 1s cubic-bezier(0.2, 0.8, 0.8, 1.8) forwards;
}

@keyframes pop-in {
    0% {
        transform: scale(1);
    }

    100% {
        transform: scale(1.05);
    }
}

@keyframes grow-accelerate {
    0% {
        transform: scale(1.05);
    }

    100% {
        transform: scale(1.15);
    }
}