html
{
    margin: 0;
    overflow-x: hidden;
}

body
{
    margin: 0;
    font-family: 'League Spartan', sans-serif;
    height: auto;
    overflow-x: hidden;
}

body::before
{
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../img/backgroundShop.png') no-repeat center/cover;
    z-index: -1;
}

/* Header de la page */

header 
{
    display: grid;
    width: 100%;
    height: auto;
    grid-template-columns: 0.5fr 2fr 0.5fr;
    grid-template-rows: repeat(1, 1fr);
    background: transparent;
    margin-left: auto;
    margin-right: auto;
    position: fixed;
}

.redirection
{
    height: 5vw;
    margin: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    grid-column: 1;
}

#logo
{
    max-width: 80%;
}

/* Navbar */

ul, li
{
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0;
}

li, a
{
    display: flex;
    text-decoration: none;
    margin: 20px;
}

.nav-link
{
    color: rgb(255, 255, 255);
    font-size: 20px;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
}

.nav-link:hover
{
    border-bottom: 2px solid white;
}

/* FR EN */

#arrowMenu2
{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 10px;
    height: 10px;
    transform: rotate(90deg);
    filter: brightness(0) invert(1);
    padding: 5px;
}

.selected-lang
{
    font-size: 18px;
    color: #ffffff;
    border-bottom: 2px solid transparent;
    right: 0;
}

.lang-dropdown
{
    display: flex;
    position: absolute;
    right: 0;
    margin: 10px;
    grid-column: 3;
}

ul.select-lang
{
    padding: 0;
}

.select-lang
{
    height: auto;
    display: none;
    position: absolute;
    top: 70%;
    transition-duration: 0.3s;
    border-radius: 3px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-dropdown:hover .select-lang
{
    display: block;
}

.select-lang li
{
    height: 40px;
    margin: 0px;
}

.select-lang li a 
{
    color: white;
    font-size: 18px;
    transition-duration: 0.5s;
    border-bottom: 2px solid transparent;
    transition: border-bottom 0.3s ease;
}

.select-lang li a:hover
{
    border-bottom: 2px solid white;
}

.select-lang.white-bg
{
    background-color: white;
    box-shadow: none;
}
  
.select-lang.white-bg li a
{
    color: black;
}

.en
{
    display: none;
}

/** Grid Boutique Principale **/

.gridBoutique 
{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 700px;
    flex-direction: column;
}

.contentBoutique
{
    height: 700px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

#titleBoutique
{
    color: white;
    font-size: 30px;
    font-family: 'Shrikhand', serif;
}

#textBoutique
{
    width: 60%;
    color: white;
    font-size: 15px;
    text-align: center;
}

.gridReseaux
{
    display: grid;
    width: 20%;
    height: auto;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(1, 1fr);
    margin-left: auto;
    margin-right: auto;
}


.reseaux
{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: row;
}

#insta
{
    width: 1.5vw;
    margin: 20px;
    opacity: 0.75;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

#youtube
{
    width: 2.25vw;
    margin: 20px;
    opacity: 0.75;
    -webkit-filter: invert(100%);
    filter: invert(100%);
}

#tiktok
{
    width: 1.25vw;
    margin: 20px;
    opacity: 0.75;
}

@media (max-width: 850px)
{
    body::before
    {
        filter: contrast(70%);
    }

    header
    {
        display: grid;
        grid-template-columns: 0.5fr 2fr 0.5fr;
        grid-template-rows: repeat(1, 1fr);
        margin-top: 3%;
    }

    .redirection
    {
        width: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        grid-column: 2;
        margin: 30px;
    }

    #logo
    {
        width: 50%;
    }

    #insta
    {
        width: 2.5vw;
    }

    #tiktok
    {
        width: 2.5vw;
    }
    
    #youtube
    {
        width: 3.5vw;
    }
}

@media (max-width: 600px)
{
    #logo
    {
        width: 70%;
    }

    #insta
    {
        width: 5vw;
    }

    #tiktok
    {
        width: 5vw;
    }
    
    #youtube{
        width: 7vw;
    }
}

@media (max-width: 450px)
{
    #titleBoutique
    {
        text-align: center;
        font-size: 20px;
    }

    #textBoutique
    {
        width: 80%;
        display: flex;
        flex-direction: row;
    }

    #insta
    {
        width: 5vw;
    }

    #tiktok
    {
        width: 5vw;
    }
    
    #youtube
    {
        width: 7vw;
    }

    #arrowMenu2
    {
        width: 30%;
    }

    .selected-lang
    {
        font-size: 15px;
    }

    .select-lang li a
    {
        font-size: 15px;
    }
}

@media screen and (max-height: 400px)
{
    html
    {
        overflow-y: hidden;
    }

    .gridBoutique
    {
        height: 400px;
    }

    .contentBoutique
    {
        height: 400px;
    }
}

@media screen and (max-height: 300px)
{
    #titleBoutique
    {
        font-size: 15px;
    }

    #textBoutique
    {
        font-size: 10px;
    }
}