/* hero.css — the marigold disco ball on stage, the names, the marquee. */

.hero {
  position: relative;
  height: max(100svh, 660px);
  min-height: 660px;
  overflow: clip;
  contain: paint;
  z-index: 1;
}

.hero__media {
  position: absolute;
  inset: 0;
}

.hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 0%;
  display: block;
  background: var(--night) url("../assets/img/stage.jpg") center top / cover no-repeat;
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 10, 18, 0) 38%, rgba(20, 10, 18, 0.55) 62%, rgba(20, 10, 18, 0.92) 100%);
}

.hero__fx {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero__copy {
  position: absolute;
  left: var(--pad);
  right: var(--pad);
  bottom: 118px;
  text-align: left;
}

.hero__copy .pill {
  color: var(--lime);
  margin-bottom: 14px;
}

.hero__names {
  margin: 0;
  font-weight: 800;
  line-height: 0.8;
  letter-spacing: -0.055em;
  font-variation-settings: "wdth" 75, "opsz" 96;
}

.hero__name {
  display: block;
  font-size: clamp(76px, 29vw, 124px);
  color: var(--cream);
}

.hero__name--two {
  color: var(--rani);
  padding-left: 0.5em;
}

.hero__name .ch {
  display: inline-block;
}

.hero__amp {
  display: block;
  margin: -0.12em 0 -0.18em 0.2em;
  font-size: clamp(54px, 18vw, 80px);
  line-height: 1;
  letter-spacing: 0;
  color: var(--lime);
}

.hero__fest {
  margin: 18px 0 0;
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  font-variation-settings: "wdth" 80;
}

.hero__fest .serif {
  text-transform: none;
  color: var(--marigold);
  font-size: 1.15em;
}

.hero__when {
  margin: 4px 0 0;
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 244, 230, 0.78);
}

.hero__tag {
  margin: 10px 0 0;
  font-size: 15px;
  color: rgba(255, 244, 230, 0.85);
}

.hero .marquee {
  position: absolute;
  left: -10%;
  width: 120%;
  bottom: 50px;
  transform: rotate(-4deg);
}

.hero__scroll {
  position: absolute;
  right: var(--pad);
  bottom: 12px;
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 244, 230, 0.7);
  animation: bob 1.6s var(--ease-in-out) infinite;
}

@keyframes bob {
  50% {
    transform: translateY(5px);
  }
}
