/* ==========================================================
   styles.css — Feuille de style externalisée
   Site : naturopathe-sans-gluten.fr
   ========================================================== */
.technique-card,
.pillar-card,
.credential-item {
	transition: transform .25s ease, box-shadow .25s ease;
}

.technique-card:hover,
.pillar-card:hover,
.credential-item:hover {
	transform: translateY(-6px);
	box-shadow: 0 14px 30px rgba(0, 0, 0, 0.07);
}

/* ===== LAYOUT ===== */
.container {
	max-width: 1100px;
	margin: 0 auto;
	padding: 0 24px;
}

section {
	padding: 80px 0;
}

/* ===== BOUTONS ===== */
.btn {
	display: inline-block;
	padding: 14px 28px;
	border-radius: 50px;
	font-family: var(--font-body);
	font-size: 0.95rem;
	font-weight: 600;
	cursor: pointer;
	text-decoration: none;
	transition: all 0.25s ease;
	border: 2px solid transparent;
}

.btn-primary {
	background-color: var(--color-accent);
	color: var(--color-white);
	border-color: var(--color-accent);
	box-shadow: 0 4px 12px rgba(229, 115, 235, 0.4);
}

.btn-primary:hover {
	background-color: var(--color-accent-dark);
	border-color: var(--color-accent-dark);
	box-shadow: 0 6px 20px rgba(229, 115, 235, 0.5);
}

.btn-outline {
	background-color: transparent;
	color: var(--color-white);
	border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
	background-color: rgba(255, 255, 255, 0.15);
}

/* Correction offset scroll pour menu fixe */
#contact,
#naturopathie,
#intro,
#sans_gluten,
#naturopathe,
#reservation,
#avis-google,
#cgv,
#faq {
	scroll-margin-top: 70px;
}

/* ================================== */
/* ========= SECTION : HERO ========= */
/* ================================== */
#hero {
	min-height: 100vh;
	display: flex;
	align-items: center;
	justify-content: center;
	background: linear-gradient(135deg, var(--color-accent-dark), var(--color-accent));
	color: var(--color-white);
	padding: 60px 24px;
	background-size: 200% 200%;
	animation: gradientMove 14s ease infinite;
}

@keyframes gradientMove {
	0% {
		background-position: 0% 50%;
	}

	50% {
		background-position: 100% 50%;
	}

	100% {
		background-position: 0% 50%;
	}
}

#hero .hero-inner {
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

#hero .hero-content {
	text-align: left;
}

#hero .hero-label {
	display: inline-block;
	background: rgba(255, 255, 255, 0.15);
	color: rgba(255, 255, 255, 0.9);
	font-size: 0.8rem;
	font-weight: 600;
	letter-spacing: 0.15em;
	text-transform: uppercase;
	padding: 6px 16px;
	border-radius: 50px;
	margin-bottom: 28px;
}

#hero h1 {
	color: var(--color-white);
	margin-bottom: 20px;
}

#hero p {
	color: rgba(255, 255, 255, 0.85);
	font-size: 1.15rem;
	margin-bottom: 40px;
}

.hero-buttons {
	display: flex;
	gap: 16px;
	flex-wrap: wrap;
}

/* Image hero */
.hero-image-wrapper {
	position: relative;
	border-radius: 20px;
	overflow: hidden;
	box-shadow: 0 24px 60px rgba(0, 0, 0, 0.3);
	width: auto;
	height: 80%;
}

.hero-image-wrapper img {
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
}

/* Décoration floue derrière l'image */
.hero-image-wrapper::before {
	content: '';
	position: absolute;
	inset: -20px;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 28px;
	z-index: -1;
}

.mobile-reservation {
	display: none;
}

/* ================================== */
/* ===== SECTION : NATUROPATHIE ===== */
/* ================================== */
#naturopathie {
	background-color: var(--color-white);
}

#naturopathie .section-header {
	text-align: center;
	max-width: 700px;
	margin: 0 auto 48px;
}

#naturopathie .section-header h2 {
	color: var(--color-accent-dark);
	margin-bottom: 16px;
}

#naturopathie p {
	text-align: left;
}

.naturopathie-layout {
	display: flex;
	gap: 24px;
	justify-content: center;
}

.techniques {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 24px;
	margin-bottom: 48px;
}

.technique-card {
	background-color: var(--color-white);
	border-radius: var(--radius);
	padding: 32px 28px;
	box-shadow: var(--shadow);
}

.technique-card h3 {
	color: var(--color-accent-dark);
	margin-bottom: 12px;
}

