/* lineup.css — the events as a festival poster, plus the act bottom-sheet. */

.lineup {
  background:
    radial-gradient(ellipse 120% 50% at 50% 0%, rgba(255, 46, 136, 0.22), transparent 70%),
    var(--night);
}

.lineup__poster {
  margin-top: 26px;
  padding: 22px 12px 24px;
  border: 2.5px solid var(--cream);
  border-radius: 8px;
  box-shadow: 6px 6px 0 var(--rani);
}

.day + .day {
  margin-top: 22px;
}

.day__label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 6px;
  font: 700 11px/1 var(--font-mono);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--lime);
}

.day__label::before,
.day__label::after {
  content: "";
  flex: 1;
  height: 1.5px;
  background: currentColor;
  opacity: 0.5;
}

.day__acts {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.day__acts li {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.act-btn {
  padding: 2px 0;
  border: 0;
  background: none;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  font-variation-settings: "wdth" 75, "opsz" 96;
  transition: transform var(--dur-fast) var(--ease-out), color var(--dur-fast) ease;
}

.act-btn--mid {
  font-size: clamp(30px, 9vw, 40px);
  color: var(--cream);
}

.act-btn--head {
  font-size: clamp(58px, 18.5vw, 82px);
  color: var(--rani);
}

.day:nth-child(3) .act-btn--head {
  color: var(--marigold);
}

.act-btn__time {
  display: block;
  margin-top: 4px;
  font: 400 11px/1 var(--font-mono);
  letter-spacing: 0.08em;
  text-transform: none;
  color: rgba(255, 244, 230, 0.6);
}

@media (hover: hover) {
  .act-btn:hover {
    transform: rotate(-3deg) scale(1.04);
    color: var(--lime);
  }
}

.act-btn:active {
  transform: scale(0.96);
}

.act-btn[data-reveal] {
  opacity: 0;
  transform: translateY(30px) skewY(4deg);
}

.act-btn.is-in {
  opacity: 1;
  transform: none;
  transition: opacity 600ms var(--ease-out) calc(var(--d, 0) * 110ms), transform 700ms var(--ease-spring) calc(var(--d, 0) * 110ms);
}

/* ---- act sheet (native <dialog>) --------------------------------------------------- */
.act {
  width: var(--col);
  max-width: 100vw;
  max-height: 88svh;
  margin: auto auto 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  overflow: visible;
}

.act::backdrop {
  background: rgba(20, 10, 18, 0.7);
}

.act[open] .act__sheet {
  animation: sheet-up 460ms var(--ease-spring);
}

.act[open]::backdrop {
  animation: fade-in 300ms ease;
}

@keyframes sheet-up {
  from {
    transform: translateY(100%);
  }
}

.act__sheet {
  position: relative;
  padding: 30px 24px max(30px, env(safe-area-inset-bottom));
  border: 2.5px solid var(--ink);
  border-bottom: 0;
  border-radius: 28px 28px 0 0;
  background: var(--cream);
  text-align: left;
}

.act__close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--lime);
  font-weight: 800;
}

.act__when {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rani-deep);
}

.act__name {
  margin: 6px 0 0;
  font-weight: 800;
  font-size: 58px;
  line-height: 0.9;
  letter-spacing: -0.045em;
  text-transform: uppercase;
  font-variation-settings: "wdth" 75, "opsz" 96;
}

.act__stage {
  margin: 8px 0 0;
  font-weight: 700;
  font-size: 17px;
}

.act__vibe {
  margin: 12px 0 0;
  font-size: 16px;
  line-height: 1.45;
  color: rgba(20, 10, 18, 0.78);
}

.act__fit {
  margin-top: 20px;
  padding: 16px;
  border: 2px solid var(--ink);
  border-radius: 18px;
  background: #fff;
  box-shadow: 4px 4px 0 var(--ink);
}

.act__fitlabel {
  margin: 0;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.act__fittext {
  margin: 4px 0 12px;
  font-size: 26px;
  line-height: 1.1;
}

.act__swatches {
  display: flex;
  gap: 10px;
}

.act__swatches span {
  width: 46px;
  height: 46px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  background: var(--sw);
  animation: sticker-pop 500ms var(--ease-spring) both;
  animation-delay: calc(200ms + var(--i) * 80ms);
}
