:root {
	/* Couleurs de référence */
	--bleu-outremer: #003366;
	--bleu-normal: #0088cc;
	--dore: #d4af37;
	--dore-clair: #f8cf42;
	--gris-clair: #f4f4f4;
	--gris-fonce: #030303;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Arial', sans-serif;
}

body {
	background-color: #ffffff;
	color: var(--bleu-outremer);
	line-height: 1.6;
}

.menu {
	max-width: 1200px;
	margin: auto;
	padding: 20px;
}

.lang-switch select {
	background: var(--dore);
	border: none;
	color: var(--bleu-outremer);
	font-weight: bold;
	cursor: pointer;
	margin-top: 13px;

	padding: 5px 5px;
	border-radius: 5px;
	font-size: 0.7rem;
	display: inline-block;
}

.container {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 20px;
}

.container h2 {
	font-size: 1.8rem;
	font-weight: bold;
	margin-top: 30px;
	margin-bottom: 20px;
}

.container p a {
	text-decoration: none;
	color: var(--bleu-outremer);
}

.container h2 a {
	text-decoration: none;
	color: var(--bleu-outremer);
}

.hero h1 a {
	text-decoration: none;
	color: #ffffff;
}

.hero h1 a:hover {
	color: var(--gris-clair);
}

.hero p a {
	text-decoration: none;
	color: #ffffff;
}

.hero p a:hover {
	color: var(--gris-clair);
}

.container ul a {
	text-decoration: none;
	color: var(--bleu-outremer);
}

.container p a:hover {
	color: var(--bleu-normal);
}

.container h2 a:hover {
	color: var(--bleu-normal);
}

.container ul a:hover {
	color: var(--bleu-normal);
}

.container h3 {
	font-size: 1.3rem;
	font-weight: bold;
	margin-top: 20px;
	margin-bottom: 15px;
}

.container p {
	margin-bottom: 15px;
}

.container ul {
	margin-left: 2rem;
	margin-bottom: 15px;
	margin-top: -10px;
}

/* Header */
		header {
	background-color: #ffffff;
	padding: 15px 15px;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.logo {
	font-size: 2rem;
	font-weight: bold;
	color: var(--bleu-outremer);
	text-align: center;
}

/* Hero Section */
.hero {
	background: linear-gradient(rgba(0,51,102,0.7), rgba(0,51,102,0.7)), url('VeniseLH.png');
	background-size: cover;
	background-position: center;
	color: #ffffff;
	padding: 100px 0;
	text-align: center;
}

.hero h1 {
	font-size: 2rem;
	margin-bottom: 15px;
}

.hero p {
	font-size: 1rem;
	margin-bottom: 25px;
	max-width: 90%;
	margin-left: auto;
	margin-right: auto;
}

.cta-button {
	background-color: var(--dore);
	color: var(--bleu-outremer);
	padding: 10px 25px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	cursor: pointer;
	text-decoration: none;
	display: inline-block;
	font-weight: bold;
}

.cta-button:hover {
	background-color: var(--dore-clair);
}

/* Sections */
		section {
	padding: 40px 0;
}

.section-title {
	text-align: center;
	font-size: 1.8rem;
	margin-bottom: 30px;
	color: var(--bleu-outremer);
	text-indent: 0px;
}

/* Illustrations */
.illustration {
	margin-left: auto;
	margin-right: auto;
	margin-top: 15px;
	margin-bottom: 15px;
	text-align: center;
	color: var(--gris-fonce);
	font-size: 0.8rem;
	font-style: italic;
	max-width: 500px;
}

.illustration a {
	color: var(--gris-fonce);
	text-decoration: none;
}

.illustration a:hover {
	color: var(--gris-clair);
}

.photo {
	border-radius: 5px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.2);
	width: 100%;
}

.date {
	text-align: right;
	color: var(--gris-fonce);
	font-size: 0.8rem;
	font-style: italic;
}

/* Cartes */
.cards-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
}

