@import url('https://fonts.googleapis.com/css2?family=Space+Grotesk:wght@300;400;500;600;700&family=Space+Mono:ital,wght@0,400;0,700;1,400;1,700&display=swap');

/* STYLE NAV */

*{
    margin: 0;
    font-family: "Space Mono", monospace;
    font-size: 14px;
}

a{
    color: auto;
    text-decoration: none;
}

body{
    background-color: #000;
}

main{
    position: relative;
    overflow: hidden;
    width: 100vw;
}

.nav-laterale{
    position: fixed;
    height: 100vh;
    width: 300px;
    padding: 25px;
    box-sizing: border-box;
    z-index: 100;
}


.nav-image-null{
    position: absolute;
    width: 140px;
    mix-blend-mode: color-burn;
    max-height: 800px;
}

.nav-trace{
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
}


/* Links en hover */

.nav-laterale-links-list{
    position: absolute;
    left: 53px;
    top: 70px;

}

.nav-laterale-links{
    list-style: none;
    font-weight: bold;
    font-size: 13px;
    width: max-content;
    position: absolute;
    clip-path: polygon(0 0, 11% 0, 11% 100%, 0% 100%);
    transition: 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
    cursor: pointer;
    color: #000;
}

.nav-laterale-links span{
    background-color: #FF361E;
    margin-left: 20px;
    color: #000;
}

.nav-laterale-links::before{
    content: '';
    width: 12px;
    height: 12px;
    background-color: #FF361E;
    position: absolute;
    left: 0px;
    top: 3px;
    border-radius: 100%;
}

.nav-laterale-links:hover{
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}


.nav-laterale-links:nth-child(1){
    top: 586px;
}

.nav-laterale-links:nth-child(2){
    top: 560px;
}
.nav-laterale-links:nth-child(3){
    top: 544px;
}
.nav-laterale-links:nth-child(4){
    top: 525px;
}
.nav-laterale-links:nth-child(5){
    top: 500px;
}
.nav-laterale-links:nth-child(6){
    top: 470px;
}
.nav-laterale-links:nth-child(7){
    top: 455px;
}
.nav-laterale-links:nth-child(8){
    top: 346px;
}
.nav-laterale-links:nth-child(9){
    top: 230px;
}
.nav-laterale-links:nth-child(10){
    top: 117px;
}
.nav-laterale-links:nth-child(11){
    top: 3px;
}


/* Compteurs en bas */

.nav-laterale-info{
    position: absolute;
    bottom: 25px;
    color: white;
}



/* MENU TOP */

/* BOUTON */

.bouton-menu{
    position: fixed;
    background-color: transparent;
    border: none;
    width: 130px;
    right: 10px;
    cursor: pointer;
    z-index: 1000;

}

.bouton-menu img{
    width: 100%;
}

/* MENU-CONTENU */

.menu-top{
    width: 100vw;
    height: 100vh;
    background-color: #FF361E;
    z-index: 10000;
    position: fixed;
    padding: 20px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    top: -100%;
    transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);

    
}

.menu-top .bandeau-top{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
}

.menu-top .logo-menu-top{
    width: 65%;
    transform: translateY(-30px);
}

.menu-top .close-menu-top{
    background: transparent;
    border: none;
    width: 50px;
    display: block;
    margin-left: 50px;
    cursor: pointer;
}

.menu-top .close-menu-top img{
    width: 100%;
}

.btn-biblio{
    background: transparent;
    border: none;
    cursor: pointer;
}

.btn-credits{
    background: transparent;
    border: none;
    cursor: pointer;
}


/* CONTENU BAS */

.menu-top .bottom{
    display: flex;
    justify-content: space-between;
    height: 40%;
    width: 100%;
}

.menu-top .bottom .left{
    height: 100%;
    width: 30%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.menu-top .bottom .right{
    height: 100%;
    width: 50%;
    display: flex;
}

.menu-top .bottom .right .column{
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* MISE EN FORME GLOBALE LIENS   */

.menu-top-link{
    font-size: 25px;
    font-weight: bold;
    color: black;
    background-color: transparent;
    width: max-content;
}

.menu-top-link:hover{
    font-size: 25px;
    font-weight: bold;
    color: #FF361E;
    background-color: #000;
}



/* BIBLIO */

.biblio{
    font-family: "Space Mono", monospace;
    background-color: #FF3408;
    color: black;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    position: fixed;
    box-sizing: border-box;
    top: -100%;
    transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

a{
    text-decoration: none;
    color: black;
}

.biblio-header{
    display: flex;
    width: 100vw;
    height: 10vh;
    justify-content: space-between;
    padding: 0px 10px;
    box-sizing: border-box;
}

.btn-biblio-back{
    background: transparent;
    border: none;
    width: 55px;
    display: block;
    transform: rotate(90deg);
    margin-right: 10px;
    cursor: pointer;
}

.header--title{
    color: black;
    font-size: 80px;
    text-transform:uppercase;
    margin-left: 8px;
}

.header--menu-btn{
    width: 150px;
}

.header--menu-btn img{
    width: 100%;
}

.biblio-main{
    width: 100vw;
    height: 90vh;
    display: flex;
    
}

.main--container{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 30px 20px 20px 20px;
    box-sizing: border-box;
    width: 50%;
}

.main--container--item{
    list-style: none;
}

.main--container--item_title{
    font-weight: 800;
    font-size: 38px;
}

.main--container--item_list{
    list-style: none;
    padding-inline-start: 0px;
    font-weight: bold;
    text-transform: uppercase;
}


/* CREDITS */

.credits{
    
    background-color: #FF3408;
    color: black;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    position: fixed;
    box-sizing: border-box;
    top: -100%;
    transition: 0.8s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.credits-header{
    display: flex;
    width: 100vw;
    height: 10vh;
    justify-content: space-between;
    padding: 0px 10px;
    box-sizing: border-box;
}

.header--title{
    color: black;
    font-size: 80px;
    text-transform:uppercase;
    margin-left: 8px;
}

.header--menu-btn{
    width: 150px;
}

.header--menu-btn img{
    width: 100%;
}

.btn-credits-back{
    background: transparent;
    border: none;
    width: 55px;
    display: block;
    transform: rotate(90deg);
    margin-right: 10px;
    cursor: pointer;
}

.credits-main{
    width: 100vw;
    height: 90vh;
    display: flex;
}

.main--left{
    width: 60%;
    height: 90vh;
    padding: 25px;
    padding-top: 100px;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.main--left--logo{
    width: 100%;
}

.main--left--gob{
    width: 150px;
}


.main--right{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 100px 20px 20px 0px;
    box-sizing: border-box;
}

.main--right--item{
    list-style: none;
}

.main--right--item_title{
    font-weight: 800;
    font-size: 38px;
}

.main--right--item_list{
    list-style: none;
    padding-inline-start: 0px;
    font-weight: bold;
    text-transform: uppercase;
}
