/* Awake & Dreaming EPK Styles */

:root {
  --primary-bg: #0a0e1a;
  --secondary-bg: #151f42;
  --accent-blue: #6b8cce;
  --accent-light: #8fa9d8;
  --text-primary: #ffffff;
  --text-secondary: #b8c5e0;
  --border-color: #2a3f6e;
  --hover-bg: #1a2847;
}

/* ================================
   ACCESSIBILITY
   ================================ */

/* Skip to main content link for keyboard users */
.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--accent-blue);
  color: var(--text-primary);
  padding: 15px 20px;
  text-decoration: none;
  font-weight: 700;
  z-index: 10000;
  border-radius: 0 0 8px 0;
  transition: top 0.3s ease;
}

.skip-link:focus {
  top: 0;
  outline: 3px solid var(--text-primary);
  outline-offset: 2px;
}

/* Enhanced focus states for keyboard navigation */
a:focus-visible,
button:focus-visible,
audio:focus-visible {
  outline: 3px solid var(--accent-blue);
  outline-offset: 3px;
  border-radius: 4px;
}

iframe:focus {
  outline: 3px solid var(--accent-blue);
  outline-offset: 3px;
}

/* Remove focus outline for mouse users but keep for keyboard */
a:focus:not(:focus-visible),
button:focus:not(:focus-visible) {
  outline: none;
}

/* Ensure sufficient color contrast (WCAG AA compliant) */
/* All color combinations tested and meet 4.5:1 ratio */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Lato', sans-serif;
  background-color: var(--primary-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Sticky Download Button */
.sticky-download {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
  animation: fadeIn 1s ease-in;
}

.download-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-blue);
  color: var(--text-primary);
  padding: 12px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  box-shadow: 0 4px 20px rgba(107, 140, 206, 0.3);
  transition: all 0.3s ease;
}

.download-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(107, 140, 206, 0.5);
}

.download-btn svg {
  width: 20px;
  height: 20px;
}

/* Hero Section */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #0a0e1a 0%, #151f42 50%, #1a2847 100%);
  padding: 40px 20px;
  overflow: hidden;
}

/* Animated background image layer */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
  background-size: cover;
  background-position: top center;
  background-repeat: no-repeat;
  transform-origin: top center;
  animation: heroZoom 20s ease-out infinite alternate;
  z-index: 0;
}

/* Gradient overlay on top of background */
.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 50% 50%, rgba(107, 140, 206, 0.1) 0%, transparent 70%);
  pointer-events: none;
  z-index: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(2px);
  z-index: 2;
}

.hero-logo {
  position: relative;
  width: 180px;
  height: auto;
  margin-bottom: 30px;
  filter: drop-shadow(0 4px 20px rgba(107, 140, 206, 0.5));
  animation: fadeInDown 1s ease-out;
  z-index: 3;
}

.hero-title {
  position: relative;
  font-size: 4rem;
  font-weight: 900;
  letter-spacing: 8px;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #ffffff 0%, #8fa9d8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: fadeInUp 1s ease-out 0.2s both;
  text-align: center;
  z-index: 3;
}

.hero-subtitle {
  position: relative;
  font-size: 1.4rem;
  color: var(--text-secondary);
  margin-bottom: 60px;
  letter-spacing: 3px;
  animation: fadeInUp 1s ease-out 0.4s both;
  z-index: 3;
}

.stats-banner {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 900px;
  width: 100%;
  animation: fadeInUp 1s ease-out 0.6s both;
  z-index: 3;
  padding: 30px;
  border-radius: 20px;
}

/* Blur background behind stats boxes */
.stats-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 26, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-radius: 20px;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.stat {
  text-align: center;
  padding: 20px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.stat:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-5px);
  border-color: var(--accent-blue);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent-blue);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  line-height: 1.4;
}