.card {
	background-color: #ffffff;
	border: 1px solid var(--bleu-outremer);
	border-radius: 5px;
	padding: 20px;
	width: 100%;
	max-width: 300px;
	text-align: center;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.card-contact {
	max-width: 90%;			
		}

.card a {
	text-decoration: none;
	color: var(--bleu-outremer);
}

.card a:hover {
	color: var(--bleu-clair);
}

.card-icon {
	width: 200px;
	height: 60px;
	margin: 0 auto 15px;
	background-size: contain;
	background-repeat: no-repeat;
	background-position: center;
}

/* Formulaire de contact */
.contact-form {
	max-width: 90%;
	margin: 0 auto;
	background-color: #ffffff;
	padding: 25px;
	border-radius: 5px;
	box-shadow: 0 3px 10px rgba(0,0,0,0.1);
}

.form-group {
	margin-bottom: 15px;
}

.form-group label {
	display: block;
	margin-bottom: 5px;
	font-weight: bold;
}

.form-group input,
.form-group textarea {
	width: 100%;
	padding: 10px;
	border: 1px solid var(--bleu-outremer);
	border-radius: 5px;
}

.form-group textarea {
	height: 100px;
}

.submit-button {
	background-color: var(--dore);
	color: var(--bleu-outremer);
	padding: 10px 25px;
	border: none;
	border-radius: 5px;
	font-size: 1rem;
	cursor: pointer;
	width: 100%;
}

/* Footer */
		footer {
	background-color: var(--bleu-outremer);
	color: var(--dore);
	text-align: center;
	padding: 20px 0;
	font-size: 0.9rem;
}

		footer a {
	color: var(--dore);
	text-decoration: none;
}

		footer a:hover {
	color: var(--dore-clair);
}

/* Navigation desktop */
.desktop-nav {
	margin-top: 20px;
	font-size: 1.1rem;
}

.desktop-nav ul {
	list-style: none;
	display: flex;
	justify-content: center;
}

.desktop-nav ul li {
	position: relative;
	margin-left: 15px;
}

.desktop-nav ul li a {
	text-decoration: none;
	color: var(--bleu-outremer);
	font-weight: 500;
	padding: 10px;
	margin-right: 15px;
	display: block;
}

.desktop-nav ul li a:hover {
	color: var(--dore);
}

/* Bouton menu mobile */
.mobile-menu-button {
	display: none;
	background: none;
	border: none;
	font-size: 1.5rem;
	color: var(--bleu-outremer);
	cursor: pointer;
	float: right;
}
.mobile-menu-lang {
	display: none;
	float: left;
}

/* Navigation mobile */
.mobile-nav {
	display: none;
	background-color: #ffffff;
	box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
	position: absolute;
	width: 100%;
	z-index: 1000;
	padding: 20px 0;
}

.mobile-nav ul {
	list-style: none;
}

.mobile-nav ul li {
	padding: 10px 20px;
	border-bottom: 1px solid var(--gris-clair);
}

.mobile-nav ul li a {
	text-decoration: none;
	color: var(--bleu-outremer);
	display: block;
}

.mobile-nav ul li a:hover {
	color: var(--dore);
}

.icone-menu {
	display: inline-block;
	background-color: currentColor;
	width: 1.5rem;
	height: 1.5rem;
	mask: var(--svg) no-repeat center;
	mask-size: contain;
}

.icone-menu-chevron {
	--svg: url("chevron-down.svg");
	vertical-align: bottom;
}

.icone-menu-barres {
	--svg: url("menu-bars.svg");
}

.icon:hover {
	fill: var(--dore);
}

/* Responsive */
@media (min-width: 768px) {
	.hero h1 {
		font-size: 2.5rem;
	}

	.hero p {
		font-size: 1.2rem;
		max-width: 80%;
	}

	.card {
		width: 48%;
	}

	.section-title {
		font-size: 2rem;
	}

	.contact-form {
		max-width: 600px;
	}

	.submit-button {
		width: auto;
		padding: 12px 30px;
	}
	.desktop-nav {
		display: block;
	}
	.dropdown-menu {
		display: none;
	}

	.dessin {
		width: 400px;
	}
}

@media (max-width: 768px) {
	.desktop-nav {
		display: none;
	}

	.mobile-menu-button {
		display: block;
	}

	.mobile-menu-lang {
		display: block;
	}

	.mobile-nav {
		display: none;
	}

	.mobile-nav.active {
		display: block;
	}
	.dessin {
		width: 100%;
	}
		}

		@media (min-width: 1024px) {
	.card {
		width: 30%;
	}
}