/* --- Variables & Reset --- */
:root {
  --bg-dark: #121212;
  --bg-panel: #1e1e1e;
  --bg-card: #2a2a2a;
  --text-main: #e0e0e0;
  --text-muted: #a0a0a0;
  --accent-amber: #ff9d00;
  --accent-glow: rgba(255, 157, 0, 0.3);
  --border-radius: 8px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  background-color: var(--bg-dark);
  color: var(--text-main);
  line-height: 1.6;
  /* Subtle dark gradient to mimic studio lighting */
  background-image: radial-gradient(circle at 50% 0%, #1f1f1f 0%, var(--bg-dark) 80%);
  background-attachment: fixed;
}

/* --- Typography & Header --- */
.studio-header {
  text-align: center;
  padding: 4rem 1rem;
  border-bottom: 2px solid var(--bg-panel);
}

.studio-header h1 {
  font-size: 3.5rem;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--text-main);
  margin-bottom: 0.5rem;
}

.studio-header .subtitle {
  font-size: 1.2rem;
  color: var(--accent-amber);
  letter-spacing: 2px;
}

/* --- Layout --- */
.studio-space {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
}

/* --- Intro Section (The "Recording" Sign) --- */
.studio-intro {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 4rem;
  padding: 2rem;
  background: var(--bg-panel);
  border-radius: var(--border-radius);
  border-left: 4px solid #ff3333; /* Red recording light vibe */
}

.indicator-light {
  width: 16px;
  height: 16px;
  background-color: #ff3333;
  border-radius: 50%;
  margin-bottom: 1rem;
  box-shadow: 0 0 10px #ff3333, 0 0 20px #ff3333;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { opacity: 0.6; }
  50% { opacity: 1; }
  100% { opacity: 0.6; }
}

/* --- Media Sections Shared Styles --- */
.media-section {
  margin-bottom: 5rem;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid var(--bg-card);
  padding-bottom: 0.5rem;
  color: var(--accent-amber);
}

/* --- Audio Grid (The Tapes) --- */
.audio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.track-card {
  background: var(--bg-panel);
  padding: 1.5rem;
  border-radius: var(--border-radius);
  border-top: 3px solid var(--bg-card);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.track-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px var(--accent-glow);
  border-top: 3px solid var(--accent-amber);
}

.track-card h4 {
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.track-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
}

/* Style the default HTML5 audio player slightly to blend in */
audio {
  width: 100%;
  height: 40px;
  outline: none;
}

/* --- Video Grid (The Reels) --- */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 2rem;
}

.video-card {
  background: var(--bg-panel);
  border-radius: var(--border-radius);
  overflow: hidden;
}

/* Responsive 16:9 Video Container */
.video-wrapper {
  width: 100%;
  aspect-ratio: 16 / 9;
  background-color: #000;
}

.video-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.video-info {
  padding: 1.5rem;
}

.video-info h4 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.video-info p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* --- Footer --- */
.studio-footer {
  text-align: center;
  padding: 3rem 1rem;
  background: var(--bg-panel);
  margin-top: 2rem;
}

.contact-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.75rem 1.5rem;
  background-color: transparent;
  color: var(--accent-amber);
  text-decoration: none;
  border: 1px solid var(--accent-amber);
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: bold;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background-color: var(--accent-amber);
  color: var(--bg-dark);
  box-shadow: 0 0 15px var(--accent-glow);
}

/* --- Mobile Responsiveness --- */
@media (max-width: 768px) {
  .studio-header h1 {
    font-size: 2.5rem;
  }
  
  .studio-space {
    padding: 1rem;
  }

  .video-grid {
    grid-template-columns: 1fr;
  }
}