
:root
{
	--green: #8ba503;
	--green-dark: #596800;
	--green-light: #eef4c9;
	--green-pale: #f7f9ed;
	--red: #c71212;
	--orange: #fabe0f;
	--text: #34382f;
	--text-soft: #6c7166;
	--white: #ffffff;
	--cream: #fbfaf5;
	--radius: 24px;
	--shadow: 0 12px 35px rgba(55, 65, 35, .10);
}

/* =========================================================RESET & BASES========================================================= */
*
{
	box-sizing: border-box;
}

html
{
	scroll-behavior: smooth;
}

body
{
	margin: 0;
	font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Arial, sans-serif;
	color: var(--text);
	background: var(--cream);
	line-height: 1.7;
}

img
{
	max-width: 100%;
	display: block;
}

a
{
	color: inherit;
	text-decoration: none;
}

button, input, textarea
{
	font: inherit;
}

/* Typographies Principales */
.hero h1,.section-title
{
	margin: 0;
	font-family: "Kalam", cursive !important;
	font-size: 48px;
	font-weight: 400;
	line-height: 1.2;
	color: var(--text);
	text-align: center;
}

.hero h1 em
{
	font-family: "Kalam", cursive;
	font-style: italic;
	font-weight: 400;
	color: var(--green);
}

h2
{
	margin: 0 0 20px;
	font-size: clamp(32px, 4vw, 48px);
	line-height: 1.15;
	font-weight: 400;
}

h3
{
	line-height: 1.25;
}

/* Layout */
.container
{
	width: min(1120px, calc(100% - 40px));
	margin: 0 auto;
}

.hero-copy,.parcours-content,.two-col,#services .section-heading
{
	width: min(850px, 100%);
	margin-left: auto;
	margin-right: auto;
}

/* =========================================================COMPOSANTS REUTILISABLES (BOUTONS & BADGES)========================================================= */
.btn
{
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 12px 24px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	cursor: pointer;
	border: 1px solid transparent;
	transition: transform .25s ease, background .25s ease, box-shadow .25s ease, color .25s ease;
}

.btn:hover
{
	transform: translateY(-2px);
}

.btn-free, .btn-envoyer, .price-card .btn-reserver
{
	background: var(--green);
	color: var(--white);
}

.btn-free:hover, .btn-envoyer:hover, .price-card .btn-reserver:hover
{
	background: var(--green-dark);
}

.badge
{
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 6px 12px;
	border-radius: 20px;
	background: var(--green);
	color: var(--white);
	font-size: 11px;
	font-weight: 700;
}

.badge-popular
{
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 7px 16px;
	background: var(--red);
	color: var(--white);
	border: 1px solid var(--red);
	border-radius: 24px;
	font-size: 13px;
	font-weight: 600;
	box-shadow: 0 5px 15px rgba(199, 18, 18, .18);
}

/* =========================================================HEADER========================================================= */
.site-header
{
	position: sticky;
	top: 0;
	z-index: 1000;
	background: var(--green);
}

.nav
{
	min-height: 72px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 30px;
}

.logo
{
	display: flex;
	align-items: center;
	flex-shrink: 0;
	line-height: 0;
}

.logo img
{
	width: 110px;
	height: auto;
}

#main-nav
{
	display: flex;
	align-items: center;
	gap: 40px;
}

#main-nav a
{
	position: relative;
	color: var(--white);
	font-size: 14px;
	font-weight: 500;
	padding: 8px 10px;
}

#main-nav a::after
{
	content: "";
	position: absolute;
	left: 8px;
	right: 8px;
	bottom: 2px;
	height: 1px;
	background: var(--white);
	transform: scaleX(0);
	transform-origin: center;
	transition: transform .25s ease;
}

#main-nav a:hover::after
{
	transform: scaleX(1);
}

.menu-toggle
{
	display: none;
	border: 0;
	background: transparent;
	color: var(--white);
	font-size: 25px;
	cursor: pointer;
}

.btn-header
{
	background: var(--white);
	color: var(--green-dark);
	border-color: var(--white);
	padding: 7px 18px;
	min-height: 36px;
	font-size: 13px;
}

