/* ==========================================================================
   Page d'accueil — Hero + CTA buttons
   ========================================================================== */

/* ------------------------------------------------------------------
   Fix GP : .site-content est display:flex — #primary prend ~62% width.
   Sur la homepage on passe en block pour que le hero soit pleine largeur.
   Fond bleu nuit sur tout le body pour éviter les bandes blanches.
   ------------------------------------------------------------------ */
.home .site-content {
	display: block !important;
}

body.home {
	background: var(--color-night);
}

/* ------------------------------------------------------------------
   Hero — plein écran, fond bleu nuit
   ------------------------------------------------------------------ */
.simsv-home {
	width: 100%;
	min-height: calc(100svh - 74px);
	display: flex;
	align-items: center;
	justify-content: center;
	background: var(--color-night);
	/* Lueur centrale subtile */
	background-image: radial-gradient(
		ellipse 80% 60% at 50% 40%,
		rgba(30, 144, 255, 0.08) 0%,
		transparent 70%
	);
}

/* Section hero */
.simsv-home-hero {
	width: 100%;
	padding: clamp(4rem, 8vw, 7rem) 1.25rem clamp(3rem, 6vw, 5rem);
}

.simsv-home-hero__inner {
	max-width: 820px;
	margin: 0 auto;
	text-align: center;
}

/* Label orange surtitré */
.simsv-home-hero__label {
	font-family: var(--font-title);
	font-size: 0.72rem;
	font-weight: 700;
	letter-spacing: 0.28em;
	text-transform: uppercase;
	color: var(--color-orange);
	margin: 0 0 1.25rem;
}

/* Titre principal */
.simsv-home-hero__title {
	font-family: var(--font-title);
	font-size: clamp(3rem, 9vw, 6rem);
	font-weight: 900;
	text-transform: uppercase;
	color: #fff;
	letter-spacing: 0.01em;
	line-height: 0.95;
	margin: 0 0 1.25rem;
}

/* Séparateur orange sous le titre */
.simsv-home-hero__title::after {
	content: '';
	display: block;
	width: 52px;
	height: 3px;
	background: var(--color-orange);
	border-radius: 2px;
	margin: 1rem auto 0;
}

/* Sous-titre localisation */
.simsv-home-hero__location {
	font-family: var(--font-body);
	font-size: 0.85rem;
	color: rgba(255, 255, 255, 0.4);
	letter-spacing: 0.18em;
	text-transform: uppercase;
	margin: 0 0 3.5rem;
}

/* ==========================================================================
   Boutons CTA — deux cartes côte à côte
   ========================================================================== */

.simsv-home-cta {
	display: flex;
	gap: 1rem;
	justify-content: center;
	flex-wrap: wrap;
}

.simsv-home-cta__btn {
	display: flex;
	align-items: center;
	gap: 1.1rem;
	border-radius: 14px;
	padding: 1.4rem 1.75rem;
	text-decoration: none;
	color: #fff;
	transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease;
	flex: 1;
	min-width: 270px;
	max-width: 360px;
	text-align: left;
	position: relative;
	overflow: hidden;
}

/* Planning → fond bleu */
.simsv-home-cta__btn--planning {
	background: var(--color-blue);
	box-shadow: 0 4px 24px rgba(30, 144, 255, 0.35);
}

/* Bon cadeau → fond orange */
.simsv-home-cta__btn--cadeau {
	background: var(--color-orange);
	box-shadow: 0 4px 24px rgba(255, 107, 43, 0.35);
}

/* Reflet interne */
.simsv-home-cta__btn::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 50%;
	background: rgba(255, 255, 255, 0.08);
	border-radius: 14px 14px 0 0;
	pointer-events: none;
}

.simsv-home-cta__btn:hover,
.simsv-home-cta__btn:focus-visible {
	transform: translateY(-4px);
	filter: brightness(1.1);
	color: #fff;
	text-decoration: none;
	outline: none;
}

.simsv-home-cta__btn--planning:hover {
	box-shadow: 0 8px 32px rgba(30, 144, 255, 0.5);
}

.simsv-home-cta__btn--cadeau:hover {
	box-shadow: 0 8px 32px rgba(255, 107, 43, 0.5);
}

/* Pictogramme SVG */
.simsv-home-cta__picto {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.18);
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

/* Texte */
.simsv-home-cta__text {
	display: flex;
	flex-direction: column;
	flex: 1;
	position: relative;
	z-index: 1;
}

.simsv-home-cta__text strong {
	display: block;
	font-family: var(--font-title);
	font-size: 1.25rem;
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 0.04em;
	line-height: 1.1;
	color: #fff;
}

.simsv-home-cta__text em {
	display: block;
	font-style: normal;
	font-family: var(--font-body);
	font-size: 0.78rem;
	color: rgba(255, 255, 255, 0.75);
	margin-top: 0.25rem;
}

/* Flèche */
.simsv-home-cta__arrow {
	font-size: 1.2rem;
	color: rgba(255, 255, 255, 0.6);
	transition: transform 0.25s ease;
	flex-shrink: 0;
	position: relative;
	z-index: 1;
}

.simsv-home-cta__btn:hover .simsv-home-cta__arrow {
	transform: translateX(5px);
	color: #fff;
}

/* ==========================================================================
   Responsive
   ========================================================================== */

@media (min-width: 768px) {
	.simsv-home-hero {
		padding-left: 2rem;
		padding-right: 2rem;
	}

	.simsv-home-cta__btn {
		min-width: 300px;
	}
}

@media (max-width: 480px) {
	.simsv-home-cta {
		flex-direction: column;
		align-items: stretch;
	}

	.simsv-home-cta__btn {
		max-width: 100%;
		min-width: 0;
	}
}