.quote-block {
	background-color: var(--color-accent);
	color: var(--color-white);
	border-radius: var(--radius);
	padding: 40px 48px;
	text-align: center;
	max-width: 700px;
	margin: 0 auto;
}

.quote-block blockquote {
	font-family: var(--font-heading);
	font-size: 1.25rem;
	font-style: italic;
	line-height: 1.6;
	color: var(--color-white);
}

/* ================================== */
/* ======== SECTION : INTRO ========= */
/* ================================== */
#intro {
	background-color: var(--color-bg);
}

#intro .intro-header {
	text-align: center;
	max-width: 680px;
	margin: 0 auto 60px;
}

#intro .intro-header h2 {
	margin-bottom: 16px;
	color: var(--color-accent-dark);
}

#intro p {
	text-align: left;
}

.pillars {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
	gap: 28px;
	margin-bottom: 60px;
}

.pillar-card {
	background-color: var(--color-accent-light);
	border-radius: var(--radius);
	padding: 32px 28px;
}

.pillar-card .icon {
	font-size: 2rem;
	margin-bottom: 12px;
	display: block;
}

.pillar-card h3 {
	color: var(--color-accent-dark);
	margin-bottom: 10px;
}

.stats {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
	gap: 24px;
	text-align: center;
	border-top: 1px solid var(--color-border);
	padding-top: 48px;
}

.stat-item .stat-value {
	font-family: var(--font-heading);
	font-size: 2.5rem;
	font-weight: 700;
	color: var(--color-accent);
	display: block;
}

.stat-item .stat-label {
	font-weight: 600;
	color: var(--color-text);
	font-size: 0.9rem;
}

.stat-item .stat-sub {
	color: var(--color-text-light);
	font-size: 0.85rem;
}

/* ================================== */
/* ===== SECTION : NATUROPATHE ====== */
/* ================================== */
#naturopathe {
	background-color: var(--color-bg);
}

#naturopathe .section-header {
	text-align: center;
	margin-bottom: 48px;
}

#naturopathe .section-header h2 {
	color: var(--color-accent-dark);
	margin-bottom: 8px;
}

#naturopathe .naturopathe-content {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 60px;
	align-items: center;
}

#naturopathe .naturopathe-photo {
	display: flex;
	justify-content: center;
	background-color: var(--color-bg);
	width: 100%;
	overflow: hidden;
	margin-bottom: 25px;
}

#naturopathe .naturopathe-photo img {
	width: 80%;
	height: auto;
	display: block;
	border-radius: 12px;
	object-fit: cover;
	/* ou contain selon ton besoin */
}

#naturopathe .naturopathe-bio {
	gap: 16px;
}

#naturopathe .naturopathe-bio p {
	text-align: left;
	margin-bottom: 16px;
}

#naturopathe .naturopathe-footer {
	display: grid;
	grid-template-columns: 1fr 1fr;
	align-items: start;
}

#naturopathe .credential-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
	background-color: var(--color-accent-light);
	border-radius: var(--radius);
	padding: 18px 20px;
	margin: 10px;
}

#naturopathe .credential-item .cred-icon {
	font-size: 1.3rem;
	flex-shrink: 0;
	margin-top: 2px;
}

#naturopathe .credential-item p {
	margin: 0;
	color: var(--color-text);
	font-size: 0.95rem;
}

/* ================================== */
/* ===== SECTION : SANS GLUTEN ====== */
/* ================================== */
#sans_gluten {
	background-color: var(--color-white);
}

#sans_gluten .section-header {
	text-align: center;
}

#sans_gluten p {
	text-align: left;
}

#sans_gluten img {
	width: 180px;
	/* Taille des images */
	height: auto;
	border-radius: 8px;
	/* Optionnel : arrondir les bords */
	box-shadow: var(--shadow);
	/* Même style que le site */
	margin: 32px;
}

/* ================================== */
/* ======= SECTION : CONTACT ======== */
/* ================================== */
#contact {
	background-color: var(--color-white);
}

#contact .section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
}

#contact .section-header h2 {
	color: var(--color-accent-dark);
	margin-bottom: 16px;
}

.contact-grid {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 40px;
}

/* ==== Boutons Réseaux Sociaux (horizontaux) ==== */
#contact-social-buttons {
	display: flex;
	flex-direction: row;
	/* horizontal */
	gap: 18px;
	/* espacement horizontal */
	margin-top: 20px;
	margin-bottom: 20px;
}

/* Bouton générique */
.social-btn {
	padding: 12px;
	border-radius: 50%;
	display: flex;
	justify-content: center;
	align-items: center;
	width: 46px;
	height: 46px;
	transition: all .25s ease;
	color: #fff;
	box-shadow: 0 0 10px rgba(0, 0, 0, 0.25);
}

