/* Styles spécifiques à la page scene — extraits du <style> inline du V12 (scene.html), à l'identique. */

/* Volets fond plein écran avec photos visibles */
    .scene-grid {
      position: relative;
      display: grid;
      grid-template-columns: 1fr 1fr;
      align-items: stretch;
      margin-top: 90px;
      gap: 0;
    }

    .volet {
      position: relative;
      display: flex;
      flex-direction: column;
      padding: 0 0 70px;
    }

    /* IMAGE EN HAUT — photo bien visible */
    .volet-photo {
      width: 100%;
      aspect-ratio: 3 / 4;
      background-size: cover;
      background-position: center top;
      overflow: hidden;
    }
    .volet-slap .volet-photo { background-image: url('photos/slap_concert.jpg'); background-color: #0d0808; background-position: center; }
    .volet-plume .volet-photo { background-image: url('photos/scene_humour.jpg'); background-color: #100d02; background-position: center; }

    /* TEXTE EN DESSOUS — apparition au scroll (classe .reveal globale) */
    .volet-content {
      position: relative;
      z-index: 2;
      max-width: 620px;
      width: 100%;
      margin: 0 auto;
      padding: 48px 56px 0;
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* En-tête de volet : hauteur réservée pour aligner les deux colonnes */
    .volet-head {
      min-height: 150px;
      margin-bottom: 8px;
    }

    .volet-label {
      font-family: var(--font-titre);
      font-size: 0.9rem;
      letter-spacing: 0.35em;
      text-transform: uppercase;
      margin-bottom: 14px;
      opacity: 0.75;
    }
    .volet-slap .volet-label { color: var(--rouge); }
    .volet-plume .volet-label { color: var(--or); }

    .volet-title {
      font-family: var(--font-titre);
      font-size: clamp(2.6rem, 4.5vw, 4rem);
      line-height: 1;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }
    .volet-slap .volet-title { color: var(--rouge); }
    .volet-plume .volet-title { color: var(--or); }

    .volet-text {
      font-family: var(--font-main);
      font-style: normal;
      font-size: 1.02rem;
      line-height: 1.7;
      color: var(--creme);
      opacity: 0.9;
      margin-bottom: 16px;
    }

    .volet-text.volet-subhead {
      font-family: var(--font-titre);
      font-size: 1.15rem;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      margin-bottom: 14px;
      margin-top: 30px;
      opacity: 0.85;
    }
    .volet-slap .volet-text.volet-subhead { color: var(--rouge); }
    .volet-plume .volet-text.volet-subhead { color: var(--or); }

    /* Alignement des deux colonnes (Fanny, 23.06 → corrigé) : le 1er sous-titre réserve
       la hauteur de 2 lignes pour que « EN CONCERT » (gauche, 1 ligne) se cale
       au niveau de « POOL À FACETTES » (droite, 1re ligne), et que les paragraphes
       de texte démarrent à la même hauteur. Desktop uniquement (en mobile les
       volets sont empilés). */
   @media (min-width: 769px) {
      .volet-text.volet-subhead-lead {
        min-height: 3.4em;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
      }
    }

    .volet-text.volet-quote {
      font-family: var(--font-titre);
      font-size: 1rem;
      letter-spacing: 0.06em;
      line-height: 1.4;
      opacity: 0.95;
      margin-top: 6px;
    }
    .volet-slap .volet-text.volet-quote { color: var(--rouge); }
    .volet-plume .volet-text.volet-quote { color: var(--or); }

    .volet-text.volet-coprod {
      font-size: 0.82rem;
      opacity: 0.5;
      margin-top: 18px;
      margin-bottom: 0;
      border-top: 1px solid rgba(240,235,224,0.1);
      padding-top: 14px;
    }
    .volet-text.volet-support {
      font-size: 0.82rem;
      opacity: 0.5;
      margin-top: 10px;
      margin-bottom: 0;
    }

    /* CTA poussé en bas du volet → boutons des 2 colonnes alignés */
    .volet-content .cta {
      margin-top: 40px;
      margin-bottom: 0;
      align-self: flex-start;
    }
    /* Le bouton or est rempli comme le rouge (demande de Fanny) */
    .volet-content .cta-or {
      background: var(--or);
      color: var(--noir);
      border-color: var(--or);
    }
    .volet-content .cta-or:hover {
      background: #f0d268;
      box-shadow: 0 0 30px rgba(242,197,107,0.35);
    }
    /* Sur grand écran, on aligne les 2 boutons sur la même ligne du bas */
    @media (min-width: 901px) {
      .volet-content .cta { margin-top: auto; }
      .volet-text:last-of-type { margin-bottom: 40px; }
    }

    /* Mobile : volets empilés, séparateur masqué */
    @media (max-width: 900px) {
      .scene-grid { grid-template-columns: 1fr; }
      .separator { display: none; }
      .volet { padding: 0 0 50px; min-height: auto; }
      .volet-content { padding: 36px 28px 0; }
      .volet-head { min-height: 0; }
      .volet-plume { border-top: 1px solid rgba(240,235,224,0.12); }
    }

    .separator {
      display: none;
    }

    .volet-accent {
      width: 60px;
      height: 3px;
      margin-bottom: 24px;
    }
    .volet-slap .volet-accent { background: var(--rouge); }
    .volet-plume .volet-accent { background: var(--or); }

    /* SECTION VIDÉOS — Lecteur YouTube */
    .videos-section {
      position: relative;
      z-index: 2;
      padding: 100px 6% 80px;
      background: rgba(10,10,10,0.92);
      border-top: 1px solid rgba(232,197,71,0.15);
    }

    .videos-header {
      text-align: center;
      margin-bottom: 60px;
    }

    .video-player-wrap {
      max-width: 1100px;
      margin: 0 auto;
    }

    .video-main {
      position: relative;
      width: 100%;
      aspect-ratio: 16/9;
      background: #000;
      margin-bottom: 30px;
      box-shadow: 0 20px 60px rgba(0,0,0,0.5);
    }
    .video-main iframe {
      width: 100%;
      height: 100%;
      border: none;
    }

    .video-thumb {
      position: relative;
      aspect-ratio: 16/9;
      background: #1a1a1a;
      cursor: pointer;
      overflow: hidden;
      border: 2px solid transparent;
      transition: border-color 0.25s, transform 0.25s;
    }
    .video-thumb:hover, .video-thumb.active {
      border-color: var(--rouge);
      transform: scale(1.02);
    }
    .video-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }
    .video-thumb-title {
      position: absolute;
      bottom: 0; left: 0; right: 0;
      padding: 10px 14px;
      background: linear-gradient(to top, rgba(0,0,0,0.95), transparent);
      font-family: var(--font-titre);
      font-size: 0.9rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--creme);
    }

    .video-carousel-wrap {
      position: relative;
      display: flex;
      align-items: stretch;
      gap: 0;
    }
    .video-thumbs {
      display: flex;
      gap: 12px;
      overflow: hidden;
      scroll-behavior: smooth;
      flex: 1;
    }
    .video-thumb {
      min-width: calc(25% - 9px);
      flex-shrink: 0;
    }
    .video-arrow {
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(10,10,10,0.75);
      border: 1px solid rgba(240,235,224,0.2);
      color: var(--creme);
      font-size: 2rem;
      line-height: 1;
      padding: 0 14px;
      min-width: 44px;
      height: 100%;
      cursor: pointer;
      transition: background 0.2s, border-color 0.2s;
      flex-shrink: 0;
      z-index: 2;
    }
    .video-arrow:hover { background: var(--rouge); border-color: var(--rouge); }
    @media (max-width: 768px) {
      .video-thumb { min-width: calc(50% - 6px); }
      .video-arrow { min-width: 36px; font-size: 1.5rem; padding: 0 8px; }
    }
