@import url('https://fonts.googleapis.com/css2?family=Merriweather:ital,wght@1,900&display=swap');

body {
  font-family: "Comic Sans MS Bold", sans-serif;
}

header{
	margin: 0;
	padding: 0;
}
nav ul li a {
	font-family: "Comic Sans MS Bold", sans-serif;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Comic Sans MS Bold", sans-serif;
	/* Autres styles de texte pour les titres */
}

h2 {
	text-align: center;
	margin-top: 0;
}

h1 {
	text-align: center;
	margin-top: 0;
	color : #FF5500;
}

.myspace{
	/*color:#694390;*/
	color: rgba(105,67,144,0.1);
}

.validation{
	color:#4CAF50;
}

#slideshow {
	position: relative;
	width: 600px;
	height: 600px;
	margin: auto;
	overflow: hidden;
}

#slideshow img {
	position: absolute;
	top: 0;
	left: 0;
	
	max-width: 600px;
	max-height: 600px;
	display: none;
	
	margin: 0 auto;
  padding: 10px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  background-color: rgba(255,255,255,0.8);
	
}
p, ul, ol, li {
	font-family: "Comic Sans MS Bold", sans-serif;
  /* Autres styles de texte pour les paragraphes et les listes */
}




/* Définir l'image de fond */
.bg-image {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("fond-30.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: repeat;
  z-index: -1;
}

/* Encadrer la page avec un effet d'ombre */
.content {
  max-width: 1024px;
  margin: 0 auto;
  padding: 10px;
  box-shadow: 0px 0px 10px rgba(0,0,0,0.3);
  background-color: rgba(255,255,255,0.8);
}





.container {
	max-width: 1000px;
	margin: 0 auto;
	padding: 10px;
	background-color: rgba(105, 67, 144, 0.8);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
	font-family: "Comic Sans MS Bold", sans-serif;
}





/* Style général du formulaire */

form {
	margin: 0 auto;
	max-width: 1000px;
	padding: 10px;
	background-color: #694390;
	border-radius: 10px;
	box-shadow: 0px 0px 5px rgba(0,0,0,0.5);
	font-family: Arial, sans-serif;
}


/
fieldset {
  color: #fff; /* change la couleur du texte */
  border: 3px inset #fff; /* change la couleur et la taille du cadre */
   border-radius: 5px;
}

.form-group label {
display: inline-block;
width: 120px;
text-align: right;
margin-right: 20px;
color:#fff;
}


.form-group input[type="text"],
input[type="email"],
input[type="tel"],
input[type="number"],
input[type="select"]
{
  padding: 5px;
  box-sizing: border-box;
  margin-bottom: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  display: inline-block;
 
}

.form-group input[type="checkbox"],  input[type="radio"]{
display: inline-block;
width: auto;
margin-left: 0px;
margin-bottom: 10px;
}

.form-titre {
	display: block;
	padding: 5px;
	margin-top: 20px;
	margin-bottom: 10px;
}



/* Style du bouton d'envoi */
input[type="submit"] {
	display: block;
	margin: 20px auto 0;
	padding: 10px 20px;
	background-color: #483266;
	color: #fff;
	border: none;
	border-radius: 5px;
	cursor: pointer;
	font-size: 16px;
}

button[type="submit"]:hover, input[type="submit"]:hover {
  background-color: #4CAF50;
}



/* Style de la rubrique repas */
.repas {
margin-bottom: 20px;
}

.repas h2 {
margin-top: 0;
}






/*****************************************************************************************************/

.popup {
	display: none;
	position: fixed;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	padding: 20px;
	z-index: 9999;
	
	/*background-color: #fff;
	box-shadow: 0px 0px 10px rgba(0,0,0,0.5);
	*/
	
	background-color: rgba(255, 255, 255, 0.8);
	border-radius: 10px;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
	font-family: "Comic Sans MS Bold", sans-serif;
}
.overlay {
	display: none;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.5);
	z-index: 9998;
}
.popup label, .popup input, .popup textarea {
	display: block;
	margin-bottom: 10px;
}
.popup input, .popup textarea {
	width: 100%;
	padding: 5px;
	border: none;
	border-bottom: 1px solid #ccc;
}



.popup-header {
  /*display: flex;*/
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.popup-header h1 {
  /*margin: 0;*/
  /*font-size: 1.5rem;*/
  color: #000;
  text-align: center;
}

.popup-close-button {
  background-color: transparent;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

.popup-close-button:hover {
  color: #f00;
}
/*********************************************************************************************************/
#cookie-consent {
			position: fixed;
			bottom: 0;
			left: 0;
			right: 0;
			background-color: #000;
			color: #fff;
			padding: 20px;
			text-align: center;
		}
		#cookie-consent button {
			background-color: #fff;
			color: #000;
			border: none;
			padding: 10px 20px;
			cursor: pointer;
			margin-left: 10px;
		}
		