.btn-header:hover
{
	background: var(--green-light);
	color: var(--green-dark);
}

/* =========================================================HERO========================================================= */
.hero
{
	padding: 55px 0 100px;
}

.hero-copy
{
	text-align: center;
}

.hero .lead,.hero .soft
{
	text-align: left;
	font-size: 17px;
	font-weight: 400;
	line-height: 1.6;
	color: var(--text-soft);
	white-space: normal;
}

.hero .lead
{
	margin: 25px auto 0;
}

.hero .soft
{
	margin: 8px auto 0;
}

.hero-profile
{
	margin: 24px 0 30px;
}

.btn-profile
{
	background: var(--green);
	color: var(--white);
	border: 1px solid var(--green);
	border-radius: 25px;
	padding: 9px 22px;
	font-size: 14px;
	transition: background .25s ease, color .25s ease, transform .25s ease;
}

.btn-profile:hover
{
	background: transparent;
	color: var(--green);
	transform: translateY(-2px);
}

.hero-image
{
	position: relative;
	max-width: 650px;
	margin: 30px auto 0;
	padding: 8px 8px 30px;
	background: var(--white);
	border-radius: 7px;
	box-shadow: 0 12px 30px rgba(55, 65, 35, .12);
}

.hero-image img
{
	width: 100%;
	height: 300px;
	object-fit: cover;
	border-radius: 3px;
}

.hero-button
{
	position: absolute;
	z-index: 5;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 13px 25px;
	border-radius: 30px;
	font-size: 14px;
	font-weight: 600;
	box-shadow: 0 5px 15px rgba(0, 0, 0, .15);
	transition: transform .25s ease, box-shadow .25s ease;
}

.hero-button-services
{
	top: 30px;
	left: -50px;
	background: var(--orange);
	color: #4f4300;
}

.hero-button-services:hover
{
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(250, 190, 15, .30);
}

.hero-button-rdv
{
	right: -55px;
	bottom: 15px;
	background: var(--red);
	color: var(--white);
}

.hero-button-rdv:hover
{
	transform: translateY(-3px);
	box-shadow: 0 8px 20px rgba(199, 18, 18, .28);
}

/* =========================================================SECTIONS & PARCOURS========================================================= */
.section
{
	padding: 100px 0;
}

.section-soft
{
	background: var(--green-pale);
}

#parcours,#services
{
	padding-top: 80px !important;
}

.section-heading
{
	max-width: 700px;
	margin: 0 auto 55px;
	text-align: center;
}

.eyebrow
{
	margin: 0 0 10px;
	color: var(--green);
	font-size: 12px;
	font-weight: 700;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.section-title
{
	margin-bottom: 25px;
}

.parcours-content h2:not(.section-title)
{
	margin: 0 0 18px;
	text-align: left;
	font-size: 30px;
	line-height: 1.25;
	font-weight: 400;
}

.parcours-content p
{
	margin: 0 0 14px;
	text-align: left;
	color: var(--text-soft);
	font-size: 16px;
}

/* Étiquettes Parcours (Système à cheval) */
.feature-list
{
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	gap: 18px;
	margin-top: 38px;
}

.feature-item
{
	position: relative;
	flex: 0 1 220px;
	height: 32px;
	min-height: 32px;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 0 2px;
	background: var(--white);
	border: 1px solid #e1e6d4;
	border-radius: 5px;
	box-shadow: 0 4px 12px rgba(55, 65, 35, .06);
}

.feature-item img
{
	position: absolute;
	top: -11px;
	left: 50%;
	transform: translateX(-50%);
	width: 17px;
	height: 17px;
	max-width: 30px;
	max-height: 30px;
	object-fit: contain;
}

.feature-item strong
{
	color: var(--text-soft);
	font-size: 14px;
	font-weight: 400;
	line-height: 1.2;
}

/* =========================================================SERVICES========================================================= */
#services
{
	background: var(--cream);
}

#services .section-heading {
    width: min(850px, 100%);
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: left;
}

#services .section-heading {
    width: min(850px, 100%);
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: left; /* Aligne le texte à gauche à l'intérieur du bloc */
}

