/* ============================================================
   Zeus Illumination — Scene Toggle
   ============================================================ */

.zeus-scene-section {
  background: #0A0F1E;
  padding: 80px 0;
  border-top: 1px solid #1E2A3A;
}

.zeus-scene-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 clamp(1.5rem, 4vw, 2.5rem);
}

.zeus-scene-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.zeus-scene-header .zeus-eyebrow {
  margin-bottom: 0.875rem !important;
}

.zeus-scene-header h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 1rem !important;
}

.zeus-scene-header .zeus-scene-subtitle {
  color: #9CA3AF;
  font-size: 1rem;
  line-height: 1.7;
  margin: 0 !important;
}

/* Scene toggle container */
.scene-toggle {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid rgba(245, 166, 35, 0.15);
  background: #111827;
}

/* Stacked scene images */
.scene {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 250ms ease-in-out;
  pointer-events: none;
  display: block;
}

.scene.visible {
  opacity: 1;
}

/* Hover zones overlay */
.zones {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  z-index: 2;
}

.zone {
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 24px;
}

.zone-label {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.7);
  transition: color 200ms ease, transform 200ms ease;
  font-family: inherit;
}

.zone:hover .zone-label,
.zone.active .zone-label {
  color: #F5A623;
  transform: translateY(-4px);
}

/* Subtle vertical dividers */
.zone:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

/* Mobile zone label adjustments */
@media (max-width: 600px) {
  .zone-label {
    font-size: 0.65rem;
    padding-bottom: 0;
  }

  .zone {
    padding-bottom: 14px;
  }
}