.btn-call-tel {
	display: none;
	/* caché par défaut */
}

.btn-call {
	display: inline-block;
	/* caché par défaut */
}

.contact-info {
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 14px;
}

.contact-item .contact-icon {
	font-size: 1.3rem;
	flex-shrink: 0;
}

.contact-item .contact-label {
	font-weight: 600;
	color: var(--color-text);
	font-size: 0.9rem;
	display: block;
	margin-bottom: 2px;
}

.contact-item p {
	margin: 0;
	font-size: 0.95rem;
}

.consultations-box {
	background-color: var(--color-white);
	border-radius: var(--radius);
	padding: 36px 32px;
	box-shadow: var(--shadow);
}

.consultations-box h3 {
	color: var(--color-accent-dark);
	margin-bottom: 12px;
}

.consultations-box p {
	margin-bottom: 24px;
}

.consult-options {
	display: flex;
	flex-direction: column;
	gap: 14px;
	margin-bottom: 28px;
}

.consult-option {
	background-color: var(--color-accent-light);
	border-radius: 8px;
	padding: 14px 18px;
}

.consult-option h4 {
	color: var(--color-accent-dark);
	margin-bottom: 4px;
}

.consult-option p {
	margin: 0;
	font-size: 0.9rem;
}

.disclaimer {
	font-size: 0.8rem;
	color: var(--color-text-light);
	font-style: italic;
	border-top: 1px solid var(--color-border);
	padding-top: 16px;
	margin-top: 16px;
}

/* ================================== */
/* ===== SECTION : AVIS GOOGLE ====== */
/* ================================== */
#avis-google {
	background-color: var(--color-bg);
}

#avis-google h2 {
	font-size: 2rem;
	color: var(--color-accent-dark);
}

.btn-avis-google {
	display: inline-block;
	background: var(--color-accent);
	color: #fff;
	padding: 12px 28px;
	border-radius: 40px;
	font-weight: 600;
	text-decoration: none;
	margin-top: 25px;
	transition: 0.3s ease;
	box-shadow: 0 6px 20px rgba(229, 115, 235, 0.5);
}

.btn-avis-google:hover {
	background: var(--color-accent-dark);
}


/* ===== Reco ===== */
.reco-section {
	padding: 60px 20px;
	background: #f8f9fb;
}

.reco-title {
	font-size: 2.4rem;
	text-align: center;
	margin-bottom: 40px;
	color: #1e1e1e;
	font-weight: 700;
}

/* ===== Grid ===== */
.reco-grid {
	display: grid;
	gap: 32px;
	max-width: 1200px;
	margin: 0 auto;
	grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

/* ===== Card ===== */
.reco-card {
	background: #fff;
	border-radius: 18px;
	overflow: hidden;
	box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
	transition: transform .25s ease, box-shadow .25s ease;
}

.reco-card:hover {
	transform: translateY(-6px);
	box-shadow: 0 16px 45px rgba(0, 0, 0, 0.13);
}

/* ===== Image ===== */
.reco-img {
	width: 100%;
	height: 200px;
	object-fit: cover;
}

/* ===== Content ===== */
.carousel-wrapper {
	position: relative;
	max-width: 1000px;
	/* On élargit un peu pour laisser de la place */
	margin: auto;
	padding: 0 60px;
	/* On ajoute une marge interne pour que les boutons ne collent pas aux bords de l'écran */
}

.nav-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	/* Centre verticalement les boutons */
	background: var(--color-accent);
	color: white;
	border: none;
	border-radius: 50%;
	width: 45px;
	height: 45px;
	cursor: pointer;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	display: flex;
	align-items: center;
	justify-content: center;
	transition: all 0.3s ease;
}

/* On écarte le bouton précédent vers la gauche */
.prev {
	left: 0;
}

/* On écarte le bouton suivant vers la droite */
.next {
	right: 0;
}

/* Effet au survol */
.nav-btn:hover {
	background: var(--color-accent-dark);
	scale: 1.1;
}

.carousel-container {
	overflow: hidden;
	width: 90%;
	margin: auto;
}

.carousel-track {
	display: flex;
	transition: transform 0.5s ease-in-out;
	gap: 20px;
	/* Espace entre les avis */
}

.review-card {
	/* On calcule 33% moins l'espace du gap pour que 3 cartes rentrent pile */
	flex: 0 0 calc(50% - 14px);
	background: #ffffff;
	border-radius: 15px;
	padding: 30px;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
	position: relative;
	box-sizing: border-box;
}

.review-card-date {
	font-style: italic;
	font-size: 0.7em;
}

