/* =====================================================
   GLOBAL BASIS
===================================================== */

body {
  margin: 0;
  background: #000;
  color: #d4af7f;
  font-family: "Garamond", serif;

  overflow-x: hidden;    /* nur horizontal ausschalten */
  overflow-y: auto;      /* vertikal normal scrollen */
}

*, *::before, *::after {
  box-sizing: border-box;
}


/* =====================================================
   BÜHNE – HINTERGRUND (Theatre / Musical)
===================================================== */

.stage {
  position: relative;
  width: 100%;
  min-height: 100vh;

  background: url("../img/stage-seraphinasola.jpg")
             center bottom / cover no-repeat;

  pointer-events: none;  /* Effekte bleiben durchlässig */
  z-index: 0;
}

/* Alte Lichtstrahlen */
.lightbeam {
  position: absolute;
  inset: 0;

  background: radial-gradient(
    ellipse at 40% 0%,
    rgba(255,230,180,0.45),
    rgba(255,200,120,0.20),
    transparent 70%
  );

  mix-blend-mode: screen;
  opacity: 0.5;
  pointer-events: none;
  z-index: 1;
}


/* =====================================================
   LOGO-AUSSCHALTEN (Legacy, kein Fehler)
===================================================== */

.ss-logo-container {
  display: none !important;
}


/* =====================================================
   NAVIGATION – SEITLICHE DESKTOP-NAV
===================================================== */

.side-nav {
  position: fixed;
  top: 0;
  left: 0;

  width: 200px;
  height: 100%;

  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(4px);
  border-right: 1px solid rgba(212,175,127,0.3);

  display: flex;
  flex-direction: column;
  align-items: flex-start;

  padding-top: 5rem;
  padding-left: 1.4rem;
  gap: 1rem;

  z-index: 200;  /* hoch genug für alles */
}

.side-nav a {
  color: #f4dca1;
  text-decoration: none;
  font-size: 1.1rem;
  letter-spacing: 1px;
  transition: 0.3s;
}

.side-nav a:hover {
  color: white;
  text-shadow: 0 0 8px rgba(244,182,78,0.7);
}

.side-nav a.active {
  color: white;
  font-weight: bold;
  text-shadow: 0 0 10px rgba(255,220,150,0.9);
}


/* =====================================================
   MOBILE NAV
===================================================== */

.menu-toggle {
  display: none;

  position: fixed;
  top: 14px;
  left: 14px;

  background: rgba(0,0,0,0.6);
  border: 1px solid #d4af7f;
  padding: 0.4rem 0.7rem;
  border-radius: 6px;

  color: #d4af7f;
  font-size: 1.2rem;
  cursor: pointer;

  z-index: 210;
}

@media (max-width: 768px) {

  .side-nav {
    transform: translateX(-100%);
    transition: 0.35s ease;
    background: rgba(0,0,0,0.92);
  }

  .side-nav.open {
    transform: translateX(0);
  }

  .menu-toggle {
    display: block;
  }
}


/* =====================================================
   DROPDOWNS – THEATRE ONLY
===================================================== */

.nav-group {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.nav-parent {
  background: none;
  border: none;
  color: #f8e8c0;
  font-family: Garamond, serif;
  font-size: 1.1rem;
  padding: 0.3rem 0;
  cursor: pointer;
  text-align: left;
  width: 100%;
}

.nav-parent:hover {
  color: #d6a34f;
}

.nav-parent:active,
.nav-parent:focus {
  outline: none;
}

.nav-sub {
  padding-left: 1rem;
  margin-top: 0.2rem;
}

.nav-sub a {
  display: block;
  padding: 0.25rem 0;
  font-size: 0.95rem;
  text-decoration: none;
  color: #f8e8c0;
}

.nav-sub a:hover {
  color: #f4b64e;
}

.nav-sub-disabled {
  opacity: 0.5;
  padding: 0.25rem 0;
  font-size: 0.95rem;
  color: #f8e8c0;
}

nav, nav * {
  -webkit-tap-highlight-color: transparent;
  user-select: none;
}


/* =====================================================
   BROADWAY SIGN (nur auf Musical/Opera)
===================================================== */

.broadway-sign {
  position: absolute;
  top: 20%;
  left: 50%;

  width: 30%;
  height: 45%;
  transform: translateX(-50%);

  background: rgba(20,10,0,0.35);
  border: 2px solid rgba(255,220,150,0.38);
  border-radius: 18px;
  backdrop-filter: blur(4px);

  padding: 2rem;
  text-align: center;

  display: flex;
  flex-direction: column;
  justify-content: center;

  animation: fadeInSoft 1.4s ease-out forwards,
             goldPulse 6s ease-in-out infinite;

  z-index: 20;
  pointer-events: none;
}

.broadway-title {
  font-size: 3.2rem;
  color: #f4dca1;
  letter-spacing: 2px;
  text-shadow: 0 0 12px rgba(255,230,180,0.85);
}

.broadway-sub {
  margin-top: 0.8rem;
  font-size: 1.4rem;
  letter-spacing: 3px;
  color: #ffe4b2;
}

.broadway-prod {
  margin-top: 1.4rem;
  font-size: 1.1rem;
  color: #f8e8c8;
}

.broadway-info {
  margin-top: 2rem;
  font-size: 1.6rem;
  color: #f1d7b0;
  opacity: 0.85;
}


/* =====================================================
   ANIMATIONEN
===================================================== */

@keyframes fadeInSoft {
  from { opacity: 0; transform: translateX(-50%) translateY(10px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes goldPulse {
  0% {
    box-shadow:
      0 0 35px rgba(255,230,180,0.22),
      0 0 65px rgba(255,200,120,0.28),
      inset 0 0 30px rgba(255,220,170,0.15);
  }
  50% {
    box-shadow:
      0 0 45px rgba(255,240,200,0.32),
      0 0 80px rgba(255,210,150,0.38),
      inset 0 0 36px rgba(255,230,180,0.18);
  }
  100% {
    box-shadow:
      0 0 35px rgba(255,230,180,0.22),
      0 0 65px rgba(255,200,120,0.28),
      inset 0 0 30px rgba(255,220,170,0.15);
  }
}
