/* ============================================
   LP AGENCE VIDÉO B2B — Variante B
   Angle Polyvalence — Style design system coloré modulaire
   Build: 2026-06-01-v3
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

:root {
  --blue: #3b82f6;
  --pink: #ec4899;
  --green: #10b981;
  --orange: #f97316;
  --purple: #8b5cf6;
  --yellow: #facc15;
  --ink: #0f172a;
  --ink-soft: #1e293b;
  --gray-900: #0f172a;
  --gray-700: #334155;
  --gray-500: #64748b;
  --gray-300: #cbd5e1;
  --gray-100: #f1f5f9;
  --gray-50: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 400;
  line-height: 1.65;
  color: var(--gray-700);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TYPO ===== */
h1, h2, h3, h4 {
  font-family: 'Space Grotesk', -apple-system, sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: clamp(1.1rem, 1.8vw, 1.3rem); font-weight: 700; }

.hl-blue { color: var(--blue); }
.hl-pink { color: var(--pink); }
.hl-green { color: var(--green); }
.hl-orange { color: var(--orange); }

.under-blue {
  background: linear-gradient(transparent 65%, rgba(59, 130, 246, 0.3) 65%);
  padding: 0 4px;
}

.under-pink {
  background: linear-gradient(transparent 65%, rgba(236, 72, 153, 0.3) 65%);
  padding: 0 4px;
}

.section-tag {
  display: inline-block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink);
  background: var(--gray-100);
  padding: 8px 16px;
  border-radius: 100px;
  margin-bottom: 20px;
}

.tag-light {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

.section-title { margin-bottom: 18px; }

.section-sub {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  color: var(--gray-500);
  max-width: 760px;
  line-height: 1.65;
}

.sub-light { color: var(--gray-300); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0;
  cursor: pointer;
  border: none;
  font-family: 'Space Grotesk', sans-serif;
  transition: all 0.2s ease;
  text-align: center;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 6px 20px rgba(15, 23, 42, 0.2);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 2px solid var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: var(--white);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.05rem;
  width: 100%;
}

/* ===== HEADER ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo { display: inline-flex; align-items: center; }
.logo-img { height: 38px; width: auto; display: block; filter: brightness(0); }
.logo-img-footer { height: 32px; width: auto; display: block; filter: brightness(0) invert(1); }

.header-contact {
  display: flex;
  gap: 24px;
  align-items: center;
}

.header-phone {
  font-size: 0.82rem;
  color: var(--gray-500);
  letter-spacing: 0.04em;
  font-weight: 500;
}

.header-phone strong {
  color: var(--ink);
  font-weight: 700;
  margin-left: 4px;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  padding: 140px 0 90px;
  background:
    radial-gradient(circle at 20% 30%, rgba(59, 130, 246, 0.06), transparent 50%),
    radial-gradient(circle at 80% 70%, rgba(236, 72, 153, 0.06), transparent 50%),
    var(--white);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px 8px 12px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 28px;
  box-shadow: 0 4px 12px rgba(15, 23, 42, 0.05);
}

.tag-dot {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.tag-blue { background: var(--blue); }
.tag-pink { background: var(--pink); }
.tag-green { background: var(--green); }
.tag-orange { background: var(--orange); }

.hero-tag span:last-child {
  margin-left: 8px;
}

.hero-title {
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1.05rem, 1.5vw, 1.2rem);
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.6;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* HERO MOSAIC — grille colorée 6 tuiles */
.hero-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  gap: 12px;
  aspect-ratio: 1;
  max-width: 480px;
  margin-left: auto;
}

.mosaic-tile {
  border-radius: 16px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 18px;
  position: relative;
  overflow: hidden;
}

.tile-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
  z-index: 2;
  position: relative;
}