#services .section-heading h2 {
    text-align: left;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 18px;
}

#services .section-heading p
{
	color: var(--text-soft);
	font-size: 16px;
}

.cards
{
	display: grid;
	gap: 30px;
}

.two-cards
{
	grid-template-columns: repeat(2, 1fr);
}

.card
{
	position: relative;
	padding: 40px;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
}

.service-icon
{
	width: 52px;
	height: 52px;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-bottom: 20px;
	border-radius: 50%;
	background: var(--green-light);
}

.service-icon img
{
	width: 28px;
	height: 28px;
	object-fit: contain;
}

.card p
{
	color: var(--text-soft);
}

.check-list
{
	list-style: none;
	margin: 25px 0;
	padding: 0;
}

.check-list li
{
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
	color: var(--text-soft);
	font-size: 14px;
}

.check-list img
{
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex-shrink: 0;
}

.link-service
{
	color: var(--green);
	font-weight: 600;
	font-size: 14px;
}

.link-service span
{
	margin-left: 5px;
}

.center-cta
{
	margin-top: 55px;
	text-align: center;
}

.center-cta h3
{
	margin-bottom: 20px;
}

/* =========================================================TARIFS========================================================= */
.pricing
{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
	align-items: stretch;
}

.price-card
{
	position: relative;
	display: flex;
	flex-direction: column;
	padding: 35px;
	background: var(--white);
	border-radius: var(--radius);
	box-shadow: var(--shadow);
	 text-align: center;
}

.price-card h3
{
	margin-top: 0;
}

/* Harmonisation du fond de la carte du milieu et accentuation de la remontée */
.price-featured {
    background: var(--white) !important; /* Même fond blanc que les autres */
    color: var(--text) !important;       /* Même couleur de texte sombre */
    transform: translateY(-25px);        /* Remonte le bloc un peu plus haut (initialement à -10px) */
    box-shadow: 0 15px 40px rgba(55, 65, 35, .15); /* Ombre légèrement accentuée pour marquer le relief */
}
}

/* Assure que la couleur des listes et descriptions reste identique */
.price-featured p,
.price-featured .price-list li {
    color: var(--text-soft) !important;
}

.price-badge
{
	position: absolute;
	top: 20px;
	right: 20px;
	padding: 6px 12px;
	border-radius: 20px;
	background: var(--white);
	color: var(--green-dark);
	font-size: 11px;
	font-weight: 700;
}

.price
{
	margin: 15px 0 5px;
	font-size: 52px;
	line-height: 1;
	color: var(--green);
	font-weight: 600;
}

/* Assure que la couleur du gros prix reste verte */
.price-featured .price {
    color: var(--green) !important;
}

.price small
{
	font-size: 22px;
}

.price-duration,.price-description
{
	color: var(--text-soft);
}

.price-duration
{
	margin: 0 0 15px;
	font-size: 14px;
}

.price-list
{
	list-style: none;
	margin: 25px 0;
	padding: 0;
}

.price-list li
{
	display: flex;
	align-items: flex-start;
	gap: 10px;
	margin-bottom: 12px;
	color: var(--text-soft);
	font-size: 14px;
}

.price-list img
{
	width: 18px;
	height: 18px;
	object-fit: contain;
	flex-shrink: 0;
}

/* Aligne le bouton de réservation de manière centrée */
.price-card .btn-reserver {
    align-self: center;
    width: fit-content;
    padding: 10px 35px; /* Bouton plus compact comme sur l'image */
}

/* Centre le conteneur du prix */
.price-card .price {
    display: flex;
    justify-content: center;
    align-items: baseline;
    margin: 15px 0 2px; /* Ajustement de la marge pour coller à l'image */
}

/* Style de la durée / séances */
.price-card .price-duration {
    margin: 0 0 20px;
    color: var(--green); /* Vert ou text-soft selon votre préférence graphique */
    font-size: 15px;
    font-weight: 500;
}

/* Aligne le bouton de réservation de manière centrée */
.price-card .btn-reserver {
    align-self: center;
    width: fit-content;
    padding: 10px 35px; /* Bouton plus compact comme sur l'image */
}

