/*
font-family: 'Oxygen', sans-serif;
font-family: 'Hammersmith One', sans-serif;
font-family: 'Nobile', sans-serif;
font-family: 'Montserrat', sans-serif;
*/

html
{
    --rouge : #FF5C5C;
    --rougeFonce : rgba(255, 92, 92, 0.2);
}

section,div,p
{
    cursor: default;
}

main
{
    height: 100vh;
    width: 100%;
    background-color: black;
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

header
{
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 25px;
    margin-bottom: 45px;
}
header menu
{
    font-family: 'Hammersmith One', sans-serif;
    margin : 1.5vh 1.5vh 1.5vh 1.5vh;
    padding: 0;
    min-width: 295px;
    letter-spacing: 0.3vh;
    font-size: 1.75vh;
}
header img.displayMobile
{
    display: none;
}
header img.notDisplay
{
    display: none;
}
header menu>ul
{
    width : 31vw;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    list-style: none;
    padding: 0;
}
header menu>ul>li>a 
{
    color: white;
    text-decoration: none;
    position: relative;
}
/* header menu > ul > li:hover .activePage  {
    color: blue;
} */
header menu>ul>li>a:not(.activePage):before
{
    color: white;
    content: "";
    position: absolute;
    width: 100%;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: var(--rouge);
    visibility: hidden;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
header menu>ul>li>a:not(.activePage):hover:before 
{
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

menu div
{
    display: none;
}
.activePage:before
{
    color: white;
    content: "";
    position: absolute;
    width: 100%;
    height: 1.5px;
    bottom: 0;
    left: 0;
    background-color: var(--rouge);
    visibility: visible;
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
    -webkit-transition: all 0.3s ease-in-out 0s;
    transition: all 0.3s ease-in-out 0s;
}
.activePage 
{
    
}
/* .activePage:hover 
{
    border-bottom: solid 0px var(--rouge);
} */
header>div {
    height: 16vh;
    /*border: solid 1px white;*/
    position : relative;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0;
    margin-top : 7vh;
}
#pageName {
    font-size: 15vh;
    color: var(--rougeFonce);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 1.5vh;
    text-align: center;

    max-width: 85vw;
}
header>div #descContent {
    position: absolute;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 2vh;
    letter-spacing: 0.9vh;
    text-align: center;
    width: 90vw;
}
span
{
    color: var(--rouge);
}
footer
{
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4vh;
    position : absolute;
    bottom: 1vh;
    padding: 4.5vh 0 1.5vh 0;
}

footer p 
{
    margin: 0;
}

.hidden_desktop {
    display: none;
}
.lien_int {
    color: var(--rouge);
    text-decoration: none;
}
.button:hover {
    transition: color 0.5s ease;
    color: var(--rouge);
}

@media only screen and (max-width: 640px){
    #bars
    {
        right: 28vw !important;
    }
}
  

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

    header
    {
        margin : 0;
    }
    header #pageName
    {
        text-align: center;
        letter-spacing: 0.8vh;
    }
    header>div {
        height: 8vh;
        margin-top : 17vw;
        margin-bottom: 3vw;
        width: 85vw;
    }
    header>div>#descContent
    {
        font-size: 2.9vw;
        letter-spacing: 1vh;
    }
    header>img
    {
        position: fixed;
        z-index: 5;
        right: 5vw;
        top: 5vw;
        cursor: pointer;
        height: 5vw;
        width: 5vw;
        /* transition: top 0.2s linear; */
    }
    header img.displayMobile
    {
        display: inherit;
    }
    header menu
    {
        display: none;
        margin: 0;
        position: fixed;
        z-index: 4;
        font-size: 1.75vh;
        height: 100vh;
        width: 100vw;
        background-color: rgba(0, 0, 0, 0.9);
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }
    header menu>ul
    {
        flex-direction: column;
        align-items: center;
        height: 50vh;
        font-size: 5vw;
    }
    menu div
    {
        display: flex;
        flex-direction: row;
        justify-content: space-around;
        width: 40vw;
        position: absolute;
        bottom: 3vh;
    }
    menu div a
    {
        color: white;
    }
    .display
    {
        display: flex;
    }
    footer
    {
        padding: 0;
        margin: 0;
        font-size: 3.1vw;
        position: absolute;
        bottom:1.5vh;
    }
    footer p
    {
        margin: 0;
    }
    .hidden_phone {
        display: none;
    }
    .hidden_desktop {
        display:inline;
    }
}


@media only screen and (max-width: 1400px){
    header menu {
        font-size: 1.25vw;
    }
    header menu ul {
        min-width: 400px;
    }
    
}  