@font-face {
    font-family: 'EuropaMedium';
    src: url('fonts/EuropaGroteskSH-Med.woff2') format('woff2');
}

@font-face {
    font-family: 'EuropaLight';
    src: url('fonts/EuropaGroteskSH-Lig.woff2') format('woff2');
}

@font-face {
    font-family: 'EuropaBold';
    src: url('fonts/EuropaGroteskSH-Bol.woff2') format('woff2')
}

@font-face {
    font-family: 'MontrealLight';
    src: url('fonts/MontrealLight.woff2') format('woff2')
}


body {
    margin: 0;
    background-color: #0A0A0A;
}

h2 {
    font-family: EuropaBold;
    color: white;
    font-size: 2rem;
    margin: 0;
    padding-bottom: 5px;
    border-bottom: 2px solid #FFCE1D;
    width: fit-content;
}

h3 {
    font-family: EuropaMedium;
    color: white;
    font-weight: normal;
    font-size: 1.5rem;
    margin: 0;
    transition: 200ms;
}

h4 {
    font-family: EuropaLight;
    color: white;
    font-weight: normal;
    font-size: 1.2rem;
    margin: 0;
    transition: 200ms;
}

p {
    font-family: MontrealLight;
    color: white;
    line-height: 1.5;
    text-align: justify;
}

/******* Iphone ********/

