@charset "utf-8";
/* CSS Document */

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body, html {
    height: 100%;
    width: 100%;
	color: #000000;
	font-weight: normal;
	font-family: "Century Gothic", sans-serif;
	font-size: 16px;
	margin: 0px;
	padding: 0px;
	background-color:#ffffff;
}

#page{
	display: flex;
    height: 100%;
}

#gauche{
	background-color: #004AAD;
	height: 100%;
	width: 300px;
	margin-top: 0px;
	margin-bottom: 0px;
	padding-top:20px;
	float: left;

}

#logo{
	width:300px;
	height:300px;
	padding-left: 10px;
	padding-right: 10px;
}

#menu{
	color:#FFFFFF;
	font-size: 16px;
}

#menu a{
	text-decoration:none;
	color:#ffffff;
	font-weight: normal;
	padding-left: 36px;
	display : inline-block;
    white-space: nowrap;	
}

#menu a:hover{
	font-weight:bold;
	color: #FCF103;
}

#menu a.active{
	font-weight:bold;
	border-left-color: rgba(255, 255, 255, 1);
	border-left-width: 8px;
	padding-left: 28px;
    border-left-style: solid;
    
}

.menu{
	padding-bottom: 15px;
	width: 150px;
	line-height: 20px;

}


#droite{
	flex-grow: 1;
    height: 100%;
    overflow-y: auto;
	width: auto;
 	background-color: #ffffff;
 	float: left;
 	display: block;
 	
}

#header{
	background-color: #3A3A3A;
	height: auto;
	width: 100%;
	padding-top: 20px;
	padding-bottom : 20px;
	padding-left: 50px;
	padding-right: 50px;
 	text-align: center;
}

#header img{
	max-width: 100%;
  	max-height: 100%;
  	object-fit: contain;
}

#header2{
	background-image: url('../div/images/photo_groupe.jpg');
	background-size: cover; 
  	background-position: center; 
 	background-repeat: no-repeat; 
  	height: 200px;  /*Définit la hauteur de l'élément */
	width: 100%;
	padding-top: 0px;
	padding-bottom : 0px;
	padding-left: 0px;
	padding-right: 0px;
 	text-align: center;
}

#titre_page{
	background-color: #004AAD;
	height: 50px;
	font-size: 25px;
	color: #ffffff;
	font-weight: bold;
	display: flex;
  	justify-content: center; /* Centrer horizontalement */
  	align-items: center;     /* Centrer verticalement */
	
}

#corps{
	background-color: #ffffff;
	height: auto;
	width: 100%;
	padding-top: 20px;
	padding-bottom : 20px;
 	padding-left: 50px;
 	padding-right: 50px;
 	font-family: Arial;
 	font-size: 14pt;
}

#corps_photo img{
	max-width: 100%;
  	max-height: 100%;
  	object-fit: contain;
}

#corps_texte {
	padding-left: 80px;
 	padding-right: 80px;
 	padding-top: 50px;
 	padding-bottom: 50px;
}

#corps_texte p{
	margin-bottom: 20px;
}

.highlight {
    color: #004AAD;
}

#corps_menu nav{
    background-color: #ffffff;
    padding: 10px;
    text-align: center;
}

#corps_menu nav a{
    color: #004AAD;
    font-weight: bold;
    font-size: 26px;
    text-decoration: none;
    margin: 0 10px;
}

#corps_menu nav a:hover, #corps_menu nav a:active{
    text-decoration: underline;
}



.section{
    display: none; 
    padding: 10px;
    height: auto;
}


.active {
    display: block;
}

.zone_cliquable{
        outline: 2px solid red; /* Cadre rouge autour de la zone */
}