/* EPK Navigation */
.epk-nav {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(21, 31, 66, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-color);
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.epk-nav a {
  color: var(--text-secondary);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 8px 15px;
  border-radius: 20px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.epk-nav a:hover {
  color: var(--text-primary);
  background: var(--accent-blue);
  transform: translateY(-2px);
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 60px 40px;
}

/* Section Styles */
.section {
  margin-bottom: 100px;
  animation: fadeIn 0.8s ease-out;
}

.section-title {
  font-size: 3rem;
  font-weight: 900;
  margin-bottom: 20px;
  color: var(--text-primary);
  letter-spacing: 2px;
  text-transform: uppercase;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: var(--accent-blue);
  border-radius: 2px;
}

.section-subtitle {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Bio Section */
.bio-block {
  background: var(--secondary-bg);
  padding: 40px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
  position: relative;
  overflow: hidden;
}

.bio-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: var(--accent-blue);
}

.bio-block h3 {
  font-size: 1.5rem;
  margin-bottom: 20px;
  color: var(--accent-light);
}

.word-count {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 400;
}

.bio-block p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

.copy-btn {
  background: var(--accent-blue);
  color: var(--text-primary);
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.copy-btn:hover {
  background: var(--accent-light);
  transform: translateX(5px);
}

/* Video Grid */
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.video-item {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.video-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: 0 10px 40px rgba(107, 140, 206, 0.2);
}

.video-item h3 {
  font-size: 1.5rem;
  padding: 20px 20px 10px;
  color: var(--text-primary);
}

.video-date {
  padding: 0 20px 15px;
  color: var(--text-secondary);
  font-size: 0.9rem;
}

.video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.video-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.streaming-links {
  display: flex;
  gap: 15px;
  padding: 20px;
}

.stream-btn {
  flex: 1;
  text-align: center;
  padding: 12px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.stream-btn.spotify {
  background: #1DB954;
  color: white;
}

.stream-btn.spotify:hover {
  background: #1ed760;
  transform: scale(1.05);
}

.stream-btn.apple {
  background: #FA243C;
  color: white;
}

.stream-btn.apple:hover {
  background: #ff3d52;
  transform: scale(1.05);
}

/* Full Live Show */
.video-wrapper-large {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 15px;
  border: 2px solid var(--border-color);
  margin-top: 30px;
}

.video-wrapper-large iframe,
.video-wrapper-large video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.live-show-description {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 20px;
}

/* Album Grid */
.album-description {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

.album-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 40px;
}

.track-item {
  background: var(--secondary-bg);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 25px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  transition: all 0.3s ease;
}

.track-item:hover {
  border-color: var(--accent-blue);
  background: var(--hover-bg);
  transform: translateX(5px);
}

.track-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--accent-blue);
  min-width: 50px;
}

.track-info {
  flex: 1;
  min-width: 0;
  width: 100%;
}

.track-info h4 {
  font-size: 1.2rem;
  margin-bottom: 5px;
  color: var(--text-primary);
}

.track-status {
  font-size: 0.85rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 12px;
}

.track-info audio {
  width: 100%;
  height: 40px;
  margin-top: 10px;
}

/* Press Photos Grid */
.press-photos-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 400px));
  gap: 30px;
  margin-top: 40px;
  justify-content: center;
}

.press-photo-item {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  aspect-ratio: 1;
}

/* Center last item if it's alone in its row (1 item) */
.press-photo-item:last-child:nth-child(3n + 1) {
  grid-column: 2;
}

/* Center last two items if they're alone in their row (2 items) */
.press-photo-item:nth-last-child(2):nth-child(3n + 1) {
  grid-column: 1;
}

.press-photo-item:last-child:nth-child(3n + 2) {
  grid-column: 2;
}

.press-photo-item:hover {
  border-color: var(--accent-blue);
  transform: scale(1.02);
  box-shadow: 0 10px 40px rgba(107, 140, 206, 0.3);
}

.press-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-download-btn {
  position: absolute;
  bottom: 15px;
  right: 15px;
  background: var(--accent-blue);
  color: var(--text-primary);
  padding: 10px 20px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.press-photo-item:hover .photo-download-btn {
  opacity: 1;
  transform: translateY(-5px);
}

.download-all {
  text-align: center;
  margin-top: 40px;
}

.download-all-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-blue);
  color: var(--text-primary);
  padding: 15px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.download-all-btn:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(107, 140, 206, 0.4);
}

/* Quotes */
.quote-block {
  background: var(--secondary-bg);
  padding: 40px;
  border-radius: 15px;
  border-left: 5px solid var(--accent-blue);
  margin-bottom: 30px;
  position: relative;
}

