/* === Structure globale === */
.entretien-page {
	font-family: 'Segoe UI', Roboto, sans-serif;
	color: #2c2c2c;
	line-height: 1.7;
	background: #ffffff;
}

/* === Hero section === */
.hero {
	text-align: center;
	padding: 60px 20px;
	background: linear-gradient(135deg, #111, #333);
	color: #fff;
}

.hero h1 {
	font-size: 40px;
	font-weight: 700;
	margin-bottom: 15px;
	text-transform: uppercase;
}

.hero p {
	font-size: 20px;
}

/* === Bloc Forfait === */
.forfait {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	width: 85%;
	margin: 60px auto;
}

.forfait-text {
	flex: 1 1 400px;
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.forfait-text h2 {
	font-size: 28px;
	color: #c62828;
	margin-bottom: 10px;
}

.forfait-text h3 {
	font-size: 22px;
	margin-bottom: 20px;
}

.forfait-text ul {
	list-style: none;
	padding: 0;
}

.forfait-text li {
	margin-bottom: 10px;
	padding-left: 20px;
	position: relative;
}

.forfait-text li::before {
	content: "✔";
	color: #c62828;
	position: absolute;
	left: 0;
}

.forfait-img {
	flex: 1 1 300px;
	max-width: 400px;
}

.forfait-img img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	aspect-ratio: 3/4; /* parfait pour valoriser une photo verticale */
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.forfait-img figcaption {
	text-align: center;
	margin-top: 10px;
	font-size: 14px;
	color: #555;
}

/* === Entretien === */
.entretien {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: 40px;
	width: 85%;
	margin: 60px auto;
}

.entretien-text {
	flex: 1 1 400px;
	background: #fff;
	padding: 30px;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.entretien-text h2 {
	font-size: 26px;
	color: #c62828;
	margin-bottom: 15px;
}

.entretien-text li {
	list-style: none;
}

.entretien-text p {
	font-size: 18px;
	color: #444;
}

.entretien-img {
	flex: 1 1 300px;
	max-width: 400px;
}

.entretien-img img {
	width: 100%;
	border-radius: 12px;
	object-fit: cover;
	aspect-ratio: 4/3;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

/* === Produits === */
.produits {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	flex-wrap: wrap;
	gap: 30px;
	width: 85%;
	margin: 60px auto;
}

.produits-grid {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 30px;
	width: 100%;
}

.produits figure {
	flex: 1 1 250px;
	max-width: 350px;
	background: #fff;
	border-radius: 12px;
	box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
	overflow: hidden;
}

.produits img {
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.produits figcaption {
	padding: 15px;
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	color: #333;
}

.btn-cta {
  color: #fff;
  text-decoration: none;
  background: #E52322;
  display: inline-block;
  padding: 10px 20px;
  margin: 10px auto;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
}

.btn-cta:hover {
  background: #c40000;
}

/* === Responsive === */
@media (max-width: 768px) {
	.hero h1 {
		font-size: 28px;
	}

	.hero p {
		font-size: 16px;
	}

	.forfait, .entretien, .produits {
		width: 95%;
		margin: 40px auto;
	}
}