.lsdnuit__banner {
    display: flex;
    justify-content: center;

    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    padding-top: 50px;
    padding-bottom: 70px;

    position: relative;
    overflow: hidden;

    background-color: rgba(255, 255, 255, 0);
    animation: bgBackground 4s ease-in-out 1 forwards;

    &::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url('../../../media/others/special/cover-le-sabre-de-nuit-salome-han.webp');
        background-size: cover;
        background-position: 0 -120px;
        background-repeat: no-repeat;
        animation: bgZoomIn 4s ease-in-out 1 forwards;
        z-index: -1;
        pointer-events: none;
    }
    &::after {
        content: '';
        position: absolute;
        inset: 0;
        background-image: url('../../../media/others/special/opening-front-le-sabre-de-nuit-salome-han.webp');
        background-size: cover;
        background-position: top;
        background-repeat: no-repeat;
        transform: scale(1.4);
        transition: opacity .4s ease-in;
        animation: bgZoomOut 4s ease-in-out 1 forwards;
        z-index: 2;
        pointer-events: none;
    }

    .lsdnuit__banner-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        opacity: 0;
        animation: bgOpacity 4s ease-in-out 1 forwards;

        .lsdnuit__title {
            max-width: 700px;
            margin: auto 30px;
        }
    }
}

@keyframes bgBackground {
    from {
        background-color: rgba(255, 255, 255, 0);
    }
    to {
        background-color: rgba(255, 255, 255, 0.6);
    }
}
@keyframes bgOpacity {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes bgZoomIn {
    from {
        transform: scale(1.2);
    }
    to {
        transform: scale(1);
    }
}
@keyframes bgZoomOut {
    from {
        transform: scale(1);
        background-position: top;
    }
    to {
        transform: scale(1.5);
        background-position: 0 -380px;
    }
}

@media (max-width: 1555px) {
    .lsdnuit__banner {
        &::before {
            background-position: center;
        }
        &::after {
            opacity: 0;
        }
        .lsdnuit__banner-content {
            position: relative;
        }
    }
}

@media (prefers-reduced-motion: reduce) {
    .lsdnuit__banner,
    .lsdnuit__banner::before,
    .lsdnuit__banner::after,
    .lsdnuit__banner .lsdnuit__banner-content {
        animation: none;
    }

    .lsdnuit__banner {
        background-color: rgba(255, 255, 255, 0.6);
    }

    .lsdnuit__banner::before {
        transform: scale(1);
    }

    .lsdnuit__banner::after {
        opacity: 0;
    }

    .lsdnuit__banner .lsdnuit__banner-content {
        opacity: 1;
    }
}
