/* ============================================================
   LANDING PAGE - LA PARENTHÈSE
   Feuille de style dédiée (légère, indépendante du CSS du site
   principal pour garantir un temps de chargement rapide = bon
   pour le SEO).
   ============================================================ */

:root {
	--color-primary-start: #f3555f;
	--color-primary-end: #f13275;
	--color-text: #333333;
	--color-text-light: #555555;
	--color-bg: #ffffff;
	--color-bg-alt: #f9f9f9;
	--color-border: #eeeeee;
	--font-main: 'Open Sans', Arial, sans-serif;
	--font-title: 'Roboto', Arial, sans-serif;
	--max-width: 1100px;
	--radius: 10px;
}

* {
	box-sizing: border-box;
}

body {
	margin: 0;
	font-family: var(--font-main);
	color: var(--color-text);
	background: var(--color-bg);
	line-height: 1.6;
}

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

.container {
	max-width: var(--max-width);
	margin: 0 auto;
	padding: 0 20px;
}

/* ---------- HEADER MINIMAL ---------- */
/* Volontairement sans menu de navigation : une landing page ne doit
   proposer qu'un seul chemin, celui vers le CTA de réservation. */
.lp-header {
	text-align: center;
	padding: 20px 15px;
}

.lp-header img.logo {
	max-height: 60px;
	margin: 0 auto 10px auto;
}

.lp-header .lp-tagline {
	font-size: 14px;
	color: var(--color-text-light);
	letter-spacing: 1px;
	text-transform: uppercase;
}

/* ---------- HERO ---------- */
.lp-hero {
	position: relative;
	background-size: cover;
	background-position: center;
	color: #ffffff;
	text-align: center;
	padding: 90px 20px;
}

.lp-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(180deg, rgba(0,0,0,0.35) 0%, rgba(0,0,0,0.55) 100%);
}

.lp-hero-content {
	position: relative;
	z-index: 1;
	max-width: 800px;
	margin: 0 auto;
}

