/* ===== Les Ardentes 2025 — StudioHolostar ===== */

/* Titre & chapô */
.section-title {
  text-align: center;
  margin: 110px auto 36px;
}
.section-title .caption {
  color: rgba(244,244,244,.7);
  letter-spacing: .22em;
  text-transform: uppercase;
}
.section-title .huge {
  font-weight: 800;
  font-size: clamp(32px,5.2vw,56px);
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* Hero (bannière cinématique fine) */
.project-hero {
  width: min(90vw, 1200px);
  margin: 24px auto 50px;
  border-radius: 16px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 6px 20px rgba(0,0,0,.45);
  aspect-ratio: 3 / 1;
  object-fit: cover;
  object-position: center;
  filter: contrast(1.02) brightness(.95);
  transition: transform .45s ease, filter .45s ease;
}
.project-hero:hover {
  transform: scale(1.01);
  filter: contrast(1.06) brightness(1);
}

/* Intro paragraphe */
.prose {
  max-width: 820px;
  margin: 0 auto 26px;
  color: rgba(244,244,244,.78);
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
}

/* ===== Grille festival 2 colonnes (format vertical) ===== */
.ardentes-grid {
  width: 100%;
  margin: 36px 0 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 2px solid rgba(255,255,255,.06);
  border-bottom: 2px solid rgba(255,255,255,.06);
}
.ardentes-grid .cell {
  position: relative;
  aspect-ratio: 3 / 4; /* Format portrait */
  overflow: hidden;
  background: #111;
}
.ardentes-grid .cell + .cell {
  border-left: 2px solid rgba(255,255,255,.06);
}
.ardentes-grid .cell img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}
.ardentes-grid .cell:hover img {
  transform: scale(1.035);
  filter: contrast(1.08) brightness(1.02);
}

/* Responsive: 1 colonne */
@media (max-width: 980px) {
  .ardentes-grid { grid-template-columns: 1fr; }
  .ardentes-grid .cell + .cell {
    border-left: 0;
    border-top: 2px solid rgba(255,255,255,.06);
  }
}

/* ===== “You may also like” ===== */
.also-like {
  width: 100%;
  margin: 90px 0 120px;
}
.also-like .section-caption {
  text-align: center;
  color: rgba(244,244,244,.7);
  font-size: 14px;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.also-like-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 2px solid rgba(255,255,255,.06);
  border-bottom: 2px solid rgba(255,255,255,.06);
}
.also-like-card {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.also-like-card + .also-like-card {
  border-left: 2px solid rgba(255,255,255,.06);
}
.also-like-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(.95);
  transition: transform .45s, filter .45s;
}
.also-like-card:hover img {
  transform: scale(1.05);
  filter: brightness(1);
}
.also-like-card h3 {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;
  text-align: center;
  font-weight: 900;
  font-size: clamp(18px, 2.6vw, 34px);
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 3px 16px rgba(0,0,0,.7);
}
@media (max-width: 980px) {
  .also-like-row { grid-template-columns: 1fr; }
  .also-like-card + .also-like-card {
    border-left: 0;
    border-top: 2px solid rgba(255,255,255,.06);
  }
}

/* Bouton retour */
.project-cta {
  display: flex;
  justify-content: center;
  margin: 48px 0 90px;
}
.video-fullscreen {
  position: fixed;
  inset: 0;
  background: #000;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.video-fullscreen video {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #000;
}

/* Quand active */
.video-fullscreen.active {
  display: flex;
}

/* Clique pour quitter */
.video-fullscreen::after {
  content: "✕";
  position: absolute;
  top: 24px;
  right: 28px;
  color: rgba(255,255,255,.7);
  font-size: 28px;
  cursor: pointer;
  transition: opacity .3s;
}
.video-fullscreen:hover::after {
  opacity: 1;
}
