/* ==========================================================================
   HERO.CSS — Section d'accueil (vidéo plein écran, avis, CTA)
   ========================================================================== */

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

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

.hero__media .img-placeholder {
  min-height: 92vh;
  font-size: 1rem;
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.55) 0%, rgba(11, 11, 12, 0.3) 40%, rgba(11, 11, 12, 0.7) 100%);
  z-index: 1;
}

.hero__content {
  position: relative;
  z-index: 2;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.hero__brush {
  font-family: var(--font-brush);
  color: var(--cream);
  font-size: clamp(2rem, 4.5vw, 3rem);
  transform: rotate(-2deg);
  margin-bottom: -0.5rem;
}

.hero__title {
  font-size: var(--fs-hero);
  color: var(--color-primary);
  text-shadow: 6px 6px 0 var(--indigo);
}

.hero__scroll-cue {
  position: absolute;
  bottom: var(--spacing-md);
  right: var(--spacing-md);
  z-index: 2;
  writing-mode: vertical-rl;
  font-family: var(--font-label);
  letter-spacing: 0.2em;
  font-size: var(--fs-label);
  color: var(--color-text-muted);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hero__scroll-cue::after {
  content: "";
  width: 1px;
  height: 40px;
  background: var(--color-text-muted);
}