.price-featured .btn-reserver
{
	background: var(--white);
	color: var(--green-dark);
}

/* Harmonisation du bouton de la carte du milieu (devient rouge comme les autres) */
.price-featured .btn-reserver {
    background: var(--red) !important; /* Même rouge brique que les cartes gauche et droite */
    color: var(--white) !important;    /* Texte écrit en blanc */
}

/* Comportement au survol du bouton du milieu */
.price-featured .btn-reserver:hover {
    background: #a30e0e !important;   /* Rouge légèrement plus foncé au survol */
}

/* =========================================================TEMOIGNAGES & CONTACT========================================================= */
.narrow
{
	max-width: 750px;
}

.testimonial-icon
{
	width: 45px;
	height: 45px;
	object-fit: contain;
	margin: 10px 0;
}

.contact
{
	background: var(--white);
}

.contact-grid
{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 80px;
	align-items: start;
}

.contact-info
{
	margin-top: 30px;
}

.contact-info a
{
	color: var(--green);
	font-weight: 600;
}

form
{
	display: flex;
	flex-direction: column;
	gap: 17px;
	padding: 35px;
	background: var(--green-pale);
	border-radius: var(--radius);
}

label
{
	display: flex;
	flex-direction: column;
	gap: 6px;
	font-size: 13px;
	font-weight: 600;
}

input, textarea
{
	width: 100%;
	padding: 12px 14px;
	border: 1px solid #dce1d2;
	border-radius: 10px;
	background: var(--white);
	color: var(--text);
	outline: none;
	transition: border .2s ease;
}

input:focus, textarea:focus
{
	border-color: var(--green);
}

textarea
{
	resize: vertical;
}

.btn-envoyer
{
	align-self: flex-start;
}

/* =========================================================FOOTER========================================================= */
footer
{
	background: #343b2a;
	color: var(--white);
	padding-top: 60px;
}

.footer-grid
{
	display: grid;
	grid-template-columns: 1.5fr 1fr 1fr;
	gap: 60px;
	padding-bottom: 50px;
}

.footer-brand .logo
{
	color: var(--white);
	font-size: 24px;
	font-weight: 600;
	line-height: 1;
}

.footer-brand .logo span
{
	color: var(--green);
}

footer p
{
	max-width: 400px;
	color: rgba(255,255,255,.7);
}

footer h4
{
	margin-top: 0;
}

footer a
{
	display: block;
	margin: 7px 0;
	color: rgba(255,255,255,.75);
}

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

.copyright
{
	padding: 20px;
	border-top: 1px solid rgba(255,255,255,.1);
	text-align: center;
	color: rgba(255,255,255,.55);
	font-size: 12px;
}

/* =========================================================RESPONSIVE TABLETTE (max-width: 950px)========================================================= */
@media (max-width: 950px)
{
	#main-nav, .nav
	{
		gap: 15px;
	}

	.pricing
	{
		grid-template-columns: 1fr;
	}

	.price-featured
	{
		transform: none;
	}

	.contact-grid
	{
		grid-template-columns: 1fr;
		gap: 50px;
	}

	.footer-grid
	{
		grid-template-columns: 1fr 1fr;
	}

	.hero-button-services
	{
		left: -20px;
	}

	.hero-button-rdv
	{
		right: -20px;
	}
}

