/* ============================================================
   SAY THE WORD — Acts Page
   ============================================================ */

.acts-hero {
  padding-top: var(--nav-h);
  background: var(--pink);
  padding-bottom: 36px;
  padding-left: 40px;
  padding-right: 40px;
}

.acts-hero__inner {
  padding-top: 36px;
}

.acts-hero__label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}

.acts-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  line-height: 0.92;
}

/* ── ACT SECTION ───────────────────────────────────────────── */
.act-section {
  position: relative;
  overflow: hidden;
}

/* Video block */
.act-section__video-wrap {
  position: relative;
  height: 75vh;
  min-height: 500px;
  overflow: hidden;
}

.act-section__video-wrap video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* Pink gradient — bottom */
.act-section__video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(155,73,119,0.9) 0%,
    rgba(155,73,119,0.3) 40%,
    transparent 70%
  );
  transition: opacity 0.6s ease;
}

/* Text overlay on video */
.act-section__video-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 40px 48px;
  z-index: 2;
}

.act-section__format {
  display: inline-block;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  color: rgba(255,255,255,0.8);
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  border: 1px solid rgba(255,255,255,0.2);
}

.act-section__name {
  font-size: clamp(52px, 9vw, 110px);
  font-weight: 900;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 0.9;
}

/* Info block below video */
.act-section__info {
  background: var(--bg);
  padding: 56px 40px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.act-section__tagline {
  font-size: clamp(20px, 3vw, 30px);
  font-weight: 800;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
  line-height: 1.2;
  color: rgba(255,255,255,0.9);
}

.act-section__desc {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.75;
  max-width: 600px;
  margin-bottom: 28px;
}

.act-section__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.act-section__tag {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink-light);
  background: rgba(155,73,119,0.12);
  border: 1px solid rgba(155,73,119,0.25);
  padding: 6px 14px;
  border-radius: 20px;
}

.act-section__enquire .btn {
  white-space: nowrap;
}

/* ── Divider ───────────────────────────────────────────────── */
.act-divider {
  height: 1px;
  background: linear-gradient(to right, transparent, var(--pink), transparent);
  opacity: 0.3;
}

/* ── Play/pause button ─────────────────────────────────────── */
.act-play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 3;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(155,73,119,0.7);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,0.5);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s, opacity 0.3s;
}
.act-play-btn:hover {
  background: rgba(155,73,119,1);
  transform: translate(-50%, -50%) scale(1.1);
}
.act-play-btn svg {
  width: 26px;
  height: 26px;
}
.act-play-btn.playing {
  opacity: 1;
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 768px) {
  .acts-hero { padding: 0 20px 48px; }
  .acts-hero__inner { padding-top: 48px; }
  .act-section__video-content { padding: 24px 20px 32px; }
  .act-section__info { grid-template-columns: 1fr; gap: 28px; padding: 40px 20px; }
}
