*, ::before, ::after{
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-decoration: none;
}

body{
    overflow-x: hidden;
}

@media screen and (min-width : 0px){
    /*HEADER*/
    .header_wrapper{
        width: 100%;
        height: auto;
        border-bottom: 5px solid black;
    }
    .header_container{
        width: 100%;
        height: auto;
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-around;
    }
    .header_container > .header_bars{
        width: 20%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .header_container > .header_bars > i{
        color: black;
        font-size: 1.5rem;
    }
    .header_container > .header_logo{
        width: 40%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .header_container > .header_logo > a{
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .header_container > .header_logo > a > img{
        width: 80%;
    }
    .header_container > .header_shop{
        width: 20%;
        height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    .header_container > .header_shop > a > i{
        color: black;
        font-size: 1.5rem;
    }

    /* Base header déjà présente, on ajoute : */

/* NAV FULLSCREEN */
.fullscreen_nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    color: white;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    overflow: hidden;
}

/* Liste verticale */
.fullscreen_nav ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0 0 50px 0;
    z-index: 10;
    position: relative;
}

.fullscreen_nav ul li {
    margin: 20px 0;
}

.fullscreen_nav ul li a {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: color 0.3s ease;
}

.fullscreen_nav ul li a:hover {
    color: #FFD700;
    cursor: pointer;
}

/* Slideshow arrière-plan */
.background_slideshow {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.background_slideshow .slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

/* La slide visible */
.background_slideshow .slide.active {
    opacity: 1;
}

/* Fermer bouton */
#closeMenu {
    font-size: 1rem;
    margin-top: 40px;
    display: inline-block;
}
body::-webkit-scrollbar{
    display: none;
}

}
/* Hamburger visible uniquement mobile */
@media screen and (min-width: 768px) {
    .header_container > .header_logo > a > img{
        width: 60%;
    }
    .header_bars {
        display: flex;
        cursor: pointer;
    }
}
@media screen and (min-width : 1024px){
    /*HEADER*/
    .header_container > .header_logo > a > img{
        width: 40%;
    }
}

@media screen and (min-width : 1440px){
    /*HEADER*/
    .header_container > .header_logo > a > img{
        width: 30%;
    }
}