@font-face {
	font-family: 'Laviossa';
	src: url('Assets/Fonts/Laviossa-Medium.otf') format('opentype');
	font-weight: 500;
	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-Bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}

body {
	margin: 0;
	background: #ffefd7;
	font-family: 'Outfit', Arial, sans-serif;
	color: #475747;
	overflow-x: hidden;
}

header {
	background: #475747;
	border-radius: 0 0 18px 18px;
	display: flex;
	align-items: center;
	justify-content: space-between;
	background-clip: padding-box;
	padding: 28px 2rem;
	max-width: 1400px;
	width: 100%;
	margin: 0 auto 40px auto;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
	position: static;
	box-sizing: border-box;
	flex-wrap: wrap;
	gap: 1rem;
}

.logo {
	font-family: 'Laviossa', serif;
	font-size: 2rem;
	color: #ffefd7;
	letter-spacing: 2px;
	font-weight: bold;
	flex: 0 0 auto;
	margin-left: 1.5rem;
}

.logo-img {
	height: 60px;
	width: auto;
	display: block;
	filter: brightness(0) saturate(0%) invert(98%) sepia(3%) saturate(1352%) hue-rotate(314deg) brightness(102%) contrast(96%);
	-webkit-filter: brightness(0) saturate(0%) invert(98%) sepia(3%) saturate(1352%) hue-rotate(314deg) brightness(102%) contrast(96%);
}

nav {
	display: flex;
	gap: 2.5rem;
	align-items: center;
	justify-content: flex-end;
	margin-left: auto;
	flex: 1 1 auto;
	text-align: right;
}

nav a {
	font-family: 'Laviossa', serif;
	color: #ffefd7;
	text-decoration: none;
	font-size: 1.25rem;
	letter-spacing: 0.5px;
	transition: opacity 0.2s;
}

