@font-face {
    font-family: 'Monster_Clubhouse';
    src:url('/texture/font/Monster_Clubhouse.ttf') format('truetype');
    font-weight: light;
    font-style: normal;
	font-display: auto;
}

@font-face {
    font-family: 'Chunkfive_Ex';
    src:url('/texture/font/Chunkfive_Ex.ttf') format('truetype');
    font-weight: light;
    font-style: normal;

}

*{
	margin:0px;
	padding:0px;
}

body{
	width:100%;
	background-image: url('texture/menu-Fond.png');
	background: size 100%;
	background-repeat: no-repeat;
	font-family:Arial, Helvetica, sans-serif;
	font-weight: 100;
}

#container{
	width:960px;
	margin:0 auto;
	padding-top: 200px; /* Permet de pousser le contenu vers le bas pour ne pas être caché par le header fixe */

}

a{
	text-decoration:none;
}

img{
	border:0px;
}

ul{
	list-style:none;
	text-align:center;
	
}

li{
	margin-top:10px;
}

a {
    color:#F1AC1B;
    text-decoration: none;
    font-size: 18px;
}

a:hover,
a:active,
a:focus {
    color: #ED771F; /* Couleur de lien identique pour tous les états */
    text-decoration: none; /* Aucune décoration de lien */
}



/*-------------------menu--------------------*/
header {
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px 0;
    position: fixed; /* Fixe le header en haut de la page */
    top: 0; /* Place le header tout en haut de la page */
    z-index: 999; /* Assure que le header est au-dessus de tout autre contenu */
}

#navbar ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

#navbar ul li {
    display: inline;
    margin-right: 20px;
}

#navbar ul li a {
    text-decoration: none;
    font-size: 18px;
}


section {
    padding: 20px;
    margin: 50px 0;
    border-bottom: 1px solid #ccc;
}

section:last-child {
    border-bottom: none; /* Supprime la bordure inférieure de la dernière section */
}

/* Pour les appareils mobiles */
#menu{
	width: 100%;
}

#menu h2{
	width:55%;
	float:right;
	color:#F1AC1B;
	text-align: right;
	margin-right: 5%;
	margin-top: 20px;
	font-size:50px;
	font-family: 'Monster_Clubhouse';
}


#menu h1 img{
	width:15%;
	font-size:40px;
	float:left;
	color:#2e6bb2;
	margin-left: 5%;
	margin-top: 20px;
}


#menu h2 strong{
	font-family: 'Chunkfive_Ex';
	font-size:40px;
}

#menu h3{
	width:55%;
	float:right;
	color:#F1AC1B;
	text-align: right;
	margin-right: 5%;
}

#menu ul{
	float: left;
	width: 100%;
}

#erreur{
	width:90%;
	margin:20px 5% 0 5%;
	background-color: #F00;
}

#erreur h2{
	color: #fff;
	text-align: center;
}

/* ---------------  contenu ---------------------- */
#contenu{
	width:90%;
	margin:20px 5%;
}

#contenu p{
	margin: 5px 10px 10px 15px;
	text-align: justify;
	color:#464344;
}

#contenu h2{
	font-size:20px;
	margin-left:10px;
	color:#F1AC1B;	
	text-align: center;
}

.contenuGauche {
	display: flex;
	align-items: center; /* Alignement vertical */
	margin: 40px auto;
  }
  
  .contenuGaucheImage {
	flex: 0.8; /* La moitié de l'espace disponible */
	margin-right: 20px; /* Espacement entre l'image et le contenu */
  }
  
  .contenuGaucheImage img {
	max-width: 100%; /* Pour que l'image s'adapte à la taille de son conteneur */
  }
  
  .contenuGaucheTexte {
	flex: 1.2; /* La moitié de l'espace disponible */
	margin:0 2%;
	text-align: justify;
  }
  .contenuGaucheTexte h3{
	font-size:20px;
	margin-bottom:10px;
	color:#F1AC1B;	
	text-align: center;
  }

/*-------------------footer--------------------*/

#footer{
	clear:both;
	width:960px;
	height:71px;
	background:url(texture/footer.png);
}

#footer h2{
	color:#F1AC1B;
	text-align:center;
	font-size:16px;
}

#footer h3{
	color:#333;
	text-align:center;
	font-size:16px;
}

/*------------------contact------------------*/

#contact {
    background-color: #333;
    padding: 20px;
    border-radius: 8px;
	width: 100%;
    box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	float: left;
}

input[type="text"],
input[type="tel"],
input[type="submit"],
input[type="email"],
input[type="password"] {
    width: 46%;
	margin: 2%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	float: left;
}

label{
    width: 46%;
	float: left;
	color:#F1AC1B;	
}

textarea {
    width: 96%;
	height:100px;
	margin: 2%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	float: left;
}

input[type="time"],
input[type="date"]{
    width: 21%;
    padding: 8px;
	margin:2%;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
	float: left;
}

input[type="submit"] {
    background-color: #007bff;
    color: #fff;
    cursor: pointer;
	width: 96%;
	float: left;
}

input[type="submit"]:hover {
    background-color: #0056b3;
}

.g-recaptcha{
	width: 40%;
	margin: 2% 30%;
	float: left;
}

input.inputLong,
label.inputLong{
	width: 96%;
}

/*------------------reference liste------------------*/
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
}

.containerListe {
    position: relative;
    width: 100%;
    overflow: hidden; /* Pour éviter le débordement du contenu */
}

.containerListe ul{
	margin-top: 200px;
}

.reference {
    position: relative;
    z-index: 1;
    padding: 20px;
    background-color: #fff; /* Fond blanc */
    margin: 50px 0;
    border: 1px solid #ccc;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.reference h2, .reference p {
    margin: 0;
    padding: 5px 0;
}

.photo-container {
    position: relative;
    height: 200px; /* Hauteur de la fenêtre */
    overflow: hidden;
    margin-bottom: 20px; /* Espace sous la fenêtre pour le texte */
}

.photo-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: auto;
    object-fit: cover; /* Ajustement de la taille de l'image */
    z-index: -1; /* Pour que l'image soit en arrière-plan */
}

.reference-content {
    position: relative;
    z-index: 1;
}









/*------------------consentement cookies------------------*/


.consent-banner {
	display: block;
    position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #f8f8f8;
	padding: 10px 20px;
	box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
	z-index: 9999;
}
.consent-message {
	font-size: 14px;
	color: #333;
}
.consent-buttons {
	margin-top: 10px;
}
.consent-buttons button {
	margin-right: 10px;
	padding: 5px 10px;
	border: none;
	background-color: #007bff;
	color: #fff;
	cursor: pointer;
}



/* Conteneur de l'image */
.img-container {
    max-width: 100%; /* Limite la taille à 100% de la fenêtre */
    margin: 0 auto;
    text-align: center;
}

#image {
    max-width: 100%; /* Assure que l'image ne dépasse pas de l'écran */
    height: auto; /* Ajuste la hauteur de l'image proportionnellement */
    display: block;
    margin: 0 auto;
}

#crop-button {
    padding: 10px 20px;
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 4px;
    margin-right: 10px;
}

#crop-button:hover {
    background-color: #0056b3;
}

.banner{
	float: left;
	width: 100%;
}
.banner img{
	float: left;
	width: 100%;
}