.stars {
	color: #fbbc05;
	font-size: 1.5rem;
	margin-bottom: 10px;
}

.text {
	font-style: italic;
	color: #333;
	margin-bottom: 20px;
}

.author strong {
	display: block;
	color: #4285f4;
}

.google-rating-header {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-bottom: 30px;
	font-family: 'Arial', sans-serif;
}

.google-brand {
	display: flex;
	flex-direction: column;
	align-items: center;
	font-weight: bold;
	color: #5f6368;
}

.google-brand span {
	font-size: 0.9rem;
	margin-top: 5px;
}

.rating-info {
	display: flex;
	align-items: center;
	gap: 12px;
	border-left: 1px solid #ddd;
	padding-left: 20px;
}

.average-score {
	font-size: 2.5rem;
	font-weight: bold;
	color: #3c4043;
}

.star-rating {
	display: flex;
	flex-direction: column;
}

.stars-fill {
	color: #fbbc05;
	/* La couleur dorée officielle de Google */
	font-size: 1.2rem;
	letter-spacing: 2px;
}

.review-count {
	color: #70757a;
	font-size: 0.9rem;
}

/* ================================== */
/* ========= SECTION : CGV ========== */
/* ================================== */
#cgv {
	background-color: var(--color-white);
}

#cgv h2 {
	color: var(--color-accent-dark);
	margin-bottom: 40px;
	text-align: center;
}

.cgv-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
	gap: 24px;
}

.cgv-item {
	padding: 24px;
	border-left: 3px solid var(--color-accent);
	background-color: var(--color-bg);
	border-radius: 0 var(--radius) var(--radius) 0;
}

.cgv-item h4 {
	color: var(--color-accent-dark);
	margin-bottom: 10px;
	font-size: 1rem;
}

.cgv-item p {
	font-size: 0.9rem;
	margin: 0;
}

/* ===== FAQ ===== */
#faq {
	background-color: var(--color-bg);
}

#faq h2 {
	color: var(--color-accent-dark);
	margin-bottom: 40px;
	text-align: center;
}

#faq .section-header {
	text-align: center;
	max-width: 640px;
	margin: 0 auto 56px;
}

#faq .section-header h2 {
	color: var(--color-accent-dark);
	margin-bottom: 16px;
}


/* ================================== */
/* ========= RESPONSIVE TEL ========= */
/* ================================== */
@media (max-width: 768px) {

	/* --- Typographie & Espacement --- */
	section {
		padding: 50px 0;
	}

	p {
		text-align: left;
		font-size: 1rem;
	}

	#p-footer {
		text-align: center;
	}

	/* --- Hero Section --- */
	#hero {
		padding-top: 75px;
	}

	#hero .hero-inner {
		grid-template-columns: 1fr;
		gap: 30px;
		text-align: center;
	}

	#hero .hero-content {
		text-align: center;
	}

	.hero-image-wrapper {
		order: 0;
		max-height: 350px;
		width: 100%;
		margin-top: 20px;
	}

	.hero-buttons {
		justify-content: center;
	}

	.btn {
		width: 100%;
		text-align: center;
	}

	/* --- Grilles --- */
	.stats {
		grid-template-columns: 1fr 1fr;
		gap: 20px;
	}

	.naturopathe-footer {
		grid-template-columns: 1fr;
	}

	/* --- Section Naturopathe --- */
	#naturopathe .naturopathe-content {
		display: grid;
		grid-template-columns: 1fr;
		/* On passe sur une seule colonne */
		gap: 20px;
		/* Espace entre la photo et le texte */
	}

	#naturopathe .naturopathe-photo {
		order: 1;
		/* Force la photo en première position */
		margin-bottom: 10px;
	}

	#naturopathe .naturopathe-bio {
		order: 2;
		/* Place la biographie en deuxième position */
		text-align: left;
		/* Assure que le texte reste bien aligné */
	}

	/* Ajustement de la photo pour qu'elle soit bien visible */
	#naturopathe .naturopathe-photo img {
		width: 90%;
		/* On augmente la taille pour le mobile */
		margin: 0 auto;
		/* On la centre horizontalement */
	}

	.review-card {
		flex: 0 0 100%;
	}

	/* --- Section Contact --- */
	#contact .contact-grid {
		display: flex;
		/* Nous utilisons flexbox pour gérer l'ordre facilement */
		flex-direction: column;
		/* Empilement vertical */
		gap: 40px;
		/* Espace entre les deux blocs */
	}

	.contact-info {
		order: 1;
		/* Définit ce bloc comme le premier élément visuel */
	}

	.consultations-box {
		order: 2;
		/* Définit ce bloc comme le second élément visuel */
	}
}