.tile-1 { background: linear-gradient(135deg, var(--blue), #1e40af); grid-column: span 2; }
.tile-2 { background: linear-gradient(135deg, var(--pink), #be185d); }
.tile-3 { background: linear-gradient(135deg, var(--green), #047857); }
.tile-4 { background: linear-gradient(135deg, var(--orange), #c2410c); }
.tile-5 { background: linear-gradient(135deg, var(--purple), #6d28d9); }
.tile-6 { background: linear-gradient(135deg, var(--yellow), #ca8a04); }

.tile-6 .tile-label { color: var(--ink); }

/* ===== SECTIONS ===== */
.section {
  padding: 100px 0;
  position: relative;
}

.section-light {
  background: var(--gray-50);
}

.section-dark {
  background: var(--ink);
  color: var(--gray-300);
}

.section-dark h1,
.section-dark h2,
.section-dark h3 {
  color: var(--white);
}

.section-head {
  text-align: center;
  margin-bottom: 60px;
}

.section-head .section-sub {
  margin: 0 auto;
}

/* ===== BENEFITS ===== */
.benefits {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefit {
  padding: 32px 28px;
  background: var(--white);
  border-radius: 20px;
  border: 1px solid var(--border);
  transition: all 0.3s ease;
}

.benefit:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.08);
}

.benefit-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 20px;
}

.icon-blue { background: rgba(59, 130, 246, 0.1); }
.icon-pink { background: rgba(236, 72, 153, 0.1); }
.icon-green { background: rgba(16, 185, 129, 0.1); }
.icon-orange { background: rgba(249, 115, 22, 0.1); }

.benefit h3 {
  margin-bottom: 12px;
  font-size: 1.1rem;
}

.benefit p {
  color: var(--gray-500);
  font-size: 0.92rem;
  line-height: 1.6;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  padding: 36px 28px;
  border-radius: 24px;
  border: 1px solid var(--border);
  background: var(--white);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
}

.card-corporate::before { background: var(--blue); }
.card-produit::before { background: var(--pink); }
.card-rh::before { background: var(--green); }
.card-event::before { background: var(--orange); }
.card-pub::before { background: var(--purple); }
.card-ia::before { background: var(--yellow); }

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(15, 23, 42, 0.1);
}

.service-num {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--gray-500);
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.15rem;
}

.service-card p {
  color: var(--gray-500);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 20px;
}

.service-cta {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
  transition: all 0.2s ease;
}

.service-card:hover .service-cta {
  transform: translateX(4px);
}

.card-corporate:hover .service-cta { color: var(--blue); }
.card-produit:hover .service-cta { color: var(--pink); }
.card-rh:hover .service-cta { color: var(--green); }
.card-event:hover .service-cta { color: var(--orange); }
.card-pub:hover .service-cta { color: var(--purple); }

/* ===== SHOWREEL ===== */
.showreel-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.showreel-large { grid-row: span 2; }

.showreel-item {
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 1;
  position: relative;
}

.showreel-large.showreel-item { aspect-ratio: auto; }

.showreel-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 28px;
}

.bg-corporate { background: linear-gradient(135deg, var(--blue), #1e40af); }
.bg-produit { background: linear-gradient(135deg, var(--pink), #be185d); }
.bg-rh { background: linear-gradient(135deg, var(--green), #047857); }

.showreel-tag {
  display: inline-block;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
  border-radius: 100px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 12px;
  backdrop-filter: blur(10px);
}

.showreel-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 6px;
}

.showreel-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
}

.showreel-link { text-align: center; }

.link-arrow {
  display: inline-block;
  color: var(--white);
  font-family: 'Space Grotesk', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 14px 28px;
  border: 2px solid var(--white);
  border-radius: 100px;
  transition: all 0.2s ease;
}

.link-arrow:hover {
  background: var(--white);
  color: var(--ink);
}

/* ===== CONTACT ===== */
.section-contact {
  background: var(--gray-50);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
}

.contact-intro p {
  color: var(--gray-500);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 36px;
}

.contact-phones {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-phones a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  transition: all 0.3s ease;
}

.contact-phones a:hover {
  border-color: var(--blue);
  transform: translateY(-2px);
}

.contact-phones span {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.74rem;
  color: var(--blue);
  font-weight: 700;
  letter-spacing: 0.1em;
}

.contact-phones strong {
  font-size: 1.2rem;
  color: var(--ink);
  font-weight: 700;
}

/* FORM */
.contact-form {
  background: var(--white);
  padding: 40px;
  border-radius: 24px;
  border: 1px solid var(--border);
  box-shadow: 0 20px 40px rgba(15, 23, 42, 0.04);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--gray-50);
  border: 1px solid var(--border);
  border-radius: 10px;
  color: var(--ink);
  font-family: 'Inter', sans-serif;
  font-size: 0.98rem;
  transition: all 0.2s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-consent {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 24px;
}

.form-consent input[type="checkbox"] {
  width: auto;
  margin-top: 4px;
  accent-color: var(--blue);
  cursor: pointer;
}

.form-consent label {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
  cursor: pointer;
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-weight: 400;
}

.form-success,
.form-error {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 0.92rem;
  font-weight: 500;
}

.form-success {
  background: rgba(16, 185, 129, 0.1);
  color: var(--green);
  border: 1px solid rgba(16, 185, 129, 0.3);
}

.form-error {
  background: rgba(249, 115, 22, 0.1);
  color: var(--orange);
  border: 1px solid rgba(249, 115, 22, 0.3);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--ink);
  color: var(--gray-300);
  padding: 40px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-brand { display: inline-flex; align-items: center; }

.footer-text p {
  font-size: 0.85rem;
  color: var(--gray-300);
  line-height: 1.5;
}

.footer-text strong { color: var(--white); }

.footer-links a {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 0.85rem;
  color: var(--blue);
  font-weight: 600;
}

.footer-links a:hover { color: var(--pink); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 50px; }
  .hero-mosaic { max-width: 460px; margin: 0 auto; }
  .benefits { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .showreel-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .showreel-large { grid-row: auto; grid-column: span 2; aspect-ratio: 16/9; }
  .header-contact { display: none; }
}

@media (max-width: 768px) {
  .section { padding: 70px 0; }
  .hero { padding: 110px 0 70px; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .benefits { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 28px 22px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .showreel-grid { grid-template-columns: 1fr; }
  .showreel-item.showreel-large { grid-column: auto; aspect-ratio: 16/9; }
  .logo-img { height: 30px; }
  .hero-mosaic { gap: 8px; }
  .tile-label { font-size: 0.85rem; }
  .tile-1 { grid-column: span 1; }
}

/* ===== BLOC VIDÉO 16/9 (séparateur hero / section suivante) ===== */
.section-video {
  padding: 70px 0;
  background: var(--white);
  position: relative;
  z-index: 1;
}

.video-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 12 / 5;
  background: var(--ink);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(15, 23, 42, 0.15);
  transition: all 0.4s ease;
}

.video-wrapper:hover {
  transform: translateY(-4px);
  box-shadow: 0 40px 100px rgba(59, 130, 246, 0.2);
}

.video-wrapper video,
.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--blue) 0%, var(--pink) 100%);
  gap: 14px;
}

.play-button {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 12px;
  padding-left: 6px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.video-wrapper:hover .play-button {
  background: var(--white);
  color: var(--ink);
  transform: scale(1.1);
}

.video-label {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.01em;
}

.video-hint {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

@media (max-width: 768px) {
  .section-video { padding: 40px 0; }
  .play-button { width: 70px; height: 70px; font-size: 1.4rem; }
  .video-label { font-size: 1rem; }
}

/* ===== IMAGES EN BACKGROUND DES CARTES SHOWREEL ===== */
.showreel-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  transition: transform 0.5s ease;
}

.showreel-item:hover .showreel-bg-img {
  transform: scale(1.04);
}

.showreel-placeholder {
  background: var(--ink) !important;
}

.showreel-placeholder > .showreel-tag,
.showreel-placeholder > .showreel-label,
.showreel-placeholder > .showreel-hint {
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
}

/* ===== IMAGES DANS LES TUILES DE LA MOSAÏQUE HERO ===== */
.mosaic-tile {
  position: relative;
  overflow: hidden;
}

.tile-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  display: block;
  transition: transform 0.5s ease;
}

.mosaic-tile:hover .tile-img {
  transform: scale(1.05);
}

.mosaic-tile .tile-label {
  position: relative;
  z-index: 2;
  color: var(--white) !important;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

/* ===== LITE YOUTUBE EMBED + LIGHTBOX ===== */
.video-thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: none;
  background: #000;
  cursor: pointer;
  padding: 0;
  overflow: hidden;
  border-radius: 16px;
  display: block;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.video-thumb:hover img {
  transform: scale(1.03);
  filter: brightness(0.85);
}

.video-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: rgba(244, 54, 171, 0.95);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.4);
  transition: transform 0.25s ease;
}

.video-thumb:hover .play-btn {
  transform: translate(-50%, -50%) scale(1.1);
}

.video-thumb .play-btn svg {
  margin-left: 4px;
}

.video-thumb:focus-visible {
  outline: 3px solid #f436ab;
  outline-offset: 4px;
}

/* Lightbox */
.yt-lightbox[hidden] {
  display: none !important;
}

.yt-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.yt-lightbox-inner {
  width: 100%;
  max-width: 1400px;
  aspect-ratio: 16 / 9;
  background: #000;
  position: relative;
}

/* Adaptation vidéo verticale 9:16 */
.yt-lightbox-inner.is-vertical {
  aspect-ratio: 9 / 16;
  max-width: calc(90vh * 9 / 16);
  max-height: 90vh;
}

.yt-lightbox-inner iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.yt-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  border: none;
  font-size: 32px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: background 0.25s ease;
}

.yt-close:hover {
  background: rgba(244, 54, 171, 0.95);
}

/* ===== BOUTON PLAY OVERLAY SUR CARTES SHOWREEL ===== */
.showreel-item[data-yt-id] {
  cursor: pointer;
}

.showreel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: rgba(244, 54, 171, 0.95);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  pointer-events: none;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.25s ease, background 0.25s ease;
}

.showreel-item.showreel-large .showreel-play {
  width: 80px;
  height: 80px;
}

.showreel-play svg {
  margin-left: 3px;
}

.showreel-item[data-yt-id]:hover .showreel-play {
  transform: translate(-50%, -50%) scale(1.1);
}

.showreel-item[data-yt-id]:focus-visible {
  outline: 3px solid #f436ab;
  outline-offset: 4px;
}


/* ===== VARIANTES FORMAT VIDÉO ===== */
/* Variante ultra-wide 12:5 (1920×800) pour le showreel principal */
.video-thumb-ultrawide {
  aspect-ratio: 12 / 5;
}

/* Lightbox variante ultra-wide */
.yt-lightbox-inner.is-ultrawide {
  aspect-ratio: 12 / 5;
  max-width: 1600px;
}
