/* ============================================
   HOME — hero + lineup
   ============================================ */

.hero {
  height: clamp(280px, 45vw, 520px);
  overflow: hidden;
  background: var(--color-text);
}

.hero img,
.hero video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* --- LINEUP (thème inversé) --- */
.lineup {
  --color-bg: #000;
  --color-text: #fff;
  position: relative;
  padding: var(--gutter);
  border-top: 1px solid var(--color-border);
  line-height: 1.7;
  background-color: var(--color-bg);
  color: var(--color-text);
}

.lineup__artist {
  font-size: var(--text-md);
}

.lineup__label {
  font-size: var(--text-sm);
  vertical-align: super;
  margin-left: 2px;
  opacity: 0.5;
}

/* "Voir plus" inline, juste après le dernier nom complet (placement géré en JS) */
.lineup__toggle {
  font-size: var(--text-md);
  font-family: var(--font-body);
  font-weight: inherit;
  background: none;
  border: none;
  padding: 0;
  margin-left: 0.5em;
  color: var(--color-text);
  cursor: pointer;
  white-space: nowrap;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (max-width: 768px) {
  .hero {
    height: 100svh;
    margin-top: calc(-1 * var(--header-actual-height, 60px));
    position: relative;
    /* pas de z-index élevé — le header sticky (z-index:100) reste au-dessus */
  }
}