/* =========================================================RESPONSIVE MOBILE (max-width: 700px)========================================================= */
@media (max-width: 700px)
{
	.container
	{
		width: min(100% - 30px, 1120px);
	}

	.hero h1,.section-title
	{
		font-size: 36px;
	}

	.hero-copy,.parcours-content,.two-col
	{
		width: 100%;
		max-width: 100%;
	}

	/* Header Mobile */
	.nav
	{
		min-height: 65px;
	}

	.logo img
	{
		width: 90px;
	}

	.menu-toggle
	{
		display: block;
	}

	#main-nav
	{
		display: none;
		position: absolute;
		top: 65px;
		left: 0;
		right: 0;
		padding: 20px;
		flex-direction: column;
		gap: 8px;
		background: var(--green);
		box-shadow: 0 10px 25px rgba(0,0,0,.12);
	}

	#main-nav.open
	{
		display: flex;
	}

	#main-nav a
	{
		width: 100%;
		text-align: center;
		padding: 10px;
	}

	.btn-header
	{
		display: none;
	}

	/* Hero Mobile */
	.hero
	{
		padding: 45px 0 80px;
	}

	.hero .lead,.hero .soft
	{
		font-size: 16px;
	}

	.hero-profile
	{
		margin: 20px 0 28px;
	}

	.btn-profile
	{
		font-size: 13px;
		padding: 8px 17px;
	}

	.hero-image
	{
		margin-top: 25px;
		padding: 6px 6px 22px;
	}

	.hero-image img
	{
		height: 230px;
	}

	.hero-button
	{
		padding: 10px 17px;
		font-size: 12px;
	}

	.hero-button-services
	{
		top: 20px;
		left: 15px;
	}

	.hero-button-rdv
	{
		right: 15px;
		bottom: 20px;
	}

	/* Sections Mobile */
	.section
	{
		padding: 70px 0;
	}

	.parcours-content h2:not(.section-title)
	{
		font-size: 27px;
	}

	/* Étiquettes Parcours Mobile */
	.feature-list
	{
		flex-direction: column;
		gap: 25px;
	}

	.feature-item
	{
		width: 100%;
	}

	/* Grilles Mobile */
	.two-cards,.footer-grid,.contact-grid
	{
		grid-template-columns: 1fr;
	}

	.card, form
	{
		padding: 25px;
	}
}

/* Applique le même alignement aux blocs Services et Tarifs */
#services .section-heading,
#tarifs .section-heading {
    width: min(850px, 100%);
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: left;
}

/* Force les H2 à avoir exactement le même style de texte */
#services .section-heading h2,
#tarifs .section-heading h2 {
    text-align: left;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 18px;
    color: var(--text);
}

p {
    font-size: 18px; /* Augmenté de 16px à 18px pour une meilleure lisibilité */
    line-height: 1.8; /* Espace légèrement les lignes pour aérer le texte */
}

/* Ajustement spécifique pour l'introduction du site (Hero section) */
.hero .lead {
    font-size: 20px; /* Légèrement plus grand pour l'accroche principale */
}

.hero .soft {
    font-size: 18px;
}


/* =========================================================
   SECTION TÉMOIGNAGES (HARMONISÉE)
========================================================= */

#temoignages {
    background: var(--cream) !important; /* Même couleur crème que la section Services */
    padding: 100px 0;
}

#temoignages .section-heading {
    width: min(850px, 100%);
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: left;
}

#temoignages .section-heading h2 {
    text-align: left;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 18px;
    color: var(--text);
}

#temoignages .section-heading p {
    text-align: left;
    color: var(--text-soft);
    font-size: 18px; /* Aligné sur votre nouvelle taille de paragraphe */
}

/* Regroupement des styles pour Services, Tarifs et Témoignages */
#services .section-heading,
#tarifs .section-heading,
#temoignages .section-heading {
    width: min(850px, 100%);
    max-width: 850px;
    margin: 0 auto 45px;
    text-align: left;
}

#services .section-heading h2,
#tarifs .section-heading h2,
#temoignages .section-heading h2 {
    text-align: left;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 400;
    margin: 0 0 18px;
    color: var(--text);
}

#services .section-heading p,
#tarifs .section-heading p,
#temoignages .section-heading p {
    text-align: left;
    color: var(--text-soft);
    font-size: 18px;
    margin: 0;
}

/* =========================================================
   FORMULAIRE DE CONTACT (CONFORME À L'IMAGE)
========================================================= */

#contact {
    background: var(--cream);
    padding: 60px 0;
}

/* Conteneur principal du formulaire */
.contact-form {
    max-width: 650px;
    margin: 0 auto;
    padding: 40px;
    background: var(--white); /* Fond blanc pur identique aux tarifs */
    border: none;             /* Suppression complète de la bordure verte */
    border-radius: 30px;      /* Coins très arrondis */
    box-shadow: var(--shadow); /* Même effet d'ombre douce que vos blocs du haut */
    display: flex;
    flex-direction: column;
    gap: 20px;
}



