/* ========================= */
/* CAROUSEL */
/* ========================= */

.gallery-carousel{
    width:70%;

    display:flex;
    flex-direction:column;

    padding:0px;
}

.cc{width: 100%;
    padding: 0% 1% 0% 2%;
    display: flex;
    flex-direction: column;
    align-items: center;}

.galeriephoto{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:15px;
}

.gallery-track{
    width:100%;

    display:flex;
    gap:10px;

    overflow-x:auto;
    scroll-behavior:smooth;

    scrollbar-width:none;
}

.gallery-track::-webkit-scrollbar{
    display:none;
}

.gallery-track img{
    width:320px;
    height:200px;

    object-fit:cover;

    flex-shrink:0;

    border-radius:10px;
}

.gallery-btn{
    width:45px;
    height:45px;

    border:none;

    background:#10213FFF;
    color:#fff;

    border-radius:50%;

    cursor:pointer;

    flex-shrink:0;

    font-size:24px;
}

/* ========================================= */
/* SLIDER */
/* ========================================= */

.slider{
    position:relative;
    width:100%;
    height:750px;
    overflow:hidden;
}

/* ========================================= */
/* SLIDE */
/* ========================================= */

.slide{
    position:absolute;
    inset:0;

    opacity:0;
    visibility:hidden;

        transition:
        opacity 1s ease,
        visibility 1s ease;

    overflow:hidden;
}

.slide.active{
    opacity:1;
    visibility:visible;
    z-index:1;display:block;
}

/* ========================================= */
/* IMAGE */
/* ========================================= */

.slide img{
    position:absolute;

    top:0;
    right:0;

    width:75%;
    height:100%;

    object-fit:cover;
    display:block;
}

.slide{
    overflow:hidden;
}

/* ========================================= */
/* CONTENT WRAPPER */
/* ========================================= */

.content-wrapper{
    position:relative;

    display:flex;

    width:100%;
    height:100%;

    z-index:5;
}

/* ========================================= */
/* LEFT PANEL */
/* ========================================= */

.content{
    width:620px;
    min-width:620px;

    height:100%;

    padding:70px 40px;

    background:#10213F;

    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:flex-start;

    z-index:10;
}

/* ========================================= */
/* BLUR */
/* ========================================= */

.blur-separator{
    width:320px;
    height:100%;

    background:
    linear-gradient(
        to right,
        rgba(16,33,63,1) 0%,
        rgba(16,33,63,0.92) 15%,
        rgba(16,33,63,0.70) 40%,
        rgba(16,33,63,0.35) 70%,
        rgba(16,33,63,0) 100%
    );
}

/* ========================================= */
/* TITLE */
/* ========================================= */

.content h1{
    font-size:72px;
    line-height:0.92;

    text-transform:uppercase;

    color:#FFF;

    letter-spacing:2px;

    font-weight:900;
}

/* ========================================= */
/* TEXT */
/* ========================================= */

