@font-face {
	font-family: 'LAVIOSSA';
	src: url('Assets/Fonts/Laviossa-Medium.otf') format('opentype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Outfit';
	src: url('Assets/Fonts/Outfit-Regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'Outfit';
	src: url('Assets/Fonts/Outfit-Medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}

@font-face {
	font-family: 'Outfit';
	src: url('Assets/Fonts/Outfit-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

h1,
h2,
h3 {
	font-family: 'LAVIOSSA', sans-serif;
	position: static;
	padding-bottom: 0;
	display: block;
	text-decoration: none;
}

h1 {
	color: #596B59;
	font-size: clamp(1.8rem, 4vw, 2.5rem);
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

body,
p,
button {
	font-family: 'Outfit', sans-serif;
}

body {
	background-color: #596B59;
	min-height: 100vh;
	overflow-x: hidden;
	color: white;
}

header {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	/* box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); */
	background: none;
	height: auto;
}

.header-content {
	display: flex;
	align-items: center;
	justify-content: space-between;
	background: rgba(242, 233, 216, 0.95);
	padding: 12px 2rem;
	border-radius: 0 0 18px 18px;
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	box-sizing: border-box;
	color: #596B59;
	flex-wrap: wrap;
	gap: 1rem;
}

.logo-container {
	width: 200px;
	min-width: 120px;
	flex-shrink: 0;
}

.logo {
	width: 100%;
	height: auto;
}

main {
	min-height: calc(100vh - 120px);
	display: flex;
	flex-direction: column;
	align-items: center;
	background-color: #596B59;
	color: white;
}

/* Masonry Layout */
.masonry-container {
	width: 100%;
	max-width: 1400px;
	padding: 40px 20px;
}

.masonry-grid {
	column-count: 3;
	column-gap: 20px;
	width: 100%;
}

@media (max-width: 900px) {
	.masonry-grid {
		column-count: 2;
	}
}

@media (max-width: 600px) {
	.masonry-grid {
		column-count: 1;
	}
}

.masonry-item {
	break-inside: avoid;
	margin-bottom: 20px;
	position: relative;
	border-radius: 10px;
	overflow: hidden;
	box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.masonry-item:hover {
	transform: translateY(-5px);
	box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.masonry-item img {
	width: 100%;
	height: auto;
	display: block;
	border-radius: 10px;
}

/* Section Comment Réserver */
.reservation-steps {
	width: 100%;
	padding: 4rem 2rem;
	background-color: #596B59;
	margin-top: 60px;
	text-align: center;
}

.reservation-steps h2 {
	color: white;
	font-size: clamp(2rem, 5vw, 2.5rem);
	margin-bottom: 3rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	text-align: center;
	padding: 0 1rem;
}

.steps-container {
	display: flex;
	justify-content: space-around;
	flex-wrap: wrap;
	max-width: 1200px;
	margin: 0 auto;
	gap: 2rem;
}

.step {
	flex: 1;
	min-width: 200px;
	max-width: 250px;
	display: flex;
	flex-direction: column;
	align-items: center;
	padding: 1.5rem;
	border-radius: 15px;
	background-color: #F2E9D8;
	box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease;
}

.step:hover {
	transform: translateY(-10px);
}

.step-icon {
	font-size: 3.5rem;
	margin-bottom: 1rem;
	color: #596B59;
	filter: grayscale(100%);
}

.step h3 {
	color: #596B59;
	margin-bottom: 1rem;
	font-size: clamp(1.2rem, 3vw, 1.5rem);
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	text-align: center;
}

.step h3::after {
	display: none !important;
}

.step p {
	color: #596B59;
	font-size: clamp(0.9rem, 2.5vw, 1rem);
	line-height: 1.4;
	font-family: 'Outfit', sans-serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	text-align: center;
}

/* Section À Propos */
.about-section {
	width: 100%;
	padding: 4rem 2rem;
	background-color: #596B59;
}

.about-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.about-image {
	flex: none;
	max-width: 500px;
	width: 100%;
}

.about-image img {
	width: 100%;
	height: auto;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}

.about-text {
	flex: none;
	width: 95%;
	text-align: center;
}

.about-text h2 {
	color: white;
	font-size: clamp(1.5rem, 3.5vw, 2rem);
	margin-bottom: 1.5rem;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.about-text p {
	color: white;
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	line-height: 1.6;
	font-family: 'Outfit', sans-serif;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	padding: 0 0.5rem;
}

/* Séparateur avec bouton CTA */
.section-separator {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 40px 0;
}

.separator-line {
	flex: 1;
	height: 2px;
	background: rgba(255, 255, 255, 0.3);
	border: none;
}

.cta-btn {
	background: #fff;
	color: #bf5d4a;
	border: none;
	padding: clamp(0.5rem, 2vw, 0.7rem) clamp(1.5rem, 4vw, 2.5rem);
	font-size: clamp(1rem, 2.5vw, 1.2rem);
	font-family: 'Outfit', sans-serif;
	font-weight: 500;
	border-radius: 2px;
	margin: 0 0 0 0;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	letter-spacing: 1px;
	transition: background 0.2s, color 0.2s;
	cursor: pointer;
	display: inline-block;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 100%;
}

.cta-btn:hover {
	background: #F2E9D8;
	color: #BF5E4B;
}

/* Section Contact améliorée */
.contact-section {
	width: 100%;
	padding: 4rem 0 5rem 0;
	background: #596B59;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.contact-section h2 {
	font-size: clamp(2rem, 5vw, 2.7rem);
	margin-bottom: 2.5rem;
	color: #fff;
	letter-spacing: 1px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	text-align: center;
	padding: 0 1rem;
}

.contact-infos {
	display: flex;
	flex-direction: column;
	gap: 2rem;
	align-items: flex-start;
	width: 100%;
	max-width: 500px;
}

.contact-item {
	display: flex;
	align-items: flex-start;
	gap: 1rem;
	width: 100%;
}

.contact-item>div {
	display: flex;
	flex-direction: column;
	justify-content: center;
}

.contact-infos p {
	color: #fff;
	font-size: clamp(1rem, 2.8vw, 1.25rem);
	position: relative;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.contact-infos p strong {
	color: #BF5E4B;
	font-weight: 600;
}

.contact-infos p.phone::before {
	content: '\260E';
	/* ☎ */
	position: absolute;
	left: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	color: #BF5E4B;
}

.contact-infos p.mail::before {
	content: '\2709';
	/* ✉ */
	position: absolute;
	left: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	color: #BF5E4B;
}

.contact-infos p.adresse::before {
	content: '\1F4CD';
	/* 📍 */
	position: absolute;
	left: 1.2rem;
	top: 50%;
	transform: translateY(-50%);
	font-size: 1.4rem;
	color: #BF5E4B;
}

.main-nav {
	display: flex;
	align-items: center;
	gap: 2.2rem;
	margin-right: 40px;
	flex-wrap: wrap;
	justify-content: center;
}

.main-nav a {
	color: #596B59;
	text-decoration: none;
	font-family: 'LAVIOSSA', sans-serif;
	font-size: 1.1rem;
	font-weight: 500;
	padding: 0.4rem 1.1rem;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
}

.main-nav a:hover,
.main-nav a:focus {
	background: #F2E9D8;
	color: #BF5E4B;
	outline: none;
}

@media (max-width: 700px) {
	.main-nav {
		gap: 1rem;
	}

	.main-nav a {
		font-size: 0.95rem;
		padding: 0.3rem 0.7rem;
	}
}

/* Section simple avec titre et photo en deux colonnes */
.simple-photo-section {
	width: 100%;
	padding: 2.5rem 2rem 2.5rem 2rem;
	background: #596B59;
	display: flex;
	flex-direction: column;
	align-items: center;
}

.simple-photo-content {
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	gap: 3rem;
	width: 100%;
	max-width: 1100px;
}

.simple-photo-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	justify-content: center;
	width: 0;
}

.simple-photo-text h2 {
	color: #fff;
	font-family: 'LAVIOSSA', sans-serif;
	font-size: clamp(1.6rem, 4vw, 2.2rem);
	margin-bottom: 1.2rem;
	text-align: left;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.simple-photo-desc {
	color: #fff;
	font-size: clamp(1rem, 2.8vw, 1.15rem);
	line-height: 1.6;
	text-align: left;
	margin-bottom: 0;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	padding: 0 0.5rem;
}

.simple-photo-img {
	flex: 1;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	max-width: 450px;
	width: 100%;
}

.simple-photo-img img {
	width: 100%;
	height: auto;
	border-radius: 12px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
}

@media (max-width: 900px) {
	.simple-photo-content {
		flex-direction: column;
		gap: 2rem;
	}

	.simple-photo-text h2 {
		text-align: center;
		font-size: 1.2rem;
	}

	.simple-photo-desc {
		font-size: 0.98rem;
		text-align: center;
	}

	.simple-photo-img {
		max-width: 100%;
		justify-content: center;
	}
}

/* Effet d'apparition fluide sur les images */
.img-appear {
	transform: scale(1.08);
	filter: blur(8px);
	opacity: 0;
	transition: transform 0.8s cubic-bezier(.22, 1, .36, 1), filter 0.8s cubic-bezier(.22, 1, .36, 1), opacity 0.8s cubic-bezier(.22, 1, .36, 1);
}

.img-appear.visible {
	transform: scale(1);
	filter: blur(0);
	opacity: 1;
}

/* Effet typing doux */
.typing-appear span {
	opacity: 0;
	transition: opacity 0.3s cubic-bezier(.22, 1, .36, 1);
	will-change: opacity;
}

.typing-appear span.visible {
	opacity: 1;
}

@media (max-width: 900px) {
	.header-content {
		flex-direction: column;
		gap: 10px;
		padding: 10px 1rem;
	}

	.logo-container {
		width: 140px;
	}
}

.organic-img {
	opacity: 0;
	transform: scale(1.08);
	transition: opacity 0.8s cubic-bezier(.22, 1, .36, 1), transform 0.8s cubic-bezier(.22, 1, .36, 1);
	will-change: opacity, transform;
	/* Test avec une forme simple */
	clip-path: circle(45% at 50% 50%);
}

/* Ajustement spécifique pour la section Brasero */
.about-section#brasero {
	padding-top: 2rem;
	padding-bottom: 2rem;
	padding-left: 0;
	padding-right: 0;
}

.about-section#brasero .about-content {
	width: 100%;
	max-width: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.about-section#brasero .about-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	display: block;
	margin: 0 auto;
}

.about-section#classique {
	padding-top: 2rem;
	padding-bottom: 2rem;
	padding-left: 0;
	padding-right: 0;
}

.about-section#classique .about-content {
	width: 100%;
	max-width: none;
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
}

.about-section#classique .about-image img {
	width: 100%;
	height: auto;
	object-fit: cover;
	border-radius: 10px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
	display: block;
	margin: 0 auto;
}

.brasero-carousel-container,
.classique-carousel-container {
	position: relative;
	max-width: 100%;
	margin: 0 auto;
	display: flex;
	align-items: center;
	justify-content: center;
	min-height: 0;
	background: none !important;
	padding: 0;
	border: none;
	width: auto;
}

.brasero-carousel,
.classique-carousel {
	display: flex;
	transition: none;
	gap: 2.5rem;
}

@keyframes slideOutLeft {
	0% {
		opacity: 1;
		transform: translateX(0);
	}

	100% {
		opacity: 0;
		transform: translateX(-80px);
	}
}

@keyframes slideInRight {
	0% {
		opacity: 0;
		transform: translateX(80px);
	}

	100% {
		opacity: 1;
		transform: translateX(0);
	}
}

.brasero-carousel img,
.classique-carousel img {
	width: auto;
	height: auto;
	max-height: 320px;
	object-fit: contain;
	border-radius: 18px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
	margin: 0;
	flex-shrink: 0;
	transition: filter 0.5s;
	display: block;
	background: none;
	opacity: 1;
}

.brasero-carousel img.out,
.classique-carousel img.out {
	animation: slideOutLeft 0.7s forwards;
}

.brasero-carousel img.in,
.classique-carousel img.in {
	animation: slideInRight 0.7s forwards;
}

.brasero-carousel img:nth-child(odd) {
	margin-right: 2.5rem;
}

.carousel-btn {
	background: rgba(89, 107, 89, 0.85);
	color: #fff;
	border: none;
	font-size: 2.2rem;
	border-radius: 50%;
	width: 40px;
	height: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	z-index: 2;
	cursor: pointer;
	transition: background 0.2s;
}

.carousel-btn.left {
	left: -20px;
}

.carousel-btn.right {
	right: -20px;
}

.carousel-btn:hover {
	background: #596B59;
}

.ou-bien-text {
	font-family: 'LAVIOSSA', sans-serif;
	font-size: 1.5rem;
	color: #fff;
	background: #627466;
	padding: 0.2em 1.5em;
	border-radius: 8px;
	margin: 0 18px;
	font-weight: normal;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	letter-spacing: 1px;
	border: none;
	display: inline-block;
}

.oubien-separator {
	margin: 40px 0 40px 0;
}

/* Hero section */
.hero-section {
	width: 100%;
	height: 340px;
	background: url('Assets/Images/Hero.jpeg') center center/cover no-repeat;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-overlay {
	width: 100%;
	height: 100%;
	background: rgba(40, 40, 40, 0.38);
	display: flex;
	align-items: center;
	justify-content: center;
}

.hero-title {
	color: #fff;
	font-family: 'LAVIOSSA', sans-serif;
	font-size: clamp(1.5rem, 4vw, 2rem);
	text-align: center;
	text-shadow: 0 4px 18px rgba(0, 0, 0, 0.45);
	letter-spacing: 2px;
	border-radius: 14px;
	padding: 0 2em;
	opacity: 0;
	transition: opacity 0.7s cubic-bezier(.22, 1, .36, 1);
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.hero-title.visible {
	opacity: 1;
}

@media (max-width: 700px) {
	.hero-section {
		height: 180px;
	}

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

/* Nouveau hero image avec cadre et titre */
.hero-img-wrapper {
	width: 100%;
	display: flex;
	justify-content: center;
	margin-top: 24px;
	margin-bottom: 32px;
}

.hero-img-container {
	position: relative;
	width: 100%;
	max-width: 1200px;
	border-radius: 22px;
	overflow: hidden;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
	/* background: #fff; */
}

.hero-img {
	width: 100%;
	display: block;
	border-radius: 22px;
	box-shadow: 0 4px 18px rgba(0, 0, 0, 0.18);
	object-fit: cover;
	height: 80vh;
	min-height: 420px;
	max-height: 900px;
}

.key-points {
	margin-bottom: 1.2em;
	list-style: none;
	padding-left: 0;
}

.hero-img-title-top-left {
	position: absolute;
	top: 60px;
	left: 16px;
	background: none;
	border-radius: 0;
	padding: 0;
	max-width: 55%;
	z-index: 2;
}

.hero-img-title-top-left .hero-title {
	color: #fff;
	font-size: clamp(1.2rem, 3.5vw, 1.4rem);
	text-align: left;
	line-height: 1.2;
	margin: 0;
	background: none;
	box-shadow: none;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

.hero-img-title-bottom-right {
	position: absolute;
	bottom: 60px;
	left: 16px;
	background: none;
	border-radius: 0;
	padding: 0;
	max-width: 55%;
	z-index: 2;
}

.hero-img-title-bottom-right .hero-title {
	color: #fff;
	font-size: clamp(1.5rem, 4.5vw, 2rem);
	text-align: left;
	line-height: 1.2;
	margin: 0;
	background: none;
	box-shadow: none;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
}

@media (max-width: 700px) {
	.hero-img-title-top-left {
		top: 32px;
		left: 50%;
		transform: translateX(-50%);
		max-width: 95%;
		width: 95vw;
		padding: 0 0.5em;
		text-align: center;
	}

	.hero-img-title-top-left .hero-title {
		font-size: 1rem;
		text-align: center;
		padding: 0 0.2em;
	}

	.hero-img-title-bottom-right {
		bottom: 32px;
		left: 50%;
		transform: translateX(-50%);
		max-width: 95%;
		width: 95vw;
		padding: 0 0.5em;
		text-align: center;
	}

	.hero-img-title-bottom-right .hero-title {
		font-size: 1.3rem;
		text-align: center;
		padding: 0 0.2em;
	}

	.about-section .about-content {
		flex-direction: column !important;
		align-items: center !important;
	}

	.about-section .about-text {
		text-align: center !important;
		align-items: center !important;
	}

	.brasero-carousel-container,
	.classique-carousel-container {
		justify-content: center !important;
		align-items: center !important;
		width: 100vw !important;
		max-width: 100vw !important;
		margin: 0 auto !important;
		overflow: hidden !important;
		padding: 0 !important;
		height: 320px !important;
		min-height: 320px !important;
	}

	.brasero-carousel,
	.classique-carousel {
		gap: 0 !important;
		justify-content: center !important;
		width: 100vw !important;
		max-width: 100vw !important;
		overflow: visible !important;
		height: 320px !important;
		min-height: 320px !important;
	}

	.brasero-carousel img,
	.classique-carousel img {
		display: none !important;
		max-width: 90vw !important;
		height: 300px !important;
		width: 90vw !important;
		margin: 0 auto !important;
		object-fit: cover !important;
		border-radius: 12px !important;
	}

	.brasero-carousel img.in,
	.classique-carousel img.in {
		display: block !important;
		margin: 0 auto !important;
		height: 300px !important;
		width: 90vw !important;
		object-fit: cover !important;
	}

	.simple-photo-content {
		flex-direction: column !important;
		align-items: center !important;
		gap: 1.2rem !important;
	}

	.simple-photo-text {
		align-items: center !important;
		text-align: center !important;
		width: 100% !important;
	}

	.simple-photo-img {
		max-width: 320px !important;
		width: 100% !important;
		margin: 0 auto !important;
		display: flex !important;
		justify-content: center !important;
	}

	.simple-photo-img img {
		max-width: 100% !important;
		height: auto !important;
		object-fit: contain !important;
	}
}

.google-reviews-section {
	width: 100%;
	background: #596B59;
	color: #fff;
	padding: 3rem 0 2rem 0;
	text-align: center;
}

.google-reviews-section h2 {
	font-family: 'LAVIOSSA', sans-serif;
	font-size: clamp(1.6rem, 4vw, 2rem);
	margin-bottom: 2rem;
	color: #fff;
	word-wrap: break-word;
	overflow-wrap: break-word;
	hyphens: auto;
	text-align: center;
	padding: 0 1rem;
}

#google-reviews-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1.5rem;
	min-height: 60px;
}

.google-review-card {
	background: rgba(255, 255, 255, 0.08);
	color: #fff;
	border-radius: 14px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
	padding: 1.2rem 1.5rem;
	max-width: 340px;
	min-width: 220px;
	text-align: left;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

.google-review-author {
	font-weight: bold;
	margin-bottom: 0.5rem;
	color: #fff;
}

.google-review-rating {
	color: #FFD700;
	margin-bottom: 0.5rem;
}

.google-review-text {
	font-size: 1rem;
	color: #fff;
}

/* Apparition floue des textes */
.blur-appear {
	filter: blur(8px);
	opacity: 0.3;
	transition: filter 0.7s cubic-bezier(.22, 1, .36, 1), opacity 0.7s cubic-bezier(.22, 1, .36, 1);
}

.blur-appear.visible {
	filter: blur(0);
	opacity: 1;
}

.avis-carousel {
	position: relative;
	max-width: 700px;
	margin: 2.5rem auto 2rem auto;
	background: rgba(255, 255, 255, 0.04);
	border-radius: 18px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
	padding: 2.5rem 2.2rem 2.5rem 2.2rem;
	min-height: 220px;
	overflow: visible;
}

.avis-slide {
	display: none;
	flex-direction: column;
	align-items: center;
	text-align: center;
	color: #fff;
	font-family: 'Outfit', sans-serif;
	font-size: 1.1rem;
	line-height: 1.6;
	opacity: 0;
	transition: opacity 1.2s cubic-bezier(.22, 1, .36, 1);
}

.avis-slide.active {
	display: flex;
	opacity: 1;
	transition: opacity 1.2s cubic-bezier(.22, 1, .36, 1);
}

.avis-slide.fadeout {
	opacity: 0;
	transition: opacity 1.2s cubic-bezier(.22, 1, .36, 1);
	z-index: 0;
}

.avis-note {
	color: #FFD700;
	font-size: 1.5rem;
	margin-bottom: 0.5rem;
	letter-spacing: 2px;
}

.avis-nom {
	font-family: 'LAVIOSSA', sans-serif;
	font-size: 1.15rem;
	color: #F2E9D8;
	margin-bottom: 0.7rem;
	font-weight: bold;
}

.avis-texte {
	font-size: 1.08rem;
	color: #fff;
}

.avis-btn {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	background: rgba(255, 255, 255, 0.13);
	border: none;
	color: #BF5E4B;
	font-size: 1.5rem;
	border-radius: 50%;
	width: 55px;
	height: 55px;
	cursor: pointer;
	transition: background 0.2s;
	z-index: 2;
	display: flex;
	align-items: center;
	justify-content: center;
}

.avis-btn i {
	font-size: 1.5rem;
}

.avis-btn.prev {
	left: -70px;
}

.avis-btn.next {
	right: -70px;
}

.avis-btn:hover {
	background: #F2E9D8;
	color: #BF5E4B;
}

@media (max-width: 700px) {
	.avis-carousel {
		padding: 1.2rem 0.5rem;
	}

	.avis-nom {
		font-size: 1rem;
	}

	.avis-texte {
		font-size: 0.98rem;
	}
}

.avis-header {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 1.5rem;
	margin-bottom: 1.2rem;
}

.avis-link {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
}

.avis-link a {
	color: #F2E9D8;
	text-decoration: none;
	font-size: 1.25rem;
	font-family: 'LAVIOSSA', sans-serif;
	font-weight: 500;
	transition: color 0.2s;
}

.avis-link a:hover {
	color: #fff;
	text-decoration: none;
}

.avis-title {
	flex: 2;
	margin: 0;
	text-align: center;
	color: #fff;
	font-family: 'LAVIOSSA', sans-serif;
	font-size: 2.1rem;
	letter-spacing: 1px;
}

.avis-header-mobile {
	display: none;
}

.avis-header-desktop {
	display: flex;
}

@media (max-width: 700px) {
	.avis-header-desktop {
		display: none;
	}

	.avis-header-mobile {
		display: block;
	}
}

@media (max-width: 700px) {
	.avis-header {
		flex-direction: column;
		gap: 0.5rem;
	}

	.avis-link,
	.avis-title {
		flex: unset;
		width: 100%;
		justify-content: center;
		text-align: center;
	}
}

.main-footer {
	width: 100%;
	background: #F2E9D8;
	padding: 2rem 0 1.2rem 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 3rem;
}

.footer-content {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 2.5rem;
	width: 100%;
	max-width: 1100px;
	flex-wrap: wrap;
	padding: 0 1rem;
}

.footer-logo-container {
	width: 120px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.footer-logo {
	width: 100%;
	height: auto;
	display: block;
}

.footer-nav {
	display: flex;
	gap: 2.2rem;
	flex-wrap: wrap;
	justify-content: center;
}

.footer-nav a {
	color: #596B59;
	text-decoration: none;
	font-family: 'LAVIOSSA', sans-serif;
	font-size: 1.1rem;
	font-weight: 500;
	padding: 0.4rem 1.1rem;
	border-radius: 4px;
	transition: background 0.2s, color 0.2s;
}

.footer-nav a:hover {
	background: #596B59;
	color: #F2E9D8;
}

@media (max-width: 700px) {
	.footer-content {
		flex-direction: column;
		gap: 1.2rem;
	}

	.footer-nav {
		gap: 1.1rem;
	}
}

@media (max-width: 480px) {
	.header-content {
		padding: 12px 1rem;
		gap: 0.5rem;
	}

	.main-nav {
		gap: 0.5rem;
	}

	.main-nav a {
		font-size: 0.9rem;
		padding: 0.3rem 0.5rem;
	}

	.footer-content {
		padding: 0 0.5rem;
	}

	.footer-nav a {
		font-size: 1rem;
		padding: 0.3rem 0.7rem;
	}
}

#cookie-banner {
	position: fixed;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	width: 100vw;
	background: #F2E9D8;
	color: #596B59;
	display: flex;
	justify-content: center;
	align-items: center;
	box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
	padding: 1.2rem 0.5rem;
	font-family: 'Outfit', sans-serif;
}

.cookie-banner-content {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 0.8rem;
	max-width: 95vw;
}

.cookie-banner-content span {
	font-size: 1.08rem;
	color: #596B59;
	text-align: center;
}

.cookie-banner-btns {
	display: flex;
	gap: 1rem;
	flex-wrap: wrap;
	justify-content: center;
}

#cookie-banner .cta-btn {
	background: #fff;
	color: #596B59;
	border: 1px solid #596B59;
	font-size: 1rem;
	padding: 0.5rem 1.2rem;
	border-radius: 6px;
	box-shadow: none;
	margin: 0;
	transition: background 0.2s, color 0.2s;
}

#cookie-banner .cta-btn:hover {
	background: #596B59;
	color: #F2E9D8;
}

@media (max-width: 700px) {
	#cookie-banner {
		padding: 0.7rem 0.2rem;
	}

	.cookie-banner-content span {
		font-size: 0.98rem;
	}

	.cookie-banner-btns {
		gap: 0.5rem;
	}
}

.contact-container {
	align-items: flex-start;
}

.contact-info-section {
	justify-content: flex-start;
}

@media (max-width: 800px) {
	.contact-container {
		flex-direction: column !important;
		gap: 2.2rem !important;
		padding: 0 0.5rem !important;
	}

	.contact-form-section,
	.contact-info-section {
		flex: unset !important;
		width: 100% !important;
		max-width: 100% !important;
	}
}

@media (min-width: 701px) and (max-width: 1100px) {
	.about-section .about-text h2 {
		font-size: 1.5rem;
	}

	.about-section .about-text p {
		font-size: 1.05rem;
	}
}

@media (min-width: 701px) and (max-width: 1100px) {
	.simple-photo-section .simple-photo-text h2 {
		font-size: 1.35rem;
	}

	.simple-photo-section .simple-photo-desc {
		font-size: 1.01rem;
	}
}

/* Styles pour le swipe sur mobile */
@media (max-width: 768px) {
	.avis-carousel {
		touch-action: pan-y pinch-zoom;
		user-select: none;
		cursor: grab;
	}

	.avis-carousel:active {
		cursor: grabbing;
	}
}