﻿

/* ==========================================================================
   CREATIVE BROADWAY STAGE - AUDITORIUM & EVENTS
   ========================================================================== */

/* 1. 3D Stage Deck */
.stage-3d-container {
  perspective: 1000px;
  width: 100%;
  max-width: 500px;
  margin: 0 auto;
}
.stage-3d-deck {
  transform: rotateX(20deg) rotateY(-10deg);
  transform-style: preserve-3d;
  background: linear-gradient(180deg, #10245C 0%, #081230 100%);
  border: 4px solid #D4A62A;
  border-top-width: 12px;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 
    0 30px 60px rgba(0,0,0,0.4),
    0 0 50px rgba(250, 204, 21, 0.2);
  position: relative;
  transition: all 0.5s ease;
}
.stage-3d-deck:hover {
  transform: rotateX(15deg) rotateY(-5deg) translateY(-5px);
  box-shadow: 
    0 35px 70px rgba(0,0,0,0.5),
    0 0 70px rgba(250, 204, 21, 0.35);
}
.stage-3d-screen {
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 1.5;
  border: 3px solid #1E3A8A;
}
.stage-3d-screen img {
  width: 100%; height: 100%;
  object-fit: cover;
}
/* Front footlights row */
.stage-footlights-row {
  display: flex;
  justify-content: space-around;
  margin-top: 15px;
  padding: 0 10px;
}
.stage-footlight-bulb {
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #ffb300;
  box-shadow: 0 0 10px #ffb300, 0 0 20px #ffb300;
  animation: shine-bulb 2s infinite alternate;
}
.stage-footlight-bulb:nth-child(even) {
  animation-delay: 1s;
}
@keyframes shine-bulb {
  0% { opacity: 0.4; }
  100% { opacity: 1; box-shadow: 0 0 15px #ffd54f, 0 0 30px #ffb300; }
}

/* 2. Broadway Marquee Billboard Card */
.stage-marquee-card {
  background: #0a0e29;
  border: 4px solid #142B6F;
  outline: 3px solid #D4A62A;
  border-radius: 20px;
  padding: 30px;
  position: relative;
  box-shadow: 0 15px 35px rgba(0,0,0,0.25);
  transition: all 0.3s;
}
.stage-marquee-card:hover {
  transform: scale(1.03);
  outline-color: #B91C1C;
  box-shadow: 0 20px 45px rgba(185, 28, 28, 0.2);
}
/* Flashing marquee border dots */
.stage-marquee-bulbs {
  position: absolute;
  inset: -6px;
  pointer-events: none;
  border: 2px dotted #ffd166;
  border-radius: 22px;
  animation: blink-marquee 1s infinite alternate;
}
@keyframes blink-marquee {
  0% { border-color: #ffd166; opacity: 0.6; }
  100% { border-color: #ff4757; opacity: 1; }
}

/* 3. Vintage Ticket Stubs */
.stage-vintage-ticket {
  background: #fffdf5;
  border: 2px solid #D4A62A;
  border-radius: 16px;
  padding: 30px;
  position: relative;
  box-shadow: 0 8px 25px rgba(212, 166, 42, 0.08);
  transition: all 0.3s;
}
.stage-vintage-ticket:hover {
  transform: translateY(-5px);
  border-color: #B91C1C;
  box-shadow: 0 12px 30px rgba(185, 28, 28, 0.1);
}
/* Perforated lines and punch notches */
.stage-ticket-notch-top {
  position: absolute;
  top: -10px; left: 25%;
  width: 20px; height: 20px;
  background: #F3F7FF;
  border-radius: 50%;
  border: 2px solid #D4A62A;
  border-top-color: transparent;
}
.stage-ticket-notch-bottom {
  position: absolute;
  bottom: -10px; left: 25%;
  width: 20px; height: 20px;
  background: #F3F7FF;
  border-radius: 50%;
  border: 2px solid #D4A62A;
  border-bottom-color: transparent;
}
.stage-ticket-perforation {
  position: absolute;
  left: 25%; top: 15px; bottom: 15px;
  width: 2px;
  border-left: 2px dashed rgba(212, 166, 42, 0.5);
}
.stage-ticket-barcode {
  writing-mode: vertical-lr;
  font-family: 'Courier New', Courier, monospace;
  font-size: 10px;
  letter-spacing: 2px;
  opacity: 0.4;
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}

/* 4. Interactive Footlight Toggle Switches */
.stage-switches-container {
  background: #fff8ea;
  border-radius: 30px;
  padding: 35px;
  border: 2px dashed rgba(212, 166, 42, 0.4);
}
.stage-switch-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px dashed rgba(212, 166, 42, 0.2);
}
.stage-switch-row:last-child {
  border-bottom: none;
}
.stage-switch-label {
  font-weight: 800;
  color: #142B6F;
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.stage-toggle-btn {
  width: 50px; height: 26px;
  border-radius: 13px;
  background: #cbd5e1;
  position: relative;
  cursor: pointer;
  transition: all 0.3s;
}
.stage-toggle-btn::after {
  content: '';
  position: absolute;
  top: 3px; left: 3px;
  width: 20px; height: 20px;
  border-radius: 50%;
  background: #fff;
  transition: all 0.3s;
  box-shadow: 0 2px 5px rgba(0,0,0,0.15);
}
.stage-toggle-btn.active {
  background: #B91C1C;
}
.stage-toggle-btn.active::after {
  left: 27px;
}

/* 5. Polaroid Scattered Stack */
.stage-polaroid-stack {
  position: relative;
  height: 380px;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
}
.stage-polaroid {
  background: #fff;
  border-radius: 4px;
  padding: 12px 12px 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  position: absolute;
  width: 260px;
  transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}
.stage-polaroid img {
  width: 100%; height: 180px;
  object-fit: cover;
  border: 1px solid #ddd;
}
.stage-polaroid-caption {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  color: #142B6F;
  text-align: center;
  margin-top: 15px;
  font-size: 13.5px;
}
.stage-polaroid-1 {
  transform: rotate(-8deg);
  left: 0; top: 10px;
  z-index: 1;
}
.stage-polaroid-2 {
  transform: rotate(5deg);
  right: 0; top: 30px;
  z-index: 2;
}
.stage-polaroid-3 {
  transform: rotate(-3deg);
  left: 30px; bottom: 10px;
  z-index: 3;
}
.stage-polaroid:hover {
  transform: rotate(0) scale(1.08) translateY(-10px);
  z-index: 10;
  box-shadow: 0 20px 45px rgba(0,0,0,0.2);
}