@charset "UTF-8";
/* CSS Document */
<style> :root {
 --primary: #2563eb;
 --bg: #f5f5f5;
 --text: #111827;
}
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}
body {
	font-family: Verdana, Geneva, sans-serif;
	color: var(--text);
	margin-right: 0px;
	margin-left: 0px;
	height: auto;
	width: 100%;
	background-image: none;
}
.burger1, burger2, burger3 {
	display: none;
	cursor: pointer;
	background: none;
	border: none;
	color: white;
	font-size: 1.5rem;
	position: absolute;
	top: 18px;
	right: 20px;
}
.menu ul {
	list-style: none;
	justify-content: space-around; /* Répartition horizontale */
	align-items: center;
	text-align: center;
	display: flex;
	margin-right: auto;
	margin-left: auto;
}
.fond {
	height: 700px;
	background-image: url(../images/img-index.png);
	width: 100%;
	background-attachment: fixed;
	background-repeat: no-repeat;
	background-position: center top;
}
.container-activites {
	text-align: center;
	line-height: 5em;
}
.menu li {
	padding: 20px;
	font-family: Verdana, Geneva, sans-serif;
	font-weight: bold;
	font-size: 120%;
	color: #000;
	height: auto;
	white-space: nowrap;
	display: block;
	text-decoration: none;
}
ul {
	gap: 2em;
	display: inline;
	padding-right: 15px;
	margin-top: 10px;
	margin-bottom: 10px;
	padding-left: 15px;
	list-style-type: none;
}
#R {
	color: #000;
	font-size: 45%;
	font-family: Verdana, Geneva, sans-serif;
	padding-top: 0px;
}
.video-section {
	width: 100%;
	height: auto;
	background-color: #000;
}
.video-full {
	width: 100%;
	height: auto;
	display: block;
	object-fit: cover;
	max-height: 70vh; /* optionnel : limite la hauteur */
	object-fit: cover; /* coupe proprement si nécessaire */
}
.espace-100 {
	padding-top: 50px;
	padding-bottom: 50px;
	height: auto;
}
.centre {
	text-align: center;
}
.footer-section {
	text-align: center;
	font-size: small;
	color: #FFF;
	font-family: Verdana, Geneva, sans-serif;
	padding-top: 30px;
	background-color: #333;
	padding-right: 15%;
	padding-left: 15%;
	padding-bottom: 30px;
	border-bottom-style: solid;
	border-bottom-width: thin;
	border-bottom-color: #CCC;
}
a {
	text-decoration: none;
	color: #000;
}
.footer-bottom {
	text-align: center;
}


/* RESPONSIVE */

@media (max-width: 600px) {
 .menu ul {
 flex-direction: column;
 gap: 10px;
}
 .menu li a {
 white-space: nowrap;
}
}
</style>