@media (max-width: 450px) {

    .navFull {
        display: none;
    }

    .navReduced {
        display: grid;
        grid-template-columns: 1fr 0.5fr 1fr;
        grid-template-rows: 1fr;
        grid-column-gap: 0px;
        grid-row-gap: 0px;
        padding: 20px 0;
        width: 100%;
        align-items: center;
        position: fixed;
        background-color: rgba(10, 10, 10, 0.8);
        backdrop-filter: blur(10px);
        z-index: 5;
    }

    h1 {
        margin: 0;
    }

    .menuBurger {
        padding-left: 15px;
    }

    .sagaheimLogo {
        line-height: 0;
        margin: 0;
        padding: 0;
    }

    .sagaheimLogo a {
        display: inline-block;
    }

    .sagaheimLogo img {
        width: 100%;
        /* ← change this to whatever size you want */
        height: auto;
        display: block;
    }

    .menuDeroulant {
        background-color: #0A0A0A;
        height: calc(100vh - 60.86px);
        position: absolute;
        padding-top: 60.86px;
        width: 100%;
        z-index: 4;
        transform: translateY(-100%);
        transition: 500ms;
        opacity: 0;
        position: fixed;
    }

    .ouvert {
        transform: translateY(0);
        transition: 500ms;
        opacity: 1;
    }

    .menuContainer {
        padding: 20px;
        padding-top: 60px;
        display: flex;
        flex-direction: column;
        gap: 70px;
    }

    .menuContainer h3 {
        font-size: 2rem;
        letter-spacing: 2px;
    }

    .boutonMovieMenu {
        text-decoration: none;
    }

    .menuContainer .socialMediasContainer {
        position: absolute;
        bottom: 150px;
        left: 50%;
        transform: translate(-50%, -50%);
        gap: 25px;
    }

    #home {
        height: 100%;
    }

    .videoContainer {
        width: 100%;
    }

    #home {
        position: relative;
    }

    video {
        width: 100%;
        height: 100%;
        padding-top: 60.86px;
    }

    .sagaheimLogo h1 {
        display: none;
    }

    .sagaheimLogo img {
        height: 100%;
    }

    .sagaheimIcon {
        z-index: 3;
        height: 100%;
        flex-grow: 1;
        flex-basis: 0;
    }

    .sagaheimIcon img {
        height: 40px;
    }

    .socialLangContainer {
        z-index: 3;
        height: 100%;
        display: flex;
        flex-grow: 1;
        flex-basis: 0;
        flex-direction: row;
        gap: 20px;
        justify-content: end;
    }

    .socialMediasContainer {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .socialMediasContainer i {
        color: white;
        transition: 300ms;
    }

    .socialMediasContainer i:hover {
        color: #B9B9B9;
        transition: 300ms;
    }

    .textDescContainer i {
        color: white;
        transition: 300ms;
    }

    .textDescContainer i:hover {
        color: #B9B9B9;
        transition: 300ms;
    }

    .langues {
        display: flex;
        flex-direction: row;
        gap: 10px;
        left: 40px;
        bottom: 40px;
    }

    .langues a {
        text-decoration: none;
    }

    .langues p {
        margin: 0;
        padding-right: 8px;
        font-size: 1rem;
        font-family: EuropaMedium;
    }

    .arrow {
        display: none;
    }

    .arrow a {
        width: 100%;
        height: 100%;
    }

   
    .movies {
        background-image: url("images/bgMovies.png");
        height: 100%;
        display: flex;
        padding-top: 30px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .catalogueContainer {
        display: flex;
        flex-direction: column;
        gap: 30px;
        width: fit-content;
    }

    .movieButton {
        display: flex;
        flex-direction: column;
        color: white;
        text-decoration: none;
        gap: 20px;
    }

    .movieContainer {
        display: flex;
        flex-direction: row;
        gap: 20px;
    }

    .movieContainer:hover h3 {
        color: #C99F0A;
        transition: 200ms;
    }

    .movieContainer:hover h4 {
        color: #C99F0A;
        transition: 200ms;
    }

    .movieContainer:hover img {
        opacity: 75%;
        transition: 200ms;
    }

    .movieContainer img {
        transition: 200ms;
    }

    .movieButton img {
        width: 200px;
    }

    .watchNowButton:hover {
        background-color: #C99F0A;
        transition: 200ms;
    }

    .titleMovie {
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .moviePhone {
        display: block;
    }

    .movieLarge {
        display: none;
    }

    .bottomMovie {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .watchNowButton {
        background-color: #FFCE1D;
        text-decoration: none;
        padding: 6px 18px;
        border-radius: 30px;
        transition: 200ms;
        width: fit-content;
    }

    .watchNowButton p {
        margin: 0;
        color: white;
        font-family: EuropaBold;
        letter-spacing: 1px;
        font-size: 0.7rem;
    }

    .videos {
        height: 400px;
        background-color: #2C2C2C;
        height: 100%;
        display: flex;
        padding-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .youtubeButton {
        display: flex;
        flex-direction: row;
        background-color: white;
        width: max-content;
        border-radius: 40px;
        padding: 5px 15px;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: 100ms;
    }


    .youtubeButton i {
        color: red;
    }


    .youtubeButton p {
        color: #2C2C2C;
        font-family: EuropaMedium;
        margin: 0;
        font-size: 1rem;
    }

    .youtubeButton:hover {
        background-color: lightgrey;
        transition: 100ms;
    }

    .videosContainer {
        display: flex;
        gap: 30px;
        flex-direction: column;
    }

    .video {
        width: 100%;
        text-decoration: none;
    }

    .video img {
        transition: 200ms;
    }

    .video h3 {
        transition: 200ms;
    }

    .video:hover img {
        opacity: 75%;
        transition: 200ms;
    }

    .video:hover h3 {
        color: #C99F0A;
        transition: 200ms;
    }

    .video img {
        width: 100%;
        margin-bottom: 10px;
    }

    .video h3 {
        padding-left: 5px;
    }

    .aboutus {
        background-image: url("images/bgAboutus.png");
        height: 100%;
        display: flex;
        padding-top: 50px;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .textAboutus p {
        font-size: 0.9rem;
    }

    .profilesContainer {
        display: flex;
        flex-direction: column;
        width: 100%;
        justify-content: center;
        gap: 50px;
        align-items: center;
    }

    .profilContainer {
        display: flex;
        flex-direction: column;
        width: 80%;
        border-bottom: 2px solid #FFCE1D;
        padding-bottom: 20px;
    }

    .descriptionContainer {
        position: relative;
        overflow: hidden;
    }

    .textDescContainer {
        z-index: 2;
        position: relative;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .textDescContainer h2 {
        border: none;
        font-size: 1rem;
    }


    .textDescContainer p {
        padding-bottom: 10px;
        border-bottom: 2px solid #ffffff;
        margin: 0;
        line-height: normal;
        margin-top: 10px;
    }

    .descriptionContainer img {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .linksDanuba {
        padding-top: 15px;
        display: flex;
        justify-content: end;
        gap: 10px;
    }

    .linksChuila {
        padding-top: 15px;
        display: flex;
        justify-content: flex-start;
        gap: 10px;
    }

    .contact {
        position: relative;
    }

    .contactMain {
        height: 100%;
        display: flex;
        padding-left: 20px;
        padding-right: 20px;
        padding-bottom: 20px;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-top: 20px;
        z-index: 1;
    }

    .contact h2 {
        z-index: 1;
    }

    .bgContact {
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
        width: 100%;
        content: url(images/bgContactPhone.png);
    }

    .form {
        display: flex;
        z-index: 1;
        flex-direction: column;
        justify-content: space-between;
        gap: 30px;
    }

    .formulaire {
        width: 100%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .inputBox {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .mapContainer {
        width: 100%;
    }

    .mapContainer img {
        width: 100%;
    }

    input {
        background-color: transparent;
        border-bottom: 1px solid #FFCE1D;
        border-left: none;
        border-right: none;
        border-top: none;
        color: white;
        font-size: 1.5rem;
        padding: 5px;
        font-family: EuropaLight;
    }

    textarea {
        background-color: transparent;
        border-bottom: 1px solid #FFCE1D;
        border-left: none;
        border-right: none;
        border-top: none;
        resize: none;
        font-size: 1.5rem;
        padding: 5px;
        font-family: EuropaLight;
        color: white;
    }

    .buttonSend {
        background-color: #FFCE1D;
        color: white;
        font-family: EuropaMedium;
        padding: 10px 30px;
        transition: 300ms;
        border: none;
    }

    .buttonSend:hover {
        background-color: #C99F0A;
        color: white;
        transition: 300ms;
        cursor: pointer;
    }


    textarea:focus,
    input:focus {
        outline: none;
    }

    input::placeholder,
    textarea::placeholder {
        color: white;
    }

    .footerPhone {
        margin-top: 170px;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 30px;
        justify-content: space-between;
    }

    .footerLarge {
        display: none;
    }

    .footerPhone {
        display: flex;
    }

    .footerLogoContainer {
        position: relative;
        width: 100px;
    }

    footer .socialMediasContainer {
        align-items: center;
    }

    .contactInfo p {
        margin: 0;
        font-family: EuropaMedium;
    }

    .divLine {
        width: 300px;
        display: flex;
        align-items: center;

    }

    .line {
        border-top: 2px solid #FFCE1D;
        /* horizontal line */
        width: 100%;
    }

    .movieTitle {
        z-index: 3;
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: 10%;
        display: flex;
        flex-direction: column;
        width: max-content;
        gap: 10px;
    }

     .movieTitle h3 {
        letter-spacing: 1px;
        font-size: 0.8rem;
    }


    .faithTitle {
        width: 80px;
    }

    .synopsisPhone {
        display: flex;
        flex-direction: column;
        padding: 40px 20px;
        padding-bottom: 20px;
        gap: 30px;
    }

    .synopsisFull {
        display: none;
    }

    .posterDescr {
        display: flex;
        gap: 10px;
    }

    .poster img {
        width: 120px;
    }

    .synopsisContainer {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .synopsisContainer h2 {
        font-size: 1.2rem;
    }

    .synopsisText {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .synopsisContainer p {
        margin: 0;
        font-size: 0.5rem;
    }

    .buttonsWatchMovie {
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .buttonsWatchMovie a {
        padding: 8px 10px;
    }

    .buttonsWatchMovie h3 {
        color: #2C2C2C;
        font-family: EuropaBold;
        font-size: 0.8rem;
    }

    .buttonWatch {
        background-color: #FFCE1D;
        transition: 200ms;
    }

    .buttonWatch:hover {
        background-color: #C99F0A;
        transition: 200ms;
    }

    .details {
        display: flex;
        flex-direction: column;
        gap: 30px;
        height: min-content;
        padding-bottom: 10px;
    }

    .details h2 {
        font-size: 1.2rem;
    }

    .details h3 {
        font-size: 1rem;
    }

    .detailsTitles {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        gap: 30px;
    }

    .detailsInfos {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }

    .detailsContainer {
        display: flex;
        width: max-content;
        gap: 50px;
    }

    .detailsContainer p {
        margin: 0;
        font-size: 0.8rem;
    }

    .galleryContainer {
        padding: 20px 0px;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .h2Caroussel {
        padding: 0px 120px;
    }

    .h2Caroussel h2 {
        font-size: 1.2rem;
    }

    .caroussel {
        position: relative;
    }

    .splide {
        padding: 0px 120px;
    }

    li img {
        width: 100%;
    }

    .splide__slide a {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        color: white;
        transition: 200ms;
    }

    .splide__slide a:hover {
        color: #C5A422;
        transition: 200ms;
    }

    .arrowRight {
        display: flex;
        flex-direction: row;
        position: absolute;
        justify-content: space-between;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        padding: 0 40px;
        box-sizing: border-box;
    }

    .arrowLeft {
        display: flex;
        flex-direction: row;
        position: absolute;
        justify-content: space-between;
        top: 50%;
        transform: translateY(-50%);
        padding: 0 40px;
        box-sizing: border-box;
    }

    .arrows:hover {
        cursor: pointer;
    }

    .arrows img {
        width: 15px;
    }

    .lighthouseTitle {
        width: 150px;
    }
}

/******* SMALL SCREEN ********/

@media (min-width: 1220px) {

    .navReduced {
        display: none;
    }

    .navFull {
        display: flex;
        height: 50px;
        position: relative;
        padding: 50px;
        margin: 0;
        justify-content: space-between;
    }

    .sagaheimLogo {
        z-index: 3;
        height: 40px;
    }

    .videoContainer {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* crop instead of squishing */
        object-position: center top;
        /* 👈 align video crop from the top */
        position: absolute;
        z-index: 0;
        top: 0;
    }

    video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center -100px;
        /* shift video 100px up */

    }

    body {
        margin: 0;
        background-color: #0A0A0A;
    }

    h2 {
        font-family: EuropaBold;
        color: white;
        font-size: 2rem;
        margin: 0;
        padding-bottom: 5px;
        border-bottom: 2px solid #FFCE1D;
        width: fit-content;
    }

    h3 {
        font-family: EuropaMedium;
        color: white;
        font-weight: normal;
        font-size: 1.5rem;
        margin: 0;
        transition: 200ms;
    }

    h4 {
        font-family: EuropaLight;
        color: white;
        font-weight: normal;
        font-size: 1.2rem;
        margin: 0;
        transition: 200ms;
    }

    p {
        font-family: MontrealLight;
        color: white;
        line-height: 1.5;
        text-align: justify;
    }

    #home {
        height: 100vh;
    }

    #home {
        position: relative;
    }

    .sagaheimLogo h1 {
        display: none;
    }

    .sagaheimLogo img {
        height: 100%;
    }

    .sagaheimIcon {
        z-index: 3;
        height: 100%;
        flex-grow: 1;
        flex-basis: 0;
    }

    .sagaheimIcon img {
        height: 40px;
    }

    .socialLangContainer {
        z-index: 3;
        height: 100%;
        display: flex;
        flex-grow: 1;
        flex-basis: 0;
        flex-direction: row;
        gap: 20px;
        justify-content: end;
    }

    .socialMediasContainer {
        display: flex;
        flex-direction: row;
        gap: 10px;
    }

    .socialMediasContainer i {
        color: white;
        transition: 300ms;
    }

    .socialMediasContainer i:hover {
        color: #B9B9B9;
        transition: 300ms;
    }

    .textDescContainer i {
        color: white;
        transition: 300ms;
    }

    .textDescContainer i:hover {
        color: #B9B9B9;
        transition: 300ms;
    }

    .langues {
        display: flex;
        flex-direction: row;
        gap: 10px;
        left: 40px;
        bottom: 40px;
    }

    .langues a {
        text-decoration: none;
    }

    .langues p {
        margin: 0;
        padding-right: 8px;
        font-size: 1rem;
        font-family: EuropaMedium;
    }

    .arrow {
        z-index: 3;
        position: absolute;
        bottom: 50px;
        left: 50%;
        width: 30px;
        display: block;
    }

    .arrow a {
        width: 100%;
        height: 100%;
    }

    .movieTitle h3 {
        letter-spacing: 1px;
    }

    .movies {
        background-image: url("images/bgMovies.png");
        height: 100%;
        display: flex;
        padding-top: 50px;
        padding-left: 100px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .catalogueContainer {
        display: flex;
        flex-direction: row;
        gap: 50px;
    }

    .movieButton {
        display: flex;
        flex-direction: column;
        color: white;
        text-decoration: none;
        gap: 20px;
    }

    .movieContainer:hover h3 {
        color: #C99F0A;
        transition: 200ms;
    }

    .movieContainer:hover h4 {
        color: #C99F0A;
        transition: 200ms;
    }

    .movieContainer:hover img {
        opacity: 75%;
        transition: 200ms;
    }

    .movieContainer img {
        transition: 200ms;
    }

    .movieButton img {
        width: 300px;
    }

    .watchNowButton:hover {
        background-color: #C99F0A;
        transition: 200ms;
    }

    .titleMovie {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .moviePhone {
        display: none;
    }

    .movieLarge {
        display: block;
    }

    .bottomMovie {
        display: flex;
        flex-direction: column;
        gap: 5px;
        margin-top: 10px;
    }

    .watchNowButton {
        background-color: #FFCE1D;
        text-decoration: none;
        padding: 6px 18px;
        border-radius: 30px;
        transition: 200ms;
    }

    .watchNowButton p {
        margin: 0;
        color: white;
        font-family: EuropaBold;
        letter-spacing: 1px;
    }

    .videos {
        height: 400px;
        background-color: #2C2C2C;
        height: 100%;
        display: flex;
        padding-top: 50px;
        padding-left: 100px;
        padding-right: 100px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .youtubeButton {
        display: flex;
        flex-direction: row;
        background-color: white;
        width: max-content;
        border-radius: 40px;
        padding: 5px 15px;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        transition: 100ms;
    }


    .youtubeButton i {
        color: red;
    }


    .youtubeButton p {
        color: #2C2C2C;
        font-family: EuropaMedium;
        margin: 0;
        font-size: 1rem;
    }

    .youtubeButton:hover {
        background-color: lightgrey;
        transition: 100ms;
    }

    .videosContainer {
        display: flex;
        gap: 30px;
    }

    .video {
        width: 30%;
        text-decoration: none;
    }

    .video img {
        transition: 200ms;
    }

    .video h3 {
        transition: 200ms;
    }

    .video:hover img {
        opacity: 75%;
        transition: 200ms;
    }

    .video:hover h3 {
        color: #C99F0A;
        transition: 200ms;
    }

    .video img {
        width: 100%;
        margin-bottom: 10px;
    }

    .video h3 {
        padding-left: 5px;
    }

    .aboutus {
        background-image: url("images/bgAboutus.png");
        height: 100%;
        display: flex;
        padding-top: 50px;
        padding-left: 100px;
        padding-right: 100px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        gap: 25px;
    }

    .textAboutus {
        padding-right: 25%;
    }

    .profilesContainer {
        display: flex;
        flex-direction: row;
        width: 100%;
        justify-content: center;
        gap: 50px;
    }

    .profilContainer {
        display: flex;
        flex-direction: column;
        width: 22%;
        border-bottom: 2px solid #FFCE1D;
        padding-bottom: 20px;
    }

    .descriptionContainer {
        position: relative;
        overflow: hidden;
    }

    .textDescContainer {
        z-index: 2;
        position: relative;
        padding: 20px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }

    .textDescContainer h2 {
        border: none;
        font-size: 1rem;
    }


    .textDescContainer p {
        padding-bottom: 10px;
        border-bottom: 2px solid #ffffff;
        margin: 0;
        line-height: normal;
        margin-top: 10px;
    }

    .descriptionContainer img {
        width: 100%;
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .linksDanuba {
        padding-top: 15px;
        display: flex;
        justify-content: end;
        gap: 10px;
    }

    .linksChuila {
        padding-top: 15px;
        display: flex;
        justify-content: flex-start;
        gap: 10px;
    }

    .contact {
        position: relative;
    }

    .contactMain {
        height: 100%;
        display: flex;
        padding-top: 50px;
        padding-left: 100px;
        padding-right: 100px;
        padding-bottom: 50px;
        display: flex;
        flex-direction: column;
        gap: 40px;
        padding-top: 100px;
        z-index: 1;
    }

    .contact h2 {
        z-index: 1;
    }

    .bgContact {
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
        width: 100%;
    }

    .form {
        display: flex;
        z-index: 1;
        flex-direction: row;
        justify-content: space-between;
    }

    .formulaire {
        width: 50%;
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .inputBox {
        display: flex;
        flex-direction: column;
        gap: 20px;
        width: 100%;
    }

    .mapContainer {
        width: 43%;
    }

    .mapContainer img {
        width: 100%;
    }

    input {
        background-color: transparent;
        border-bottom: 1px solid #FFCE1D;
        border-left: none;
        border-right: none;
        border-top: none;
        color: white;
        font-size: 1.5rem;
        padding: 5px;
        font-family: EuropaLight;
    }

    textarea {
        background-color: transparent;
        border-bottom: 1px solid #FFCE1D;
        border-left: none;
        border-right: none;
        border-top: none;
        resize: none;
        font-size: 1.5rem;
        padding: 5px;
        font-family: EuropaLight;
        color: white;
    }

    .buttonSend {
        background-color: #FFCE1D;
        color: white;
        font-family: EuropaMedium;
        padding: 10px 30px;
        transition: 300ms;
        border: none;
    }

    .buttonSend:hover {
        background-color: #C99F0A;
        color: white;
        transition: 300ms;
        cursor: pointer;
    }


    textarea:focus,
    input:focus {
        outline: none;
    }

    input::placeholder,
    textarea::placeholder {
        color: white;
    }

    .footerLarge {
        margin-top: 50px;
        padding: 50px;
        display: flex;
        flex-direction: row;
        gap: 15px;
        justify-content: space-between;
    }

    .footerLarge {
        display: flex;
    }

    .footerPhone {
        display: none;
    }

    .footerLogoContainer {
        position: relative;
        width: 10%;
    }

    .footerLogoContainer img {
        position: absolute;
        top: 0;
        bottom: 0;
        margin: auto;
    }

    footer .socialMediasContainer {
        align-items: center;
    }

    .contactInfo p {
        margin: 0;
        font-family: EuropaMedium;
    }

    .divLine {
        width: 300px;
        display: flex;
        align-items: center;

    }

    .line {
        border-top: 2px solid #FFCE1D;
        /* horizontal line */
        width: 100%;
    }

    .movieTitle {
        z-index: 3;
        position: absolute;
        bottom: 100px;
        left: 100px;
        width: 10%;
        display: flex;
        flex-direction: column;
        width: max-content;
        gap: 10px;
    }

    .faithTitle img {
        width: 200px;
    }

    .synopsisFull {
        display: flex;
        flex-direction: row;
        padding: 70px 120px;
        gap: 60px;
    }

    .synopsisPhone {
        display: none;
    }

    .poster img {
        width: 290px;
    }

    .synopsisContainer {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }

    .synopsisText {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .synopsisContainer p {
        margin: 0;
    }

    .buttonsWatchMovie {
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .buttonsWatchMovie a {
        padding: 10px 15px;
    }

    .buttonsWatchMovie h3 {
        color: #2C2C2C;
        font-family: EuropaBold;
        font-size: 1.2rem;
    }

    .buttonWatch {
        background-color: #FFCE1D;
        transition: 200ms;
    }

    .buttonWatch:hover {
        background-color: #C99F0A;
        transition: 200ms;
    }

    .details {
        display: flex;
        flex-direction: column;
        gap: 30px;
        border-bottom: 1px solid #FFCE1D;
        height: min-content;
        padding-bottom: 50px;
    }

    .detailsTitles {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }

    .detailsInfos {
        display: flex;
        flex-direction: column;
        justify-content: center;
        gap: 30px;
    }

    .detailsContainer {
        display: flex;
        width: max-content;
        gap: 50px;
    }

    .detailsContainer p {
        margin: 0;
    }

    .galleryContainer {
        padding: 30px 0px;
        display: flex;
        flex-direction: column;
        gap: 50px;
    }

    .h2Caroussel {
        padding: 0px 120px;
    }

    .caroussel {
        position: relative;
    }

    .splide {
        padding: 0px 120px;
    }

    li img {
        width: 100%;
    }

    .splide__slide a {
        display: flex;
        justify-content: center;
        flex-direction: column;
        align-items: center;
        color: white;
        transition: 200ms;
    }

    .splide__slide a:hover {
        color: #C5A422;
        transition: 200ms;
    }

    .arrowRight {
        display: flex;
        flex-direction: row;
        position: absolute;
        justify-content: space-between;
        top: 50%;
        right: 0;
        transform: translateY(-50%);
        padding: 0 40px;
        box-sizing: border-box;
    }

    .arrowLeft {
        display: flex;
        flex-direction: row;
        position: absolute;
        justify-content: space-between;
        top: 50%;
        transform: translateY(-50%);
        padding: 0 40px;
        box-sizing: border-box;
    }

    .arrows:hover {
        cursor: pointer;
    }

    .arrows img {
        width: 15px;
    }

    .lighthouseTitle {
        width: 300px;
    }


    .faithTitle {
        width: 200px;
    }
}


/***** LARGE SCREEN ******/

@media (min-width: 1600px) {
    .footerLarge {
        margin-top: 150px;
    }
}