/* 
 * REHEARSAL COMBI RACK - Simple Clickable Panels
 * Cowley Road Studios - Clean Hardware Aesthetic
 * 2 clickable panel areas (top = Cowley, bottom = Cricket)
 */

/* Container positioning */
.rehearsal-combi-container {
  position: relative;
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  overflow: visible;
}

.rehearsal-hotspots {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

/* Simple panel hotspots - Enhanced interactivity */
.rehearsal-panel {
  position: absolute;
  pointer-events: auto;
  cursor: pointer;
  
  /* INVISIBLE by default */
  background: transparent;
  border: none;
  
  /* Smooth transitions for all states */
  transition: 
    background 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.3s cubic-bezier(0.4, 0, 0.2, 1),
    transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  
  /* Accessibility */
  outline: none;
}

/* Minimal hover feedback - barely visible glow */
.rehearsal-panel:hover {
  background: rgba(255, 215, 0, 0.02);
  box-shadow: 
    inset 0 0 20px rgba(255, 215, 0, 0.03),
    0 0 10px rgba(255, 215, 0, 0.05);
}

/* Active state - press feedback */
.rehearsal-panel:active,
.rehearsal-panel.button-pressed {
  background: rgba(255, 215, 0, 0.08);
  transform: scale(0.995);
  box-shadow: 
    inset 0 0 40px rgba(255, 215, 0, 0.15),
    0 0 10px rgba(255, 215, 0, 0.1);
}

/* Enhanced focus state for keyboard navigation */
.rehearsal-panel:focus-visible {
  outline: 3px solid rgba(255, 204, 0, 0.7);
  outline-offset: -3px;
  background: rgba(255, 215, 0, 0.06);
  box-shadow: 
    inset 0 0 30px rgba(255, 215, 0, 0.12),
    0 0 25px rgba(255, 215, 0, 0.2);
}

/* PANEL POSITIONING */

/* Cowley Road (Top Half) */
.rehearsal-cowley-panel {
  top: 0;
  left: 0;
  width: 100%;
  height: 50%;
}

/* Cricket Road (Bottom Half) */
.rehearsal-cricket-panel {
  top: 50%;
  left: 0;
  width: 100%;
  height: 50%;
}

/* Mobile viewport optimization */
@media (max-width: 768px) {
  .rehearsal-combi-container {
    width: 100vw;
    max-width: 100%;
    margin: 0;
    padding: 0;
  }
  
  /* Ensure panels are big enough for touch */
  .rehearsal-cowley-panel,
  .rehearsal-cricket-panel {
    min-height: 80px;
  }
}

@media (max-width: 640px) {
  /* Lock mobile viewport */
  .rehearsal-combi-container {
    width: 100vw;
    max-width: 100vw;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
  }
  
  /* Ensure good touch targets on small screens */
  .rehearsal-cowley-panel,
  .rehearsal-cricket-panel {
    min-height: 100px;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  .rehearsal-panel {
    transition: none;
  }
}

/* High contrast mode */
@media (prefers-contrast: high) {
  .rehearsal-panel:hover {
    background: rgba(255, 255, 0, 0.1);
  }
  
  .rehearsal-panel:focus-visible {
    outline: 3px solid #ffcc00;
  }
}