.content p{
    font-size:28px;

    color:#FFF;

    line-height:1.4;

    max-width:420px;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */

.buttons{
    width:100%;

    display:flex;
    flex-direction: column;

    gap:15px;
}



.btn{
    display:flex;
    align-items:center;
    justify-content:flex-start;

    gap:10px;


    padding:16px 18px;

    border:none;
    border-radius:10px;

    background:#FFA700;

    color:#fff;

    font-size:20px;
    font-weight:700;

    cursor:pointer;

    transition:0.3s ease;
}
.grey{
    background:#525252;
    cursor: context-menu;
}

.bleu{
    background:#5662f6;
    width: 100%;
}

.btn:hover{
    transform:translateY(-2px);
}

.secondary{
    background:#00BBFF;
    width: 100%;
}

.btn .steam-logo{
object-fit: contain;
    flex-shrink: 0;
    position: relative;
}

/* ========================================= */
/* DOTS */
/* ========================================= */

.slider-navigation,
.dots{
    position:absolute;

    bottom:30px;
    left:50%;

    transform:translateX(-50%);

    display:flex;
    gap:12px;

    z-index:100;
}

.dot{
    width:12px;
    height:12px;

    border-radius:50%;

    background:rgba(255,255,255,0.5);

    cursor:pointer;

    transition:0.3s;
}

.dot.active{
    background:#fff;

    transform:scale(1.2);
}

/* ========================================= */
/* FULL HD */
/* ========================================= */

@media screen and (min-width:1600px){

    .slider{
        height:900px;
    }

    .content{
        width:720px;
        min-width:720px;

        padding:90px 50px;
    }

    .content h1{
        font-size:92px;
    }

    .content p{
        font-size:34px;
        max-width:520px;
    }

    .blur-separator{
        width:380px;
    }

    .btn{
        font-size:24px;
        padding:18px 22px;
    }
}

/* ========================================= */
/* TABLETTE */
/* ========================================= */

@media screen and (max-width:1200px){

    .slider{
        height:900px;
    }

    .content-wrapper{
        display:block;
    }

    .content{
        position:absolute;

        inset:auto 0 0 0;

        width:100%;
        min-width:100%;

        height:auto;

        padding:60px 40px;

        background:
        linear-gradient(
            to top,
            rgba(16,33,63,1),
            rgba(16,33,63,0.88),
            rgba(16,33,63,0.2)
        );
    }

    .blur-separator{
        display:none;
    }

    .content h1{
        font-size:58px;
    }

    .content p{
        font-size:24px;
        max-width:70%;
    }

    .buttons{
        flex-wrap:wrap;
    }
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media screen and (max-width:768px){

    .slider{
        height:100vh;
        min-height:760px;
    }

    .content{
        padding:40px 20px;
    }

    .content h1{
        font-size:38px;
        line-height:1;
    }

    .content p{
        font-size:18px;
        max-width:100%;
    }

    .buttons{
        gap:12px;
    }

    .btn{
        justify-content:center;

        font-size:17px;

        padding:14px 16px;
    }

    .btn .steam-logo{
        width:24px;
        height:24px;
    }

    .slider-navigation,
    .dots{
        bottom:15px;
    }
}

/* ========================================= */
/* PETIT MOBILE */
/* ========================================= */

@media screen and (max-width:480px){

    .slider{
        min-height:680px;
    }

    .content h1{
        font-size:30px;
    }

    .content p{
        font-size:16px;
    }

    .btn{
        font-size:15px;
    }
}


.zoom-overlay{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;

    background:rgba(0,0,0,0.8);

    display:flex;
    align-items:center;
    justify-content:center;

    z-index:999;

    display:none;
}

.zoom-overlay img{
    max-width:90%;
    max-height:90%;
    border-radius:10px;

    transform:scale(1);
    transition:0.3s ease;
}

.zoom-overlay.active img{
    transform:scale(2);
}

.zoom-overlay.active{
    display:flex;
}

/* ========================================= */
/* DESKTOP LARGE 2048px */
/* ========================================= */

@media screen and (min-width:1800px){

    .slider{
        height:950px;
    }

    .content-wrapper{
        display:flex;
    }

    .content{
        width:720px;
        min-width:720px;

        padding:90px 50px;
    }

    .content h1{
        font-size:96px;
        line-height:0.92;
    }

    .content p{
        font-size:36px;
        max-width:520px;
    }

    .blur-separator{
        width:380px;
    }

    .btn{
        font-size:26px;
    }

    .btn .steam-logo{
        width:34px;
        height:34px;
    }

    .gallery-carousel{
width: 70%;
        display: flex;
        flex-direction: row;
    }

    .gallery-track{
        max-width:1800px;
    }

    .gallery-track img{
        width:420px;
        height:250px;
    }

    .gallery-btn{
        width:60px;
        height:60px;
        font-size:30px;
    }
}

/* ========================================= */
/* FULL HD 1920x1080 */
/* ========================================= */

@media screen and (min-width:1600px) and (max-width:2048px){

    .slider{
        height:900px;
    }

    .content-wrapper{
        display:flex;
    }

    .content{
        width:620px;
        min-width:620px;

        padding:80px 50px;
    }

    .content h1{
        font-size:82px;
        line-height:0.95;
    }

    .content p{
        font-size:30px;
        max-width:500px;
    }

    .blur-separator{
        width:320px;
    }

    .buttons{
        gap:20px;
    }

    .btn{
        font-size:24px;
    }

    .btn .steam-logo{
        width:32px;
        height:32px;
    }


    .gallery-track{
        max-width:1500px;
    }

    .gallery-track img{
        width:360px;
        height:220px;
    }

    .gallery-btn{
        width:55px;
        height:55px;
        font-size:28px;
    }
}

/* ========================================= */
/* TABLETTE */
/* ========================================= */

@media screen and (max-width:1200px){

    .slider{
        height:auto;
        min-height:900px;
    }

    .slide img{
        position:absolute;
        inset:0;

        width:100%;
        height:100%;

        object-fit:cover;
    }

    .content-wrapper{
        display:block;
    }

    .content{
        position:absolute;

        inset:auto 0 0 0;

        width:100%;
        min-width:100%;

        height:auto;

        padding:60px 40px;

        justify-content:flex-end;

        background:
        linear-gradient(
            to top,
            rgba(16,33,63,1),
            rgba(16,33,63,0.88),
            rgba(16,33,63,0.2)
        );
    }

    .blur-separator{
        display:none;
    }

    .content h1{
        font-size:56px;
        height:auto;

        margin-bottom:25px;
    }

    .content p{
        font-size:24px;

        line-height:1.4;

        max-width:70%;

        margin-bottom:30px;
    }

    .buttons{
        width:100%;

        flex-wrap:wrap;
    }

    .button{
        width:100%;
        flex-wrap:wrap;
    }

    .btn{
        justify-content:center;

        font-size:20px;
    }

    .troisieme{
        width:100%;
    }


    .gallery-track img{
        width:260px;
        height:180px;
    }
}

/* ========================================= */
/* MOBILE */
/* ========================================= */

@media screen and (max-width:768px){

    .slider{
        height:100vh;
        min-height:750px;
    }

    .slide img{
        position:absolute;
        inset:0;

        width:100%;
        height:100%;

        object-fit:cover;
    }

    .content{
        width:100%;
        height:auto;

        padding:40px 20px;

        justify-content:flex-end;
        align-items:flex-start;

        background:
        linear-gradient(
            to top,
            rgba(16,33,63,1),
            rgba(16,33,63,0.82),
            rgba(16,33,63,0.25)
        );
    }

    .content h1{
        font-size:38px;
        line-height:1;

        margin-bottom:20px;
    }

    .content p{
        font-size:18px;
        line-height:1.5;

        max-width:100%;

        margin-bottom:25px;
    }

    .buttons{
        width:100%;

        flex-direction:column;
    }

    .button{
        width:100%;

        flex-direction:column;

        gap:12px;
    }

    .btn{
        width:100%;

        justify-content:center;

        font-size:18px;

        padding:14px 18px;
    }

    .troisieme{
        width:100%;
    }

    .btn .steam-logo{
        width:24px;
        height:24px;
    }

    .slider-navigation,
    .dots{
        bottom:15px;
    }

    .dot{
        width:10px;
        height:10px;
    }

    .gallery-carousel{
        width:100%;
    }

    .gallery-track img{
        width:220px;
        height:150px;
    }

    .gallery-btn{
        width:32px;
        height:32px;

        font-size:22px;
    }
}

/* ========================================= */
/* PETIT MOBILE */
/* ========================================= */

@media screen and (max-width:480px){

    .slider{
        min-height:680px;
    }

    .content{
        padding:30px 16px;
    }

    .content h1{
        font-size:30px;
    }

    .content p{
        font-size:16px;
    }

    .btn{
        font-size:16px;

        padding:12px 14px;
    }

    .gallery-track img{
        width:180px;
        height:120px;
    }

    .gallery-btn{
        display:none;
    }
}