.lp-hero h1 {
	font-family: var(--font-title);
	font-size: 2.4em;
	margin: 0 0 15px 0;
	text-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

.lp-hero p.subtitle {
	font-size: 1.2em;
	margin: 0 0 30px 0;
	text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ---------- BOUTON CTA (repris du style du site principal) ---------- */
.btn-cta {
	display: inline-block;
	background: linear-gradient(135deg, var(--color-primary-start) 0%, var(--color-primary-end) 100%);
	color: #ffffff;
	padding: 16px 38px;
	border: none;
	border-radius: 8px;
	cursor: pointer;
	font-size: 18px;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.3s ease;
	box-shadow: 0 4px 10px rgba(243, 85, 95, 0.4);
}

.btn-cta:hover {
	background: linear-gradient(135deg, var(--color-primary-end) 0%, #d11860 100%);
	transform: translateY(-2px);
	box-shadow: 0 6px 15px rgba(243, 85, 95, 0.5);
	color: #ffffff;
}

.btn-cta.small {
	padding: 10px 24px;
	font-size: 15px;
}

/* ---------- SECTION USP (arguments clés) ---------- */
.lp-usp {
	padding: 60px 20px;
	background: var(--color-bg-alt);
}

.lp-usp h2, .lp-section h2 {
	font-family: var(--font-title);
	text-align: center;
	font-size: 1.8em;
	color: var(--color-text);
	margin-bottom: 40px;
}

.lp-usp-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
	gap: 30px;
	max-width: var(--max-width);
	margin: 0 auto;
}

.lp-usp-item {
	text-align: center;
	padding: 20px;
}

.lp-usp-item .icon {
	font-size: 2.5em;
	display: block;
	margin-bottom: 12px;
}

.lp-usp-item h3 {
	font-family: var(--font-title);
	font-size: 1.1em;
	margin: 0 0 8px 0;
}

.lp-usp-item p {
	color: var(--color-text-light);
	font-size: 0.95em;
	margin: 0;
}

/* ---------- GALERIE PHOTOS ---------- */
.lp-gallery {
	padding: 60px 20px;
}

.lp-gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
	gap: 15px;
	max-width: var(--max-width);
	margin: 0 auto;
}

.lp-gallery-grid img {
	border-radius: var(--radius);
	aspect-ratio: 4 / 3;
	object-fit: cover;
	width: 100%;
}

/* Vignettes cliquables (ouverture en grand) */
.lp-gallery-btn {
	display: block;
	padding: 0;
	border: none;
	background: none;
	cursor: zoom-in;
	width: 100%;
	border-radius: var(--radius);
	overflow: hidden;
	position: relative;
}

.lp-gallery-btn:focus-visible {
	outline: 3px solid var(--color-primary-end);
	outline-offset: 2px;
}

/* Petite icône loupe au survol (desktop) pour indiquer que c'est cliquable */
.lp-gallery-btn::after {
	content: "🔍";
	position: absolute;
	bottom: 10px;
	right: 10px;
	background: rgba(0,0,0,0.55);
	color: #fff;
	width: 34px;
	height: 34px;
	border-radius: 50%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 14px;
	opacity: 0;
	transition: opacity 0.2s ease;
}

.lp-gallery-btn:hover::after,
.lp-gallery-btn:focus-visible::after {
	opacity: 1;
}

/* Sur tactile (mobile/tablette), on affiche l'icône en permanence :
   il n'y a pas de "hover", il faut que ce soit visible sans interaction */
@media (hover: none) {
	.lp-gallery-btn::after {
		opacity: 1;
	}
}

.lp-gallery-btn img {
	transition: transform 0.3s ease;
}

.lp-gallery-btn:hover img {
	transform: scale(1.04);
}

/* ---------- LIGHTBOX (photo en grand) ---------- */
.lp-lightbox {
	position: fixed;
	inset: 0;
	background: rgba(0, 0, 0, 0.9);
	display: flex;
	align-items: center;
	justify-content: center;
	z-index: 1000;
	padding: 20px;
	/* padding-top/bottom tiennent compte des encoches sur mobile */
	padding-top: max(20px, env(safe-area-inset-top));
	padding-bottom: max(20px, env(safe-area-inset-bottom));
}

.lp-lightbox[hidden] {
	display: none;
}

.lp-lightbox img {
	max-width: 100%;
	max-height: 100%;
	width: auto;
	height: auto;
	border-radius: 6px;
	box-shadow: 0 10px 40px rgba(0,0,0,0.5);
}

.lp-lightbox-close {
	position: absolute;
	top: max(15px, env(safe-area-inset-top));
	right: 15px;
	background: rgba(255,255,255,0.15);
	color: #ffffff;
	border: none;
	width: 44px;
	height: 44px;
	border-radius: 50%;
	font-size: 28px;
	line-height: 1;
	cursor: pointer;
	display: flex;
	align-items: center;
	justify-content: center;
	transition: background 0.2s ease;
}

.lp-lightbox-close:hover,
.lp-lightbox-close:focus-visible {
	background: rgba(255,255,255,0.3);
}

/* Zone de tap plus généreuse sur mobile pour fermer facilement */
@media (max-width: 600px) {
	.lp-lightbox-close {
		width: 48px;
		height: 48px;
		font-size: 30px;
	}
}

/* ---------- MENTION DERNIÈRE MISE À JOUR (footer) ---------- */
.lp-updated {
	color: #999999;
	font-size: 0.8em;
	margin-top: 8px;
}

/* ---------- CTA CENTRAL (répété dans la page) ---------- */
.lp-cta-block {
	text-align: center;
	padding: 60px 20px;
	background: linear-gradient(135deg, #fff5f6 0%, #ffeef2 100%);
}

.lp-cta-block h2 {
	font-family: var(--font-title);
	font-size: 1.6em;
	margin-bottom: 10px;
}

.lp-cta-block p {
	color: var(--color-text-light);
	margin-bottom: 25px;
}

/* ---------- FAQ (bon pour le SEO / featured snippets) ---------- */
.lp-faq {
	padding: 60px 20px;
	max-width: 800px;
	margin: 0 auto;
}

.lp-faq-item {
	border-bottom: 1px solid var(--color-border);
	padding: 18px 0;
}

.lp-faq-item h3 {
	font-family: var(--font-title);
	font-size: 1.05em;
	margin: 0 0 8px 0;
	color: var(--color-text);
}

.lp-faq-item p {
	margin: 0;
	color: var(--color-text-light);
}

/* ---------- FOOTER MINIMAL ---------- */
.lp-footer {
	text-align: center;
	padding: 30px 15px;
	background: #2c2c2c;
	color: #cccccc;
	font-size: 0.85em;
}

.lp-footer a {
	color: #ffffff;
	text-decoration: underline;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 600px) {
	.lp-hero {
		padding: 60px 15px;
	}
	.lp-hero h1 {
		font-size: 1.7em;
	}
	.lp-usp, .lp-gallery, .lp-cta-block, .lp-faq {
		padding: 40px 15px;
	}
}