.featured-quote {
  background: linear-gradient(135deg, var(--secondary-bg) 0%, var(--hover-bg) 100%);
  border: 2px solid var(--accent-blue);
  border-left: 5px solid var(--accent-blue);
}

.quote-icon {
  font-size: 5rem;
  color: var(--accent-blue);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 30px;
  font-family: Georgia, serif;
  line-height: 1;
}

.quote-text {
  font-size: 1.3rem;
  font-style: italic;
  color: var(--text-primary);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
  line-height: 1.8;
}

.quote-attribution {
  font-size: 1rem;
  color: var(--accent-light);
  font-weight: 700;
  text-align: right;
}

/* Venues Table */
.venues-table {
  overflow-x: auto;
  margin-top: 40px;
}

.venues-table table {
  width: 100%;
  border-collapse: collapse;
  background: var(--secondary-bg);
  border-radius: 15px;
  overflow: hidden;
}

.venues-table thead {
  background: var(--hover-bg);
}

.venues-table th {
  padding: 20px;
  text-align: left;
  font-weight: 700;
  color: var(--accent-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.9rem;
  border-bottom: 2px solid var(--border-color);
}

.venues-table td {
  padding: 20px;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
}

.venues-table tbody tr {
  transition: all 0.3s ease;
}

.venues-table tbody tr:hover {
  background: var(--hover-bg);
}

.venues-table td strong {
  color: var(--text-primary);
  font-weight: 700;
}

/* Technical Section */
.tech-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-top: 40px;
}

