/*
* ===========================================
* Styles CSS (général)
* ===========================================
*/



/*
* -------------------------------------------
* Général
* -------------------------------------------
*/

/* Corps de la page */

body {
	padding: 0;
	margin: 0;
	background-color: #E9E4FE;
	width: 100vw;
	height: 100vh;
	font-family: "indivisible", sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 0.85vw;
	color: #000000;
	line-height: 2.2vh;
	overflow: hidden;
}






/* Tous les Liens */
a {
	text-decoration: none;
	color: #000000;
}

a:hover{
	color: #000000;
}

a:visited{
	
}




/*
* -------------------------------------------
* bandeau navigation
* -------------------------------------------
*/

/* Liste des éléments pour le menu */
ul {
	width: 94vw;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	background-color: #E9E4FE;
	padding: 2vh 3vw; 
	list-style-type: none;
	margin: 0;
	position: fixed;
	z-index: 1000;
    cursor: default;

}

/* Pour chaque élément de la liste */
li {
	display: inline-flex;
}




header {
    position: fixed;
    top: -6.5vh;
    z-index: 1000;
    transition: top 0.3s, background-color 0.1s;
    cursor: default;
}

header:hover{
    top:0vh;
    background-color: #E9E4FE;
    cursor: default;
}


/* Pour le survol de la zone */
.zoneHover:hover + header {
    top: 0vh;
    background-color: #E9E4FE;
    z-index: 2000;
    cursor: default;
}


.zoneHover {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 4vh;
    z-index: 1000;
    cursor: default;
}




#LegendeImage {
    display: block;
    margin: 0;
    padding-left: 43vw;
    color: #000000;
    text-align: left;
    cursor: default;
}



#titreAbout{
    display: none;
    padding-left: 43vw;
    color: #E9E4FE;
    text-align: left;
    cursor: pointer;
    z-index: 1000;
    cursor: default;
}

#titreAbout.titreAboutVisible{
    display: flex;
    cursor: default;
    
}

#LegendeImage.invisible {
    display: none;
}





em {
	font-style: italic;
}


span {
	font-size: 1.1vw;
}



/*legende descend automatiquement*/
header.headerVisibleAuto {
    top: 0vh;
    background-color: #E9E4FE;
}



/*bouton about*/

#btAbout{
    margin-left: auto;
	cursor: pointer;
}


.headerVisible {
    top: 0vh;
    background-color: #E9E4FE;
    z-index: 2000;
    cursor: default;
}



/*bouton + */

#btPlus {
    padding : 0vw;
    margin-left: 1vw;
    margin-top: 0.1vh;
    margin-bottom: 0.1vh;
    font-size: 1vw;
    z-index: 5000;
    cursor: default;
}



/*
* -------------------------------------------
* about
* -------------------------------------------
*/

.container_about {
    display: grid;
    position: fixed;
    grid-template-columns: 7% 3% 15% 11% 8% 5% 3% 20% 29%;
    gap: 0.3vw 0vw;
    width: 100vw;
    height: 100vh;
    top: -100vh;
    padding: 3vw;
    padding-top: 0vw;
    box-sizing: border-box;
    background-color: #E9E4FE;
    overflow: auto;
    transition: top 0.8s;
    z-index: 100;
    scroll-behavior: smooth;
    cursor: default;
}

.ferAdroite {
    text-align: right;
}

.cell {
    padding: 0.5vw 0vw;
}


.colonne1 { grid-column: 1; }
.colonne2 { grid-column: 2; }
.colonne3 { grid-column: 3; }
.colonne4 { grid-column: 4; }
.colonne5 { grid-column: 5; }
.colonne6 { grid-column: 6; }
.colonne7 { grid-column: 7; }
.colonne8 { grid-column: 8; }
.colonne9 { grid-column: 9; }

.colonne89 { grid-column: 8 / span 2; }


.ligne-separation {
    border-top: 0.07vw solid black;
    margin-top: 1vw;
}



/* Transition pour afficher/masquer la fenêtre */
.aboutVisible {
    top: 5.5vh;
}








/*
* -------------------------------------------
* images
* -------------------------------------------
*/



#boiteImages {
    position: relative;
    max-width: 100%;
    height: 100vh;
    margin: auto;

}

.half-screen #boiteImages{
    position: absolute;
    top: 0;
    left: 50%;
    width: 50%;
    height: 100%;
    cursor: pointer;
}

.image {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 100vh;
    object-fit: contain;
    display: none;
}

.image.active {
    display: block;
}



/*
* -------------------------------------------
* Responsive
* -------------------------------------------
*/

@media (min-width: 751px) {
    .mobile {
        display: none;
    }
    .ecran {
        display: block;
    }
}



























