/* ======================= */
/* Reset et base		   */
/* ======================= */
* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

body {
	font-family: 'Quicksand', sans-serif;
	background-color: #fcf3e0;
	color: #333;
	overflow-x: hidden;
	line-height: 1.6;
}

html {
	scroll-behavior: smooth;
}

a {
	text-decoration: none;
	color: #333;
	letter-spacing: 0.2px;
}

a:visited {
	color: #333;
}

a:hover {
	text-decoration: underline;
	color: #576a73;
}

a:active,
a:focus {
	outline: none;
}

.image-container {
	text-align: center; /* centre l'image horizontalement */
	margin-top: 20px;		 /* espace au-dessus */
	margin-bottom: 0;		 /* pas d'espace en dessous */
}

.image-container img {
	border-radius: 10px; /* arrondit les 4 coins */
	display: inline-block; /* s'assure que l'image se comporte bien */
	max-width: 100%;	  /* image responsive */
	height: auto;
}

/* ======================= */
/* Header et navbar		*/
/* ======================= */
header {
	position: fixed;
	width: 100%;
	height: 60px;
	top: 0;
	z-index: 1000;
	background-color: #cbcbc3;
	padding: 10px 20px;
	color: white;
}

.navbar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 40px;
	position: relative;
}

/* Nav links desktop */
.nav-links {
	display: flex;
	gap: 50px;
	list-style: none;
	text-transform: uppercase;
}

.nav-links li a {
	color: #576a73;
	text-decoration: none;
	font-size: 1.1rem;
	letter-spacing: 1px;
}

.nav-links li a:hover {
	color: #f5f5f5;
}

/* Burger (mobile only) */
.burger {
	display: none;
	font-size: 2rem;
	cursor: pointer;
	user-select: none;
	z-index: 1100;
}

/* Social icons */
.social-icons img {
	width: 35px;
	height: 35px;
	margin-right: 10px;
	transition: transform 0.3s, filter 0.3s;
	cursor: pointer;
}

.social-icons img:hover {
	transform: scale(1.2);
}

/* ======================= */
/* Banner				  */
/* ======================= */
.banner img {
	width: 100%;
	max-width: 1000px;
	height: auto;
	display: block;
	margin: 60px auto 0 auto; /* top margin pour séparer du header */
}

/* ======================= */
/* Sections			   */
/* ======================= */
main {
	padding-top: 0px;
	max-width: 1000px;
	margin: 0 auto;
	text-align: justify;
}

section {
	padding: 40px 20px;
}

section h1 {
	text-align: center;
	margin-bottom: 20px;
	font-family: 'Quicksand', serif;
	color: #576a73;
	letter-spacing: 2px;
	text-transform: uppercase;
}

section h2 {
	font-family: inherit;
	font-size: 1.1em;
	font-weight: bold;
	margin-bottom: 3px;
}

/* ======================= */
/* Tableaux tarifs		 */
/* ======================= */
.ligne {
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 2px 0;
	border-bottom: 1px solid #ccc;
	gap: 10px;
}

.article {
	flex: 1;
}

.prix {
	text-align: right;
	min-width: 80px;
}

/* ======================= */
/* Footer				 */
/* ======================= */
footer {
	text-align: center;
	padding: 20px;
	background: #cbcbc3;
	color: #576a73;
	width: 100%;
	margin: 0 auto;
}

/* ======================= */
/* Responsive mobile	   */
/* ======================= */
@media screen and (max-width: 768px) {
	body {
      line-height: 1.3; /* interligne réduit sur mobile */
    }

	.burger {
		display: block;
		position: absolute;
		color: #576a73;
		left: 20px;
		top: 0;
	}

	.nav-links {
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100vh;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		padding-left: 20px;
		gap: 30px;
		background: #cbcbc3;
		transform: translateY(-100%);
		transition: transform 0.4s ease-in-out;
		z-index: 999;
	}

	.nav-links.active {
		transform: translateY(0);
	}

	.nav-links li a {
		font-size: 1.5rem;
	}

	.social-icons {
		position: absolute;
		top: 5px;
		right: 20px;
	}
}

@media (max-width: 500px) {
	.nav-links li a {
		font-size: 1.2rem;
	}

	.ligne {
		flex-direction: column;
		align-items: stretch;
	}

	.prix {
		text-align: right;
		width: 100%;
		margin-top: 4px;
	}
}