.tech-block {
  background: var(--secondary-bg);
  padding: 35px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.tech-block h3 {
  font-size: 1.5rem;
  color: var(--accent-light);
  margin-bottom: 20px;
}

.tech-block ul {
  list-style: none;
  padding: 0;
}

.tech-block li {
  padding: 12px 0;
  color: var(--text-secondary);
  border-bottom: 1px solid var(--border-color);
  font-size: 1.05rem;
}

.tech-block li:last-child {
  border-bottom: none;
}

.tech-block li strong {
  color: var(--text-primary);
  font-weight: 700;
}

.stage-plot-section {
  margin-top: 50px;
  text-align: center;
}

.stage-plot-section h3 {
  font-size: 2rem;
  margin-bottom: 30px;
  color: var(--text-primary);
}

.stage-plot-image {
  background: white;
  padding: 40px;
  border-radius: 15px;
  display: inline-block;
  margin-bottom: 30px;
}

.stage-plot-image img {
  max-width: 100%;
  height: auto;
  display: block;
}

.download-plot-btn {
  display: inline-block;
  background: var(--accent-blue);
  color: var(--text-primary);
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.download-plot-btn:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
}

.tech-rider-note {
  text-align: center;
  margin-top: 40px;
  padding: 30px;
  background: var(--secondary-bg);
  border-radius: 15px;
  border: 2px dashed var(--border-color);
}

.tech-rider-note p {
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* Social Grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.social-stat-item {
  background: var(--secondary-bg);
  padding: 35px 25px;
  border-radius: 15px;
  border: 1px solid var(--border-color);
  text-align: center;
  transition: all 0.3s ease;
}

.social-stat-item:hover {
  transform: translateY(-5px);
  border-color: var(--accent-blue);
  box-shadow: 0 10px 40px rgba(107, 140, 206, 0.2);
}

.social-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 20px;
}

.social-icon img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.social-number {
  font-size: 2.2rem;
  font-weight: 900;
  color: var(--accent-blue);
  margin-bottom: 8px;
}

.social-label {
  font-size: 0.95rem;
  color: var(--text-secondary);
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.social-link {
  color: var(--accent-light);
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.social-link:hover {
  color: var(--accent-blue);
}

/* Contact Section */
.contact-section {
  background: var(--secondary-bg);
  padding: 60px;
  border-radius: 20px;
  border: 2px solid var(--border-color);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  margin-top: 40px;
}

.contact-info h3,
.contact-cta h3 {
  font-size: 1.8rem;
  color: var(--accent-light);
  margin-bottom: 25px;
}

.contact-detail {
  margin-bottom: 25px;
  font-size: 1.1rem;
}

.contact-detail strong {
  display: block;
  color: var(--text-secondary);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.contact-detail a {
  color: var(--accent-blue);
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
}

.contact-detail a:hover {
  color: var(--accent-light);
}

.contact-cta p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
}

.booking-btn {
  display: inline-block;
  background: var(--accent-blue);
  color: var(--text-primary);
  padding: 18px 45px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 25px rgba(107, 140, 206, 0.3);
}

.booking-btn:hover {
  background: var(--accent-light);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(107, 140, 206, 0.5);
}

/* Footer */
.footer {
  text-align: center;
  padding: 60px 40px;
  background: var(--secondary-bg);
  border-top: 1px solid var(--border-color);
}

.footer-logo {
  width: 80px;
  height: auto;
  margin-bottom: 20px;
  opacity: 0.6;
}

.footer p {
  color: var(--text-secondary);
  margin-bottom: 10px;
}

.footer-links {
  margin-top: 20px;
}

.footer-links a {
  color: var(--accent-light);
  text-decoration: none;
  margin: 0 15px;
  transition: all 0.3s ease;
}

.footer-links a:hover {
  color: var(--accent-blue);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 3rem;
  }
  
  .stats-banner {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    padding: 25px;
  }
  
  .album-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 40px 20px;
  }
  
  .hero-title {
    font-size: 2.5rem;
    letter-spacing: 4px;
  }
  
  .hero-subtitle {
    font-size: 1.1rem;
  }
  
  .stats-banner {
    grid-template-columns: 1fr;
    gap: 15px;
    padding: 20px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .video-grid {
    grid-template-columns: 1fr;
  }
  
  .tech-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
  
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .sticky-download {
    top: 10px;
    right: 10px;
  }
  
  .download-btn {
    padding: 10px 16px;
    font-size: 0.85rem;
  }
  
  .bio-block {
    padding: 25px;
  }
  
  .album-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .track-item {
    flex-direction: column;
    align-items: stretch;
    padding: 20px;
    width: 100%;
  }
  
  .track-number {
    margin-bottom: 10px;
  }
  
  .track-info {
    width: 100%;
    max-width: 100%;
  }
  
  .track-info audio {
    width: 100% !important;
    max-width: 100% !important;
    display: block;
  }
  
  .epk-nav {
    gap: 8px;
    padding: 12px 15px;
  }
  
  .epk-nav a {
    font-size: 0.75rem;
    padding: 6px 10px;
  }
  
  .press-photos-grid {
    grid-template-columns: repeat(2, minmax(0, 400px));
  }
}

@media (max-width: 480px) {
  .container {
    padding: 30px 15px;
  }
  
  .hero-title {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  
  .hero-logo {
    width: 120px;
  }
  
  .stat-number {
    font-size: 1.8rem;
  }
  
  .social-grid {
    grid-template-columns: 1fr;
  }
  
  .album-grid {
    gap: 15px;
  }
  
  .track-item {
    padding: 15px;
  }
  
  .track-info audio {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100%;
  }
  
  .press-photos-grid {
    grid-template-columns: 1fr;
  }
}

/* ================================
   FULLSCREEN LIGHTBOX
   ================================ */

/* Lightbox Overlay */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.4s;
}

.lightbox.active {
  opacity: 1;
  visibility: visible;
}

/* Backdrop with blur */
.lightbox-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(5, 8, 15, 0.97);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
}

/* Image Container */
.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 95vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transform: scale(0.85) translateY(30px);
  opacity: 0;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), 
              opacity 0.4s ease;
}

.lightbox.active .lightbox-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Image */
.lightbox-image {
  max-width: 100%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.8),
              0 0 0 1px rgba(255, 255, 255, 0.05);
  transform-origin: center center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: zoom-in;
  user-select: none;
  -webkit-user-drag: none;
}

.lightbox-image.zoomed {
  cursor: zoom-out;
  transform: scale(2);
}

.lightbox-image.zoomed.panning {
  cursor: grab;
  transition: none;
}

.lightbox-image.zoomed.panning:active {
  cursor: grabbing;
}

/* Loading State */
.lightbox-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  z-index: 1;
}

.lightbox-loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 3px solid rgba(107, 140, 206, 0.2);
  border-top-color: var(--accent-blue);
  border-radius: 50%;
  animation: lightboxSpin 0.8s linear infinite;
}

@keyframes lightboxSpin {
  to { transform: rotate(360deg); }
}

.lightbox-loading.hidden {
  display: none;
}