/* Titre "Contact" écrit à la main */
.contact-title {
    font-family: "Kalam", cursive !important;
    font-size: 32px;
    color: var(--green);
    margin: 0 0 10px 0;
    text-align: left;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Alignement côte à côte pour Prénom et Nom */
.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

/* Libellés des champs */
.contact-form label {
    font-size: 14px;
    color: #b25829; /* Couleur marron/orangée des textes de l'image */
    font-weight: 500;
}

/* Champs de saisie (Inputs et Textarea) */
.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    background: #fffbfa; /* Fond légèrement rosé des champs */
    border: 1px solid #c97144; /* Bordure fine marron/orangée */
    border-radius: 4px; /* Coins peu arrondis sur l'image */
    color: var(--text);
    font-size: 15px;
    outline: none;
    transition: border-color 0.2s;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: var(--green);
}

/* Conteneur spécifique pour l'icône téléphone */
.phone-input-container {
    display: flex;
    position: relative;
}

.country-select {
    position: absolute;
    left: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    gap: 5px;
    color: #c97144;
    font-size: 16px;
    pointer-events: none;
}

.arrow-down {
    font-size: 10px;
    transform: rotate(180deg);
}

/* Décale le texte de saisie du téléphone pour laisser la place à l'icône */
.phone-input-container input {
    padding-left: 55px !important;
}

/* Bouton Envoyer large et vert */
.btn-submit {
    width: 100%;
    background: var(--green);
    color: var(--white);
    border: none;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 25px; /* Bouton très arrondi */
    cursor: pointer;
    margin-top: 10px;
    transition: background 0.2s;
}

.btn-submit:hover {
    background: var(--green-dark);
}

/* Responsive pour mobile */
@media (max-width: 600px) {
    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .contact-form {
        padding: 25px;
    }
}

/* Alignement côte à côte du titre principal et de son image */
.merci-header {
    display: flex;
    align-items: center;
    justify-content: center; /* Centre le bloc sur la page */
    gap: 15px;               /* Espace entre le texte et les feuilles */
    margin-top: 10px;
}

/* Version responsive pour les petits écrans (mobile) */
@media (max-width: 600px) {
    .merci-header {
        flex-direction: column; /* Aligne l'image sous le titre si l'écran est trop petit */
        text-align: center;
        gap: 10px;
    }
}

/* =========================================================
   PAGE DE REMERCIEMENT (MERCI.HTML) - CENTRAGE TOTAL
========================================================= */

/* Centre l'intégralité du contenu horizontalement et verticalement sur l'écran */
.merci-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    padding: 20px;
    box-sizing: border-box;
}

/* Boîte principale centrée */
.merci-card {
    max-width: 850px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center; /* Centre tous les éléments enfants à l'intérieur */
    text-align: center;
}

/* Style de l'étiquette "Message envoyé" (Police Kalam verte centrée) */
.merci-badge {
    display: flex;
    align-items: center;
    justify-content: center; /* Centre le texte et les feuilles */
    gap: 10px;
    margin: 0 0 25px 0 !important;
}

.merci-badge img {
    height: 28px;
    width: auto;
    display: inline-block;
}

/* Aligne le grand titre et son image côte à côte, au centre */
.merci-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 25px;
    width: 100%;
}

.merci-header h1 {
    font-size: clamp(36px, 5vw, 56px);
    margin: 0;
    line-height: 1.2;
}

/* Ajuste l'image de feuilles à côté du grand titre */
.merci-leaves {
    height: 45px;
    width: auto;
    object-fit: contain;
    flex-shrink: 0;
}

/* Espacement et taille du texte descriptif */
.merci-text {
    font-size: 18px;
    color: var(--text-soft);
    margin: 0 0 40px 0;
    max-width: 650px;
}

/* Responsive : si l'écran est trop petit, l'image passe sous le titre proprement */
@media (max-width: 650px) {
    .merci-header {
        flex-direction: column;
        gap: 10px;
    }
}
