/* ================================================
   VIDÉO — L'Affranchi Vidéo
   Aesthetic : salle de cinéma · festival · obscurité veloutée
   ================================================ */

:root {
  --noir:   #0c0c0c;
  --noir2:  #141414;
  --noir3:  #1c1c1c;
  --jaune:  #ffe600;
  --blanc:  #ffffff;
  --texte:  rgba(255,255,255,0.42);
  --sep:    rgba(255,255,255,0.06);
}

/* ===== HERO ===== */
.pv-hero {
  background: var(--noir);
  padding: 110px 60px 90px;
  text-align: center;
  position: relative;
  border-bottom: 1px solid var(--sep);
  overflow: hidden;
}

/* Halo jaune très doux en fond */
.pv-hero::after {
  content: '';
  position: absolute;
  top: -40%; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 400px;
  background: radial-gradient(ellipse, rgba(255,230,0,0.06) 0%, transparent 70%);
  pointer-events: none;
}

.pv-hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.pv-hero-title {
  font-size: 160px;
  font-weight: 900;
  line-height: 0.85;
  text-transform: uppercase;
  color: var(--blanc);
  letter-spacing: -10px;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.pv-hero-sub {
  font-size: 11px;
  font-weight: 400;
  color: var(--texte);
  letter-spacing: 6px;
  text-transform: uppercase;
  position: relative;
  z-index: 1;
}

/* ===== SHOWREEL ===== */
.pv-featured {
  background: var(--noir);
  padding: 70px 60px 70px;
  border-bottom: 1px solid var(--sep);
}

.pv-featured-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--jaune);
  margin-bottom: 24px;
  text-align: center;
}

.pv-featured-player {
  position: relative;
  width: 100%;
  max-width: 1100px;
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #000;
  border-radius: 6px;
  /* Double ombre — profondeur cinéma */
  box-shadow:
    0 0 0 1px rgba(255,255,255,0.06),
    0 4px 6px rgba(0,0,0,0.4),
    0 50px 100px rgba(0,0,0,0.8);
}

.pv-featured-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== SECTIONS ===== */
.pv-section-shorts {
  background: var(--noir2);
  padding: 60px 60px 72px;
  border-bottom: 1px solid var(--sep);
}

.pv-section-land {
  background: var(--noir);
  padding: 60px 60px 80px;
  border-bottom: 1px solid var(--sep);
}

/* ===== GRILLE SHORTS ===== */
.pv-shorts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1300px;
  margin: 0 auto;
}

.pv-short {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 6px;
  border: 1px solid var(--sep);
  transition:
    transform 0.45s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

/* Trait jaune en bas qui glisse au hover */
.pv-short::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--jaune);
  transition: width 0.45s cubic-bezier(0.16,1,0.3,1);
  z-index: 10;
}

.pv-short:hover {
  transform: translateY(-6px) scale(1.01);
  box-shadow:
    0 0 0 1px rgba(255,230,0,0.15),
    0 24px 60px rgba(0,0,0,0.7);
  border-color: rgba(255,230,0,0.12);
}

.pv-short:hover::after { width: 100%; }

.pv-short-player {
  position: relative;
  width: 100%;
  aspect-ratio: 9 / 16;
  background: #000;
}

.pv-short-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== GRILLE LANDSCAPE ===== */
.pv-land-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto;
}

.pv-land {
  position: relative;
  overflow: hidden;
  background: #000;
  border-radius: 6px;
  border: 1px solid var(--sep);
  transition:
    transform 0.45s cubic-bezier(0.16,1,0.3,1),
    box-shadow 0.4s ease,
    border-color 0.3s ease;
}

.pv-land::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--jaune);
  transition: width 0.5s cubic-bezier(0.16,1,0.3,1);
  z-index: 10;
}

.pv-land:hover {
  transform: translateY(-5px);
  box-shadow:
    0 0 0 1px rgba(255,230,0,0.15),
    0 30px 70px rgba(0,0,0,0.7);
  border-color: rgba(255,230,0,0.12);
}

.pv-land:hover::after { width: 100%; }

.pv-land-player {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #000;
}

.pv-land-player iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* ===== CATÉGORIE ===== */
.pv-cat {
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  padding: 10px 14px 12px;
  background: var(--noir3);
  transition: color 0.3s ease;
}

.pv-short:hover .pv-cat,
.pv-land:hover .pv-cat {
  color: rgba(255,230,0,0.65);
}

/* ===== CTA ===== */
.pv-cta {
  background: var(--jaune);
  padding: 100px 60px;
  text-align: center;
}

.pv-cta-inner { max-width: 720px; margin: 0 auto; }

.pv-cta-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 7px;
  text-transform: uppercase;
  color: rgba(0,0,0,0.45);
  margin-bottom: 20px;
}

.pv-cta-title {
  font-size: 76px;
  font-weight: 900;
  text-transform: uppercase;
  color: #000;
  letter-spacing: -4px;
  line-height: 0.88;
  margin-bottom: 48px;
}

.pv-cta-btn {
  display: inline-block;
  background: #000;
  color: var(--jaune);
  text-decoration: none;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  padding: 20px 56px;
  border: 2px solid #000;
  border-radius: 4px;
  transition: background 0.3s ease, color 0.3s ease;
}

.pv-cta-btn:hover { background: transparent; color: #000; }

.pv-cta-sub {
  margin-top: 20px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(0,0,0,0.5);
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .pv-hero { padding: 60px 25px 50px; }
  .pv-hero-title { font-size: 72px; letter-spacing: -4px; }
  .pv-featured,
  .pv-section-shorts,
  .pv-section-land { padding: 40px 20px 56px; }
  .pv-shorts-grid { grid-template-columns: repeat(2, 1fr); }
  .pv-cta { padding: 70px 25px; }
  .pv-cta-title { font-size: 48px; letter-spacing: -2px; }
}

@media (max-width: 500px) {
  .pv-hero-title { font-size: 52px; letter-spacing: -3px; }
  .pv-shorts-grid { grid-template-columns: 1fr 1fr; }
}