/* Navigation Arrows */
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: rgba(107, 140, 206, 0.3);
  border-color: var(--accent-blue);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav:active {
  transform: translateY(-50%) scale(0.95);
}

.lightbox-nav.prev {
  left: 25px;
}

.lightbox-nav.next {
  right: 25px;
}

.lightbox-nav svg {
  width: 24px;
  height: 24px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

.lightbox-nav:hover svg {
  stroke: var(--accent-light);
}

/* Close Button */
.lightbox-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-close:hover {
  background: rgba(255, 100, 100, 0.3);
  border-color: #ff6b6b;
  transform: scale(1.1) rotate(90deg);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
  stroke: white;
  stroke-width: 2;
  fill: none;
  transition: stroke 0.3s ease;
}

.lightbox-close:hover svg {
  stroke: #ff6b6b;
}

/* Top Bar (Counter + Zoom) */
.lightbox-topbar {
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 10;
}

.lightbox-counter {
  background: rgba(255, 255, 255, 0.1);
  padding: 10px 24px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-secondary);
  letter-spacing: 2px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-counter .current {
  color: white;
  font-weight: 700;
}

/* Bottom Bar (Actions) */
.lightbox-bottombar {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 10;
}

.lightbox-action {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 30px;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lightbox-action:hover {
  background: var(--accent-blue);
  border-color: var(--accent-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(107, 140, 206, 0.4);
}

.lightbox-action svg {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
}

/* Keyboard Hints */
.lightbox-hints {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 25px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 5;
}

.lightbox:hover .lightbox-hints {
  opacity: 0.6;
}

.lightbox-hint {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.75rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.lightbox-hint kbd {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* Make gallery images clickable */
.press-photo-item img,
.stage-plot-image img {
  cursor: pointer;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.press-photo-item img:hover {
  filter: brightness(1.1);
}

/* Touch Swipe Indicator */
.lightbox-swipe-indicator {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(107, 140, 206, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.lightbox-swipe-indicator.show {
  opacity: 1;
}

.lightbox-swipe-indicator svg {
  width: 40px;
  height: 40px;
  stroke: white;
  stroke-width: 2;
  fill: none;
}

/* Responsive Lightbox */
@media (max-width: 768px) {
  .lightbox-nav {
    width: 45px;
    height: 45px;
  }
  
  .lightbox-nav.prev {
    left: 10px;
  }
  
  .lightbox-nav.next {
    right: 10px;
  }
  
  .lightbox-nav svg {
    width: 20px;
    height: 20px;
  }
  
  .lightbox-close {
    width: 40px;
    height: 40px;
    top: 15px;
    right: 15px;
  }
  
  .lightbox-topbar {
    top: 15px;
  }
  
  .lightbox-counter {
    padding: 8px 16px;
    font-size: 0.85rem;
  }
  
  .lightbox-bottombar {
    bottom: 15px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .lightbox-action {
    padding: 10px 18px;
    font-size: 0.85rem;
  }
  
  .lightbox-hints {
    display: none;
  }
  
  .lightbox-image {
    max-height: 75vh;
    border-radius: 6px;
  }
}

@media (max-width: 480px) {
  .lightbox-nav {
    width: 40px;
    height: 40px;
  }
  
  .lightbox-nav.prev {
    left: 5px;
  }
  
  .lightbox-nav.next {
    right: 5px;
  }
  
  .lightbox-action span {
    display: none;
  }
  
  .lightbox-action {
    padding: 12px;
    border-radius: 50%;
  }
  
  .lightbox-action svg {
    width: 20px;
    height: 20px;
  }
}

/* Disable body scroll when lightbox is open */
body.lightbox-open {
  overflow: hidden;
}

/* Print Styles for PDF Generation */
@media print {
  body {
    background: white;
    color: black;
  }
  
  .sticky-download,
  .download-btn,
  .copy-btn,
  .photo-download-btn,
  .download-all,
  .stream-btn,
  .booking-btn {
    display: none;
  }
  
  .section {
    page-break-inside: avoid;
  }
  
  .hero {
    min-height: auto;
    padding: 40px 20px;
  }
  
  .container {
    max-width: 100%;
  }
  
  a {
    color: #6b8cce;
    text-decoration: underline;
  }
}