nav a:hover { opacity: 0.85; color: #ffefd7; }

main {
	max-width: 1100px;
	margin: 0 auto;
	position: relative;
}

.hero-container {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto 40px auto;
	padding: 0 20px;
	position: relative;
}

.hero {
	background: #475747;
	border-radius: 30px;
	padding: 25px 35px 35px 35px;
	/* padding réduit pour que tout soit visible */
	margin-bottom: 40px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
	position: relative;
	overflow: visible;
}

.hero-content {
	display: flex;
	align-items: center;
	gap: 30px;
	justify-content: space-between;
}

.hero-avis-box {
	background: #475747;
	border-radius: 16px;
	padding: 14px 16px;
	display: flex;
	flex-direction: column;
	gap: 12px;
	width: auto;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
	position: fixed;
	top: 200px;
	right: 10px;
	z-index: 10;
}

.avis-link {
	text-decoration: none;
	color: #ffefd7;
	display: flex;
	align-items: center;
	gap: 12px;
	transition: opacity 0.2s ease;
}

.avis-link:hover {
	opacity: 0.85;
}

.thefork-logo-wrapper {
	width: 28px;
	height: 28px;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
}

.thefork-logo {
	width: 28px;
	height: 28px;
	object-fit: contain;
	display: block;
	filter: brightness(0) saturate(0%) invert(98%) sepia(3%) saturate(1352%) hue-rotate(314deg) brightness(102%) contrast(96%);
	-webkit-filter: brightness(0) saturate(0%) invert(98%) sepia(3%) saturate(1352%) hue-rotate(314deg) brightness(102%) contrast(96%);
}

.avis-icon {
	font-size: 1.6rem;
	color: #ffefd7;
	font-weight: bold;
	display: flex;
	align-items: center;
	justify-content: center;
	min-width: 28px;
}

.avis-note {
	font-family: 'Outfit', Arial, sans-serif;
	color: #ffefd7;
	font-size: 1.2rem;
	font-weight: bold;
}

.hero-text {
	flex: 1;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: left;
	z-index: 3;
	position: relative;
	margin-top: 0;
}

.hero-video {
	width: auto;
	height: 450px;
	aspect-ratio: 9 / 16;
	flex-shrink: 0;
	z-index: 2;
	position: relative;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	border: 3px solid #ffefd7;
	background: #000;
}

.hero-video-element {
	width: 100%;
	height: 100%;
	display: block;
	object-fit: cover;
}

.hero-text h1 {
	font-family: 'Laviossa', serif;
	color: #ffefd7;
	font-size: 1.9rem;
	margin-top: 4px;
	margin-bottom: 12px;
	font-weight: bold;
}

.hero-text p {
	font-family: 'Outfit', Arial, sans-serif;
	color: #ffefd7;
	font-size: 1.05rem;
	line-height: 1.5;
}

/* Responsive Hero */
@media (max-width: 900px) {
	main {
		max-width: 100%;
		padding: 0 12px;
	}
	
	.hero-container {
		padding: 0;
		margin: 0 auto 32px auto;
	}
	
	.hero-content {
		flex-direction: column;
		gap: 30px;
	}
	
	.hero-text {
		text-align: center;
	}
	
	.hero-video {
		width: 100%;
		max-width: 400px;
		height: auto;
		aspect-ratio: 9 / 16;
	}
	
	.hero-video-element {
		width: 100%;
		height: 100%;
	}
	
	.hero-avis-box {
		position: relative;
		top: auto;
		right: auto;
		width: 100%;
		max-width: 400px;
		margin: 20px auto 0 auto;
	}
}

/* Carrousel horizontal plein largeur */
.carousel-section-full {
	width: 100vw;
	margin: 40px 0;
	overflow: hidden;
	position: relative;
	left: 50%;
	right: 50%;
	margin-left: -50vw;
	margin-right: -50vw;
}

.carousel-link-wrapper-full {
	display: block;
	width: 100%;
	text-decoration: none;
}

.carousel-full {
	width: 100%;
	height: 400px;
	overflow: hidden;
	position: relative;
	background: #475747;
}

.carousel-track {
	display: flex;
	width: fit-content;
	height: 100%;
	animation: scroll-horizontal 60s linear infinite;
	gap: 20px;
	padding: 0 10px;
	align-items: center;
}

.carousel-track:hover {
	animation-play-state: paused;
}

.carousel-full-img {
	width: 600px;
	height: 360px;
	object-fit: cover;
	flex-shrink: 0;
	display: block;
	border-radius: 12px;
	border: 3px solid #ffefd7;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* === Animations d'apparition === */
.img-appear {
	opacity: 0;
	transform: translateY(20px) scale(0.98);
	transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

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

.blur-appear {
	opacity: 0;
	filter: blur(10px);
	transform: translateY(10px);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out, filter 0.7s ease-out;
}

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

.organic-img {
	opacity: 0;
	transform: scale(0.95) rotate(-2deg);
	transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.organic-img.visible {
	opacity: 1;
	transform: scale(1) rotate(0);
}

@keyframes scroll-horizontal {
	0% {
		transform: translateX(0);
	}
	100% {
		transform: translateX(calc(-11 * (600px + 20px)));
	}
}

@media (max-width: 900px) {
	.carousel-full {
		height: 300px;
	}
}

/* Carrousel */
.carousel-section {
	display: flex;
	justify-content: center;
	margin-bottom: 40px;
}

.carousel {
	position: relative;
	width: 80vw;
	/* occupe 80% de la largeur de la fenêtre */
	max-width: 900px;
	/* limite la taille sur grand écran */
	height: 400px;
	/* hauteur plus grande */
	background: #475747;
	border-radius: 25px;
	overflow: hidden;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
	display: flex;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	/* centre le carrousel */
	cursor: pointer;
}

.carousel-img {
	position: absolute;
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 25px;
	opacity: 0;
	transition: opacity 0.7s, transform 0.3s cubic-bezier(.4, 2, .6, 1), filter 0.3s ease;
}

.carousel-img.active {
	opacity: 1;
	z-index: 1;
}

.carousel-img:hover {
	transform: scale(1.06);
	z-index: 2;
	filter: grayscale(50%) brightness(0.7);
}

.carousel-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	opacity: 0;
	transition: opacity 0.3s ease;
	z-index: 3;
	pointer-events: none;
}

.carousel:hover .carousel-overlay {
	opacity: 1;
}

.carousel-text {
	color: #fff;
	font-family: 'Laviossa', serif;
	font-size: 1.5rem;
	font-weight: bold;
	text-align: center;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
	letter-spacing: 1px;
}

.carousel-link-wrapper {
	text-decoration: none;
	color: inherit;
	display: block;
	width: 100%;
	height: 100%;
}

.carousel-link {
	text-decoration: none;
	color: inherit;
	display: block;
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}

.cta-separator {
	display: flex;
	align-items: center;
	width: 100vw;
	margin: 20px 0;
	/* réduit l'espace sous le bouton */
	position: relative;
	left: 50%;
	right: 50%;
	transform: translateX(-50%);
	padding: 0;
}

.cta-separator::before,
.cta-separator::after {
	content: "";
	flex: 1 1 0;
	border-bottom: 2px solid #475747;
	margin: 0;
	height: 0;
}

.cta-btn {
	background: #fff;
	color: #475747;
	border: 2px solid #475747;
	border-radius: 0;
	padding: 10px 26px;
	/* padding réduit */
	font-family: 'Outfit', Arial, sans-serif;
	font-size: 1.05rem;
	/* taille de police réduite */
	font-weight: bold;
	letter-spacing: 0.13em;
	text-transform: uppercase;
	box-shadow: none;
	cursor: pointer;
	display: inline-block;
	margin: 0;
	transition: color 0.2s, background 0.2s;
	text-decoration: none;
}

.cta-btn:hover {
	color: #fff;
	/* texte blanc au survol */
	background: #475747;
	/* fond vert au survol */
	text-decoration: none;
}

.avis-section {
	width: 100%;
	max-width: 1100px;
	margin: 0 auto;
	background: none;
	padding: 30px 0 60px 0;
	/* réduit le padding-top à 30px */
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}

.avis-title {
	font-family: 'Laviossa', serif;
	color: #475747;
	font-size: 2.3rem;
	margin-top: 0;
	/* plus de marge au-dessus */
	margin-bottom: 18px;
	/* espace réduit en dessous */
	text-align: center;
	width: 100%;
	display: block;
	font-weight: bold;
}

.avis-stars {
	color: #ffefd7;
	font-size: 2rem;
	letter-spacing: 0.2em;
	margin-bottom: 18px;
	text-align: center;
}

.avis-card {
	background: #475747;
	/* fond vert */
	border-radius: 25px;
	padding: 40px 40px 30px 40px;
	max-width: 700px;
	width: 90%;
	margin: 0 auto;
	box-shadow: 0 2px 16px rgba(0, 0, 0, 0.07);
	display: flex;
	flex-direction: column;
	align-items: center;
	text-align: center;
}

.avis-client {
	font-family: 'Outfit', Arial, sans-serif;
	color: #ffefd7;
	/* beige clair */
	font-size: 1.2rem;
	font-weight: bold;
	margin-bottom: 18px;
	text-align: center;
}

.avis-texte {
	color: #ffefd7;
	/* beige clair */
	font-size: 1.1rem;
	text-align: center;
	line-height: 1.6;
}

/* ====== Carte / Localisation ====== */
.map-section {
	max-width: 1100px;
	margin: 0 auto 40px auto;
	padding: 0 0 10px 0;
}

.map-title {
	font-family: 'Laviossa', serif;
	color: #475747;
	font-size: 2.3rem;
	text-align: center;
	margin: 0 0 18px 0;
	font-weight: bold;
}

.map-card {
	background: #475747;
	border-radius: 25px;
	padding: 18px;
	box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.map-iframe {
	width: 100%;
	height: 360px;
	border: 0;
	border-radius: 18px;
}

.map-info {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-top: 12px;
}

.map-address {
	color: #ffefd7;
	font-size: 1rem;
	margin: 0;
}

.map-btn {
	margin-left: 16px;
}

/* ====== Footer ====== */
.site-footer {
	background: #ffefd7;
	padding: 30px 0 30px 0;
}

.footer-inner {
	max-width: 1100px;
	margin: 0 auto;
	background: #475747;
	border-radius: 25px;
	padding: 30px 30px 40px 30px;
	color: #ffefd7;
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 30px;
}

.footer-left {
	display: flex;
	flex-direction: column;
	gap: 14px;
}

.footer-logo img {
	height: 80px;
	width: auto;
	filter: brightness(0) saturate(0%) invert(98%) sepia(3%) saturate(1352%) hue-rotate(314deg) brightness(102%) contrast(96%);
	-webkit-filter: brightness(0) saturate(0%) invert(98%) sepia(3%) saturate(1352%) hue-rotate(314deg) brightness(102%) contrast(96%);
}

.footer-address {
	font-style: normal;
	color: #ffefd7;
	font-family: 'Outfit', Arial, sans-serif;
}

.footer-contact {
	color: #ffefd7;
	font-family: 'Outfit', Arial, sans-serif;
}

.footer-contact a { color: #ffefd7; text-decoration: none; }
.footer-contact a:hover { text-decoration: underline; color: #ffefd7; }

.footer-hours {
	color: #ffefd7;
	font-family: 'Outfit', Arial, sans-serif;
}

.footer-hours strong {
	color: #ffefd7;
	font-weight: bold;
}

.footer-socials { display: flex; gap: 12px; }
.social-pill {
	background: #ffefd7;
	color: #475747;
	border-radius: 12px;
	padding: 8px 12px;
	text-decoration: none;
	font-weight: 600;
	font-family: 'Outfit', Arial, sans-serif;
}
.social-pill:hover { opacity: 0.9; }

.footer-reserve { margin-top: 6px; align-self: start; }

.footer-right { display: flex; flex-direction: column; }
.footer-title {
	font-family: 'Laviossa', serif;
	color: #ffefd7;
	margin: 0 0 6px 0;
	font-weight: bold;
}
.footer-subtitle { 
	margin: 0 0 16px 0; 
	font-family: 'Outfit', Arial, sans-serif;
	color: #ffefd7;
}

.footer-form { display: grid; grid-template-columns: 1fr; gap: 12px; }
.footer-input,
.footer-textarea {
	background: #ffefd7;
	color: #475747;
	border: 2px solid #475747;
	border-radius: 22px;
	padding: 12px 16px;
	font-family: 'Outfit', Arial, sans-serif;
}
.footer-textarea { border-radius: 18px; }
.footer-input::placeholder, .footer-textarea::placeholder { color: #475747; opacity: 0.7; }

.footer-submit {
	background: #ffefd7;
	color: #475747;
	border: none;
	border-radius: 22px;
	padding: 14px 30px;
	font-weight: bold;
	font-size: 1.17rem;
	box-shadow: 0 4px 16px rgba(255, 239, 215, 0.3);
	text-transform: uppercase;
	cursor: pointer;
	letter-spacing: 0.04em;
	transition: background 0.18s, box-shadow 0.18s;
	font-family: 'Outfit', Arial, sans-serif;
}
.footer-submit:hover {
	background: #f5e5c8;
	box-shadow: 0 6px 22px rgba(255, 239, 215, 0.4);
	color: #475747;
	opacity: 1;
}

input, textarea, button, select {
  font-family: 'Laviossa', Arial, sans-serif;
}

/* Footer légal */
.legal-footer {
	background: #475747;
	padding: 35px 20px;
	width: 100vw;
	margin-left: calc(-50vw + 50%);
	box-sizing: border-box;
}

.legal-footer-content {
	max-width: 1200px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	gap: 20px;
}

.legal-footer-logo img {
	height: 50px;
	width: auto;
	filter: brightness(0) saturate(0%) invert(98%) sepia(3%) saturate(1352%) hue-rotate(314deg) brightness(102%) contrast(96%);
	-webkit-filter: brightness(0) saturate(0%) invert(98%) sepia(3%) saturate(1352%) hue-rotate(314deg) brightness(102%) contrast(96%);
}

.legal-footer-links {
	display: flex;
	gap: 30px;
	flex-wrap: wrap;
	justify-content: center;
}

.legal-footer-links a {
	color: #ffefd7;
	text-decoration: none;
	font-family: 'Laviossa', serif;
	font-size: 0.95rem;
	transition: opacity 0.2s;
}

.legal-footer-links a:hover {
	opacity: 0.8;
	text-decoration: underline;
}

.legal-footer-credit {
	color: #ffefd7;
	font-family: 'Laviossa', serif;
	font-size: 0.85rem;
}

.wob-credit-link {
	display: flex;
	align-items: center;
	gap: 10px;
	color: #ffefd7;
	text-decoration: none;
	transition: opacity 0.2s;
}

.wob-credit-link:hover {
	opacity: 0.8;
}

.wob-logo {
	height: 24px;
	width: auto;
	filter: brightness(0) saturate(0%) invert(98%) sepia(3%) saturate(1352%) hue-rotate(314deg) brightness(102%) contrast(96%);
	-webkit-filter: brightness(0) saturate(0%) invert(98%) sepia(3%) saturate(1352%) hue-rotate(314deg) brightness(102%) contrast(96%);
}

@media (max-width: 900px) {
	.footer-inner { grid-template-columns: 1fr; }
	.legal-footer-content {
		flex-direction: column;
		text-align: center;
	}
	.legal-footer-links {
		flex-direction: column;
		gap: 15px;
	}
}

@media (max-width: 900px) {
	header {
		padding: 14px 1.5rem;
		border-radius: 0 0 18px 18px;
		flex-direction: column;
		align-items: center;
		gap: 12px;
	}
	
	.logo {
		margin-left: 0;
	}
	
	.logo-img {
		height: 52px;
		width: auto;
	}
	
	nav {
		width: 100%;
		justify-content: center;
		gap: 1.5rem;
		flex-wrap: wrap;
	}
	
	nav a {
		font-size: 1.05rem;
	}
}

/* Pages légales */
.legal-section {
	max-width: 900px;
	margin: 0 auto;
	padding: 40px 20px;
}

.legal-section h1 {
	font-family: 'Laviossa', serif;
	color: #475747;
	font-size: 2.5rem;
	margin-bottom: 30px;
	text-align: center;
}

.legal-content {
	background: #ffefd7;
	padding: 40px;
	border-radius: 20px;
	box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.legal-content h2 {
	font-family: 'Laviossa', serif;
	color: #475747;
	font-size: 1.5rem;
	margin-top: 30px;
	margin-bottom: 15px;
}

.legal-content h2:first-of-type {
	margin-top: 0;
}

.legal-content p {
	font-family: 'Outfit', Arial, sans-serif;
	color: #475747;
	line-height: 1.6;
	margin-bottom: 15px;
}

.legal-content ul {
	font-family: 'Outfit', Arial, sans-serif;
	color: #475747;
	line-height: 1.8;
	margin-left: 20px;
	margin-bottom: 15px;
}

.legal-content a {
	color: #475747;
	text-decoration: underline;
}

.legal-content a:hover {
	opacity: 0.8;
}

@media (max-width: 600px) {
	.legal-content {
		padding: 25px;
	}
	.legal-section h1 {
		font-size: 2rem;
	}
}