/* =====================================================================
   PAGE RÉALISATION — Valiseofilms Child Theme
   v1.0.7
   Sobre et épuré : le film est le centre, pas le design.
===================================================================== */

/* ── Bouton retour ── */
.vs-real__back {
	background: #fff;
	padding: 24px 32px 0;
	max-width: 1200px;
	margin: 0 auto;
}

.vs-real__back-link {
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-family: 'Lato', sans-serif;
	font-size: 0.85rem;
	color: #888;
	text-decoration: none;
	transition: color 0.2s ease;
}

.vs-real__back-link:hover {
	color: #fb8500;
}

.vs-real__back-link svg {
	flex-shrink: 0;
	transition: transform 0.2s ease;
}

.vs-real__back-link:hover svg {
	transform: translateX(-3px);
}

/* ═══════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════ */

.vs-real__hero {
	background: #ffffff;
	padding: 32px 0 40px;
}

.vs-real__hero-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
	display: grid;
	grid-template-columns: 40% 60%;
	gap: 56px;
	align-items: stretch;
}

/* ── Colonne gauche ── */

.vs-real__categorie {
	display: inline-block;
	font-family: 'Oswald', sans-serif;
	font-size: 0.72rem;
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.14em;
	color: #fb8500;
	margin-bottom: 16px;
}

.vs-real__h1 {
	font-family: 'Oswald', sans-serif;
	font-size: clamp(1.8rem, 3.5vw, 2.8rem);
	line-height: 1.1;
	color: #1a1a1a;
	margin: 0 0 28px;
	display: flex;
	flex-direction: column;
	gap: 6px;
}

.vs-real__h1-client {
	font-weight: 700;
	font-size: 1em;
	color: #1a1a1a;
}

.vs-real__h1-titre {
	font-weight: 500;
	font-size: 0.72em;
	color: #555;
	line-height: 1.3;
}

.vs-real__texte {
	font-family: 'Lato', sans-serif;
	font-size: 1rem;
	line-height: 1.75;
	color: #1a1a1a;
	margin-bottom: 28px;
}

.vs-real__texte p {
	margin: 0 0 1em;
	text-align: left !important;
}

.vs-real__texte p:last-child {
	margin-bottom: 0;
}

/* Tags */
.vs-real__tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px;
}

.vs-real__tag {
	font-family: 'Lato', sans-serif;
	font-size: 0.75rem;
	color: #555;
	background: #f0f0f0;
	border-radius: 20px;
	padding: 5px 14px;
	white-space: nowrap;
	border: 1px solid #e5e5e5;
}

/* ── Colonne droite ── */

.vs-real__hero-right {
	display: flex;
	flex-direction: column;
	justify-content: center;
	gap: 20px;
}

.vs-real__logo-wrap {
	display: flex;
	justify-content: flex-end;
}

.vs-real__logo {
	max-height: 60px;
	width: auto;
	max-width: 200px;
	object-fit: contain;
}

/* Player Vimeo — ratio 16/9 */
.vs-real__player-wrap {
	width: 100%;
}

.vs-real__player-ratio {
	position: relative;
	padding-top: 56.25%;
	background: #0d0d0d;
	border-radius: 8px;
	overflow: hidden;
	box-shadow: 0 8px 32px rgba(0, 0, 0, 0.16);
}

.vs-real__player-ratio iframe {
	position: absolute;
	inset: 0;
	width: 100%;
	height: 100%;
	border: none;
}

/* ═══════════════════════════════════════════════════════════
   CAPTURES / FILMS SUPPLÉMENTAIRES
═══════════════════════════════════════════════════════════ */

.vs-real__captures {
	background: #0d0d0d; /* fond noir → les bandes noires des captures se fondent */
	padding: 40px 0;     /* égal haut et bas */
	border-radius: 20px 20px 0 0; /* coins arrondis uniquement en haut */
}

.vs-real__captures-inner {
	max-width: 1200px;
	margin: 0 auto;
	padding: 0 32px;
}

/* Grille 3 images */
.vs-real__images-grid {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}

.vs-real__image-wrap {
	border-radius: 4px;
	overflow: hidden;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5); /* ombre sur fond sombre */
	aspect-ratio: 16 / 9;
}

.vs-real__image {
	width: 100%;
	height: 100%;
	object-fit: contain;
	background: #000;
	display: block;
	transition: transform 0.4s ease;
}

.vs-real__image-wrap:hover .vs-real__image {
	transform: scale(1.04);
}

/* Grille players supplémentaires — colonnes adaptatives */
.vs-real__players-grid {
	display: grid;
	gap: 24px;
}

/* 1 vidéo → pleine largeur */
.vs-real__players-grid--cols-1 {
	grid-template-columns: 1fr;
}

/* 2 vidéos → 2 colonnes */
.vs-real__players-grid--cols-2 {
	grid-template-columns: repeat(2, 1fr);
}

/* 3 vidéos, 5+, 7+ → 3 colonnes */
.vs-real__players-grid--cols-3 {
	grid-template-columns: repeat(3, 1fr);
}

/* ═══════════════════════════════════════════════════════════
   CTA FINAL
═══════════════════════════════════════════════════════════ */

.vs-real__cta {
	background: #f9f9f9; /* gris clair — alterne avec le fond noir des captures */
	padding: 100px 0;
	text-align: center;
}

.vs-real__cta-inner {
	max-width: 560px;
	margin: 0 auto;
	padding: 0 32px;
}

.vs-real__cta-titre {
	font-family: 'Oswald', sans-serif;
	font-size: clamp(1.8rem, 3vw, 2.4rem);
	font-weight: 600;
	color: #1a1a1a; /* texte sombre sur fond clair */
	margin: 0 0 16px;
}

.vs-real__cta-texte {
	font-family: 'Lato', sans-serif;
	font-size: 1rem;
	color: #666;
	margin: 0 0 36px;
}

.vs-real__cta-btn {
	display: inline-block;
	background: #fb8500;
	color: #0d0d0d;
	font-family: 'Oswald', sans-serif;
	font-weight: 500;
	font-size: 1rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	padding: 14px 36px;
	border-radius: 8px;
	text-decoration: none;
	transition: background 0.2s ease, transform 0.2s ease;
}

.vs-real__cta-btn:hover {
	background: #e07600;
	transform: translateY(-2px);
	color: #0d0d0d;
	text-decoration: none;
}

/* ═══════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════ */

@media (max-width: 900px) {
	.vs-real__hero-inner {
		grid-template-columns: 1fr;
		gap: 32px;
	}

	.vs-real__logo-wrap {
		justify-content: flex-start;
	}

	.vs-real__images-grid {
		grid-template-columns: 1fr;
		gap: 16px;
	}

	.vs-real__players-grid--cols-1,
	.vs-real__players-grid--cols-2,
	.vs-real__players-grid--cols-3 {
		grid-template-columns: 1fr;
		gap: 20px;
	}
}

@media (max-width: 580px) {
	.vs-real__back,
	.vs-real__hero-inner,
	.vs-real__captures-inner,
	.vs-real__cta-inner {
		padding-left: 20px;
		padding-right: 20px;
	}

	.vs-real__hero {
		padding: 20px 0 48px;
	}

	.vs-real__captures {
		padding: 48px 0;
	}

	.vs-real__cta {
		padding: 64px 0;
	}
}
