/* ===================================
   SHOWS.CSS - FAUTE BENDT - UNIVERSELE HERO V3
   Shows pagina styling - ZONDER HERO (komt uit hero.css)
   Versie: 2025.6 - Universele Hero Integration
   =================================== */

/* ===================================
   SHOWS SPECIFIEKE HERO AANPASSINGEN
   =================================== */

/* Shows hero gebruikt decade gradient met shows emoji's - styling komt uit hero.css */
/* Alleen shows-specifieke overrides hier: */

.hero-universal.hero-shows .hero-universal-buttons {
  margin-top: 3rem; /* Standaard spacing na stats */
}

/* ===================================
   SHOWS TABS SECTION - UNIEKE STYLING
   =================================== */

.shows-tabs-section {
  background: var(--bg-primary);
  padding: 4rem 0;
}

.shows-tabs {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
  background: var(--bg-secondary);
  padding: 0.5rem;
  border-radius: 15px;
  border: 1px solid var(--border-color);
}

.shows-tabs .tab-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: transparent;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.shows-tabs .tab-btn:hover {
  background: rgba(218, 165, 32, 0.1);
  color: var(--gold-warm);
  transform: translateY(-2px);
}

.shows-tabs .tab-btn.active {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--gold-shadow);
  transform: translateY(-2px);
}

.tab-icon {
  font-size: 1.2rem;
}

.shows-tab-content {
  display: none;
  animation: fadeInUp 0.5s ease;
}

.shows-tab-content.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ===================================
   SHOWS GRID & CARDS - IDENTIEK AAN HOMEPAGE MAAR ZONDER COUNTDOWN
   =================================== */

.shows-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin: 2rem 0;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 5;
}

.show-card {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  border-radius: 20px;
  padding: 2rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  height: 420px;
  display: flex;
  flex-direction: column;
}

.show-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.show-card.featured {
  background: var(--gold-gradient);
  backdrop-filter: none;
  border: 2px solid var(--gold-bright);
  box-shadow: var(--gold-shadow);
  color: var(--white);
  height: 420px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.show-card.featured::after {
  content: '⭐ VOLGENDE SHOW';
  position: absolute;
  top: -1px;
  right: -1px;
  background: var(--gold-gradient);
  color: var(--white);
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 700;
  border-radius: 0 20px 0 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.show-card.past {
  opacity: 0.85;
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--bordeaux-warm);
  background: linear-gradient(135deg, var(--bg-secondary) 0%, rgba(125, 44, 64, 0.03) 100%);
}

.show-card.past:hover {
  opacity: 1;
  transform: translateY(-5px) scale(1.01);
  border-color: var(--bordeaux-warm);
  box-shadow: 0 8px 25px rgba(125, 44, 64, 0.2);
}

/* SHOW CARD CONTENT - CONSISTENTE HOOGTE */
.show-card .show-title {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 1.5rem 0;
  color: var(--text-primary);
  line-height: 1.3;
  text-align: left;
  flex-shrink: 0;
  min-height: 3.9rem;
  display: flex;
  align-items: flex-start;
}

.show-card .show-info {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  margin: 0 0 1.5rem 0;
  flex: 1;
}

.show-card .show-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  min-width: 90px;
  padding: 0.75rem;
  background: var(--gold-gradient);
  border-radius: 12px;
  color: var(--white);
  flex-shrink: 0;
  font-weight: 700;
}

.show-card .show-date.past-date {
  background: var(--bordeaux-warm);
  color: var(--white);
  opacity: 1;
  border: 2px solid var(--gold-warm);
}

.show-card .show-date.past-date .day {
  color: var(--white);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.show-card .show-date.past-date .month {
  color: var(--white);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.show-card .show-date .day {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 0.25rem;
}

.show-card .show-date .month {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.show-card .show-details {
  flex: 1;
}

.show-card .detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 1rem;
  line-height: 1.4;
}

.show-card .detail-item .icon {
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
  color: var(--gold-warm);
}

.show-card .detail-item .text {
  line-height: 1.4;
  color: var(--text-primary);
  font-weight: 500;
}

.show-card .show-action {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 1.5rem;
  min-height: 70px;
  align-items: flex-start;
  flex-shrink: 0;
  justify-content: center;
}

.show-card .show-btn {
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 25px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 120px;
  text-align: center;
  white-space: nowrap;
  height: 48px;
}

.show-card .show-btn.primary {
  background: var(--gold-gradient);
  color: var(--white);
  box-shadow: var(--gold-shadow);
}

.show-card .show-btn.primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
}

.show-card .show-btn.secondary {
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-primary);
  border: 2px solid var(--border-color);
  backdrop-filter: blur(10px);
}

.show-card .show-btn.secondary:hover {
  background: var(--gold-warm);
  color: var(--white);
  border-color: var(--gold-warm);
  transform: translateY(-2px);
}

.show-card .show-btn.facebook-btn {
  background: #1877F2;
  color: var(--white);
  border: none;
}

.show-card .show-btn.facebook-btn:hover {
  background: #166FE5;
  transform: translateY(-3px);
}

.show-card .facebook-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* FEATURED CARD SPECIFIEKE KLEUREN */
.show-card.featured .show-title {
  color: var(--white);
}

.show-card.featured .detail-item .text,
.show-card.featured .detail-item .icon {
  color: var(--white);
}

/* PAST SHOWS STYLING */
.show-card.past .show-title {
  color: var(--text-secondary);
}

.show-card.past .detail-item .text {
  color: var(--text-secondary);
}

.show-card.past .detail-item .icon {
  opacity: 0.7;
}

/* ===================================
   YEAR SECTIONS (PAST SHOWS) - UNIEKE STYLING
   =================================== */

.year-section {
  margin-bottom: 3rem;
}

.year-header {
  background: var(--gold-gradient);
  color: var(--white);
  padding: 1.5rem 2rem;
  border-radius: 15px;
  border: 2px solid var(--gold-bright);
  cursor: pointer;
  transition: all 0.3s ease;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.year-header:hover {
  background: var(--celebration-gradient);
  border-color: var(--jubilee-gold);
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.4);
  transform: translateY(-2px);
}

.year-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.year-toggle {
  font-size: 1.3rem;
  color: var(--bordeaux-warm);
  transition: transform 0.3s ease;
  font-weight: 900;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.year-icon {
  font-size: 1.4rem;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.year-count {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 600;
  margin-left: auto;
  background: rgba(255, 255, 255, 0.15);
  padding: 0.25rem 0.75rem;
  border-radius: 20px;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

.year-content {
  padding-left: 1rem;
  border-left: 4px solid var(--gold-warm);
  margin-left: 1rem;
  background: linear-gradient(90deg, rgba(218, 165, 32, 0.05) 0%, transparent 100%);
  border-radius: 0 15px 15px 0;
}

/* ===================================
   NO SHOWS MESSAGE - UNIEKE STYLING
   =================================== */

.no-shows-message {
  text-align: center;
  padding: 4rem 2rem;
  background: var(--bg-secondary);
  border-radius: 20px;
  border: 1px solid var(--border-color);
}

.no-shows-content {
  max-width: 500px;
  margin: 0 auto;
}

.no-shows-icon {
  font-size: 4rem;
  margin-bottom: 2rem;
  color: var(--text-secondary);
}

.no-shows-content h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

.no-shows-content p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  margin-bottom: 2rem;
}

.no-shows-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* ===================================
   STATISTICS TAB - KRACHTIGE LAYOUT
   =================================== */

.stats-overview {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 0;
}

.main-stat-card {
  text-align: center;
  background: var(--gold-gradient);
  color: var(--white);
  padding: 4rem 3rem;
  border-radius: 30px;
  margin-bottom: 4rem;
  position: relative;
  overflow: hidden;
  box-shadow: 0 25px 50px rgba(218, 165, 32, 0.5);
  border: 4px solid var(--jubilee-gold);
}

.main-stat-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  animation: shimmerSweep 5s infinite;
}

@keyframes shimmerSweep {
  0% { transform: translateX(-100%) rotate(45deg); }
  100% { transform: translateX(100%) rotate(45deg); }
}

.main-stat-icon {
  font-size: 5rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.4));
  animation: bounce 4s infinite;
  color: var(--white);
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.main-stat-number {
  font-size: clamp(5rem, 12vw, 8rem);
  font-weight: 900;
  line-height: 1;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.6);
}

.main-stat-label {
  font-size: clamp(1.5rem, 4vw, 2.2rem);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  color: var(--white);
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.5);
}

.main-stat-subtitle {
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  font-weight: 600;
  font-style: italic;
  position: relative;
  z-index: 2;
  color: rgba(255, 255, 255, 0.95);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
}

.supporting-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 4rem;
}

.support-stat {
  text-align: center;
  background: var(--white);
  padding: 3rem 2rem;
  border-radius: 25px;
  border: 3px solid var(--gold-warm);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
}

.support-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(218, 165, 32, 0.15), transparent);
  transition: left 0.6s ease;
}

.support-stat:hover::before {
  left: 100%;
}

.support-stat:hover {
  border-color: var(--jubilee-gold);
  box-shadow: 0 15px 40px rgba(218, 165, 32, 0.4);
  transform: translateY(-8px) scale(1.05);
  background: var(--white);
}

.support-icon {
  font-size: 4rem;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.support-number {
  display: block;
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 900;
  color: var(--gold-warm);
  line-height: 1;
  margin-bottom: 1rem;
  position: relative;
  z-index: 2;
  text-shadow: 0 3px 6px rgba(218, 165, 32, 0.3);
}

.support-label {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  font-weight: 800;
  color: var(--text-primary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

.stats-highlights {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.highlight-card {
  background: var(--white);
  padding: 3rem 2.5rem;
  border-radius: 25px;
  border: 3px solid var(--bordeaux-warm);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(125, 44, 64, 0.2);
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(125, 44, 64, 0.1), transparent);
  transition: left 0.6s ease;
}

.highlight-card:hover::before {
  left: 100%;
}

.highlight-card:hover {
  border-color: var(--bordeaux-deep);
  box-shadow: 0 15px 40px rgba(125, 44, 64, 0.3);
  transform: translateY(-8px) scale(1.02);
  background: var(--white);
}

.highlight-card h3 {
  font-size: clamp(1.4rem, 3.5vw, 1.7rem);
  font-weight: 900;
  color: var(--bordeaux-warm);
  margin-bottom: 1.5rem;
  line-height: 1.3;
  position: relative;
  z-index: 2;
}

.highlight-card p {
  font-size: clamp(1.05rem, 2.5vw, 1.2rem);
  line-height: 1.7;
  color: var(--text-primary);
  margin: 0;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.highlight-card a {
  color: var(--bordeaux-warm);
  text-decoration: none;
  font-weight: 800;
  transition: color 0.3s ease;
}

.highlight-card a:hover {
  color: var(--bordeaux-deep);
  text-decoration: underline;
}

/* ===================================
   BOTTOM CTA SECTION - GLASMORPHISM EFFECT
   =================================== */

.shows-bottom-cta {
  background: var(--celebration-gradient);
  color: var(--white);
  padding: 6rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-top: 4px solid var(--gold-bright);
}

.shows-bottom-cta::before {
  content: '🎪🎵🎉✨🎊🎸🥁🎹';
  position: absolute;
  top: 10%;
  left: 5%;
  font-size: 4rem;
  opacity: 0.15;
  animation: floatRandom1 12s ease-in-out infinite;
  z-index: 1;
}

.shows-bottom-cta::after {
  content: '🎸🥁🎹🎪🎵🎉';
  position: absolute;
  bottom: 10%;
  right: 5%;
  font-size: 3.5rem;
  opacity: 0.18;
  animation: floatRandom2 14s ease-in-out infinite reverse;
  z-index: 1;
}

@keyframes floatRandom1 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  33% { transform: translateY(-25px) rotate(8deg); }
  66% { transform: translateY(15px) rotate(-5deg); }
}

@keyframes floatRandom2 {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(10deg); }
}

.cta-content {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  padding: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 30px;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.1);
}

.cta-content h2 {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 900;
  margin-bottom: 2rem;
  text-shadow: 0 6px 12px rgba(0, 0, 0, 0.4);
  background: linear-gradient(135deg, var(--white) 0%, var(--jubilee-gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-content > p {
  font-size: clamp(1.2rem, 3vw, 1.6rem);
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.95;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-weight: 500;
}

/* UNIVERSELE BUTTONS WORDEN GEBRUIKT - GEEN EIGEN CTA-BUTTONS STYLING */

.cta-subtext {
  font-size: 1.1rem;
  opacity: 0.85;
  margin-top: 2rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.cta-subtext a {
  color: var(--jubilee-gold);
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s ease;
}

.cta-subtext a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* ===================================
   MOBIELE OPTIMALISATIES - VOLLEDIG RESPONSIVE
   =================================== */

@media (max-width: 1024px) {
  .shows-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .supporting-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stats-highlights {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1.5rem;
  }
  
  .shows-tabs {
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.75rem;
  }
  
  .shows-tabs .tab-btn {
    padding: 1rem 1.5rem;
    justify-content: center;
  }
  
  .shows-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .show-card {
    width: 100%;
    max-width: 350px;
    margin: 0 auto;
    padding: 0.875rem;
    min-height: 160px;
    height: auto;
    border-radius: 16px;
  }
  
  .show-card:hover {
    transform: translateY(-5px) scale(1.01);
  }
  
  .show-card.featured {
    min-height: 180px;
    height: auto;
    padding: 0.875rem;
  }
  
  .show-card .show-title {
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    line-height: 1.1;
    text-align: center;
    min-height: 3.38rem;
  }
  
  .show-card .show-info {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
    margin-bottom: 0.5rem;
    flex-direction: row;
  }
  
  .show-card .show-date {
    width: 60px;
    height: 60px;
    min-width: 60px;
    flex-direction: column;
    justify-content: center;
    padding: 0.5rem;
  }
  
  .show-card .show-date .day {
    font-size: 1.1rem;
    margin-bottom: 0.125rem;
  }
  
  .show-card .show-date .month {
    font-size: 0.7rem;
  }
  
  .show-card .detail-item {
    margin-bottom: 0.25rem;
    font-size: 0.8rem;
    justify-content: flex-start;
  }
  
  .show-card .detail-item .icon {
    font-size: 0.9rem;
    width: 16px;
  }
  
  .show-card .show-action {
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    gap: 0.5rem;
    min-height: auto;
    flex-direction: column;
  }
  
  .show-card .show-btn {
    min-width: auto;
    width: 100%;
    min-height: 32px;
    font-size: 0.75rem;
    padding: 0.375rem 0.75rem;
  }
  
  .year-header {
    padding: 1.25rem 1.5rem;
  }
  
  .year-title {
    font-size: 1.3rem;
    gap: 0.75rem;
  }
  
  .year-count {
    font-size: 0.9rem;
  }
  
  .main-stat-card {
    padding: 4rem 2rem;
  }
  
  .main-stat-icon {
    font-size: 4rem;
  }
  
  .main-stat-label {
    font-size: 1.8rem;
    letter-spacing: 2px;
  }
  
  .supporting-stats {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .support-stat {
    padding: 2.5rem 1.5rem;
  }
  
  .support-icon {
    font-size: 3rem;
  }
  
  .support-number {
    font-size: 3rem;
  }
  
  .stats-highlights {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .highlight-card {
    padding: 2.5rem 2rem;
  }
  
  .highlight-card h3 {
    font-size: 1.4rem;
  }
  
  .highlight-card p {
    font-size: 1.05rem;
  }
  
  .shows-bottom-cta {
    padding: 5rem 0;
  }
  
  .cta-content {
    padding: 1.5rem;
  }
  
  /* UNIVERSELE BUTTONS WORDEN GEBRUIKT IN BOTTOM CTA */
}

@media (max-width: 480px) {
  .container {
    padding: 0 1rem;
  }
  
  .shows-tabs {
    padding: 0.5rem;
  }
  
  .shows-tabs .tab-btn {
    padding: 0.875rem 1rem;
    font-size: 0.9rem;
  }
  
  .tab-icon {
    font-size: 1rem;
  }
  
  .show-card {
    max-width: 320px;
    padding: 0.75rem;
    min-height: 150px;
  }
  
  .show-card.featured {
    margin-top: 1.5rem;
    padding: 0.75rem;
    min-height: 150px;
  }
  
  .show-card .show-title {
    font-size: 0.9rem;
    min-height: 3.12rem;
    margin-bottom: 1.25rem;
  }
  
  .show-card .show-date {
    min-width: 60px;
    padding: 0.75rem;
  }
  
  .show-card .show-date .day {
    font-size: 1.5rem;
  }
  
  .show-card .show-date .month {
    font-size: 0.75rem;
  }
  
  .show-card .detail-item {
    gap: 0.5rem;
    font-size: 0.9rem;
  }
  
  .show-card .detail-item .icon {
    font-size: 1rem;
    width: 18px;
  }
  
  .show-card .show-btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.85rem;
  }
  
  .year-header {
    padding: 1rem 1.25rem;
  }
  
  .year-title {
    font-size: 1.2rem;
    gap: 0.5rem;
  }
  
  .year-icon {
    font-size: 1.1rem;
  }
  
  .year-count {
    font-size: 0.85rem;
  }
  
  .year-content {
    padding-left: 0.75rem;
    margin-left: 0.75rem;
  }
  
  .no-shows-message {
    padding: 3rem 1.5rem;
  }
  
  .no-shows-icon {
    font-size: 3rem;
  }
  
  .no-shows-content h3 {
    font-size: 1.5rem;
  }
  
  .no-shows-content p {
    font-size: 1rem;
  }
  
  .no-shows-buttons {
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }
  
  .main-stat-card {
    padding: 3rem 1.5rem;
  }
  
  .main-stat-icon {
    font-size: 3.5rem;
  }
  
  .main-stat-label {
    font-size: 1.5rem;
    letter-spacing: 1px;
  }
  
  .main-stat-subtitle {
    font-size: 1.1rem;
  }
  
  .support-stat {
    padding: 2rem 1.5rem;
  }
  
  .support-icon {
    font-size: 2.5rem;
  }
  
  .support-number {
    font-size: 2.5rem;
  }
  
  .support-label {
    font-size: 0.9rem;
  }
  
  .highlight-card {
    padding: 2rem 1.5rem;
  }
  
  .highlight-card h3 {
    font-size: 1.3rem;
  }
  
  .highlight-card p {
    font-size: 1rem;
  }
  
  .shows-bottom-cta {
    padding: 4rem 0;
  }
  
  .cta-content {
    padding: 1.5rem;
  }
  
  .cta-subtext {
    font-size: 1rem;
  }
}

@media (max-width: 360px) {
  .container {
    padding: 0 0.75rem;
  }
  
  .show-card {
    padding: 1rem;
  }
  
  .show-card .show-title {
    font-size: 1.1rem;
    min-height: 2.86rem;
  }
  
  .show-card .show-date {
    min-width: 55px;
    padding: 0.5rem;
  }
  
  .show-card .show-date .day {
    font-size: 1.3rem;
  }
  
  .show-card .show-date .month {
    font-size: 0.7rem;
  }
  
  .show-card .show-btn {
    padding: 0.75rem 1rem;
    font-size: 0.8rem;
  }
  
  .year-header {
    padding: 0.875rem 1rem;
  }
  
  .year-title {
    font-size: 1.1rem;
  }
  
  .main-stat-card {
    padding: 2.5rem 1rem;
  }
  
  .support-stat {
    padding: 1.5rem 1rem;
  }
  
  .highlight-card {
    padding: 1.5rem 1rem;
  }
}

/* ===================================
   ACCESSIBILITY & PERFORMANCE
   =================================== */

.shows-tabs .tab-btn:focus,
.show-card .show-btn:focus,
.year-header:focus {
  outline: 3px solid var(--gold-warm);
  outline-offset: 2px;
}

@media (max-width: 768px) {
  .shows-tabs .tab-btn:focus,
  .show-card .show-btn:focus,
  .year-header:focus {
    outline: 4px solid var(--gold-warm);
    outline-offset: 3px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-stat-card::before,
  .shows-bottom-cta::before,
  .shows-bottom-cta::after,
  .support-stat::before,
  .highlight-card::before {
    animation: none;
  }
  
  .main-stat-icon {
    animation: none;
  }
  
  .show-card,
  .support-stat,
  .highlight-card {
    transition: none;
  }
  
  .show-card:hover,
  .support-stat:hover,
  .highlight-card:hover {
    transform: none;
  }
}

@media (prefers-contrast: high) {
  .show-card .show-btn.primary {
    background: var(--black);
    color: var(--white);
    border: 2px solid var(--white);
  }
  
  .show-card .show-btn.secondary {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
  }
  
  .show-card,
  .support-stat,
  .highlight-card {
    border: 2px solid var(--text-primary);
  }
  
  .show-card.featured {
    border: 3px solid var(--gold-bright);
    background: var(--black);
    color: var(--white);
  }
  
  .shows-tabs .tab-btn {
    border: 2px solid var(--text-primary);
  }
  
  .shows-tabs .tab-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--white);
  }
}

@media print {
  .main-stat-card::before,
  .shows-bottom-cta::before,
  .shows-bottom-cta::after,
  .support-stat::before,
  .highlight-card::before {
    display: none;
  }
  
  .shows-bottom-cta {
    background: var(--white);
    color: var(--black);
  }
  
  .shows-tabs,
  .show-card .show-action {
    display: none;
  }
  
  .shows-tab-content {
    display: block;
  }
  
  .show-card {
    page-break-inside: avoid;
    border: 2px solid var(--black);
    background: var(--white);
  }
  
  .show-card.featured::before {
    color: var(--black);
    background: var(--light-grey);
  }
}

/* ===================================
   JAVASCRIPT SUPPORT CLASSES
   =================================== */

.js-tab-active .shows-tab-content {
  display: block;
  animation: fadeInUp 0.5s ease;
}

.js-year-expanded .year-toggle {
  transform: rotate(180deg);
}

.js-year-collapsed .year-content {
  display: none;
}

.js-loading .shows-grid {
  opacity: 0.5;
  pointer-events: none;
}

.js-loaded .shows-grid {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s ease;
}

/* ===================================
   UTILITY CLASSES
   =================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }

.hidden { display: none; }
.visible { display: block; }

@media (max-width: 768px) {
  .mobile-hidden { display: none; }
  .mobile-visible { display: block; }
  .mobile-center { text-align: center; }
  .mobile-full-width { width: 100%; }
  .mobile-stack { flex-direction: column; }
  .mobile-no-gap { gap: 0; }
  .mobile-small-gap { gap: 0.5rem; }
}

/* ===================================
   BROWSER COMPATIBILITY FALLBACKS
   =================================== */

@supports not (display: grid) {
  .shows-grid {
    display: flex;
    flex-wrap: wrap;
  }
  
  .show-card {
    flex: 1 1 300px;
    margin: 1rem;
  }
  
  .supporting-stats {
    display: flex;
    flex-wrap: wrap;
  }
  
  .support-stat {
    flex: 1 1 250px;
    margin: 0.5rem;
  }
}

@supports not (display: flex) {
  .show-card .show-info,
  .show-card .show-action {
    display: block;
  }
  
  .show-card .show-info > *,
  .show-card .show-action > * {
    display: block;
    margin-bottom: 1rem;
  }
}

@supports not (backdrop-filter: blur(10px)) {
  .shows-tabs .tab-btn,
  .cta-content {
    background: rgba(255, 255, 255, 0.95);
  }
  
  @media (prefers-color-scheme: dark) {
    .shows-tabs .tab-btn,
    .cta-content {
      background: rgba(26, 26, 26, 0.95);
    }
  }
}

@supports not (background-clip: text) {
  .main-stat-number,
  .cta-content h2 {
    background: none;
    color: var(--gold-warm);
  }
}

@supports not (color: var(--gold-warm)) {
  .show-card .show-btn.primary {
    background: #DAA520;
  }
  
  .show-card .show-btn.secondary {
    border-color: #DAA520;
    color: #DAA520;
  }
  
  .show-card .show-date {
    background: #DAA520;
  }
  
  .show-card .show-date.past-date {
    background: #7D2C40;
  }
  
  .shows-tabs .tab-btn.active {
    background: #DAA520;
  }
}

/* ===================================
   PERFORMANCE OPTIMIZATIONS
   =================================== */

.show-card,
.support-stat,
.highlight-card {
  will-change: transform;
}

.show-card:hover,
.support-stat:hover,
.highlight-card:hover {
  will-change: auto;
}

.main-stat-card::before,
.shows-bottom-cta::before,
.shows-bottom-cta::after {
  will-change: transform;
}

.show-card,
.support-stat,
.highlight-card,
.shows-tabs .tab-btn {
  transform: translateZ(0);
  backface-visibility: hidden;
}

.show-card img[data-src] {
  opacity: 0;
  transition: opacity 0.3s ease;
}

.show-card img[data-src].loaded {
  opacity: 1;
}

/* ===================================
   DARK MODE SUPPORT
   =================================== */

@media (prefers-color-scheme: dark) {
  .show-card {
    background: rgba(42, 42, 42, 0.95) !important;
    color: var(--white) !important;
    border: 1px solid #404040 !important;
  }
  
  .show-card:hover {
    background: rgba(50, 50, 50, 0.98) !important;
    border-color: var(--gold-warm) !important;
  }
  
  .show-card .show-title {
    color: var(--white) !important;
  }
  
  .show-card .detail-item .text {
    color: #e0e0e0 !important;
  }
  
  .show-card.past {
    background: rgba(35, 35, 35, 0.9) !important;
    border-color: var(--bordeaux-warm) !important;
  }
  
  .show-card.past .show-title {
    color: #b0b0b0 !important;
  }
  
  .show-card.past .detail .item .text {
    color: #a0a0a0 !important;
  }
  
  .shows-tabs-section {
    background: var(--dark-grey) !important;
  }
  
  .shows-tabs {
    background: rgba(42, 42, 42, 0.8) !important;
    border: 1px solid #404040 !important;
  }
  
  .shows-tabs .tab-btn {
    color: #e0e0e0 !important;
  }
  
  .shows-tabs .tab-btn:hover {
    background: rgba(218, 165, 32, 0.2) !important;
  }
}

/* CLASS-BASED DARK MODE ONDERSTEUNING */
[data-theme="dark"] .show-card,
.dark .show-card {
  background: rgba(42, 42, 42, 0.95) !important;
  color: var(--white) !important;
  border: 1px solid #404040 !important;
}

[data-theme="dark"] .show-card .show-title,
.dark .show-card .show-title {
  color: var(--white) !important;
}

[data-theme="dark"] .show-card .detail-item .text,
.dark .show-card .detail-item .text {
  color: #e0e0e0 !important;
}

[data-theme="dark"] .shows-tabs-section,
.dark .shows-tabs-section {
  background: var(--dark-grey) !important;
}

/* ===================================
   EINDE SHOWS.CSS - UNIVERSELE HERO V3
   Versie: 2025.6 - Opgeschoond & Modulair
   =================================== */

/* 
====================================
FAUTE BENDT SHOWS.CSS - UNIVERSELE HERO INTEGRATION
Versie: 2025.6 - Opgeschoond & Modulair
Auteur: Penn (Copywriter AI)
Datum: Augustus 2025
Voor: Joeri De Decker - Faute Bendt
====================================

Shows pagina styling - HERO VERWIJDERD (komt uit hero.css)

✅ HERO REFACTOR VOLTOOID:
- Alle oude hero styling (.shows-hero-fullwidth) VERWIJDERD
- Hero komt nu uit universele hero.css
- Alleen shows-specifieke content styling behouden
- Veel schonere en onderhoudbaarere CSS

✅ BEHOUDEN FEATURES:
- Interactieve tabs (komende, vorige, statistieken)
- Show cards identiek aan homepage styling
- Featured show styling met gouden gradient
- Past shows met bordeaux styling
- Spectaculaire statistieken sectie
- Glasmorphism bottom CTA (gebruikt universele buttons)
- Year sections met klapbare content
- No shows message met call-to-action
- Volledig responsive design
- Touch-friendly interface
- Accessibility compliant
- Performance geoptimaliseerd
- Cross-browser compatible
- Dark mode support

RESULTAAT:
- Hero styling: universeel via hero.css
- Shows content: specifiek via shows.css
- Bottom CTA: gebruikt universele buttons uit hero.css
- Consistente look met andere pagina's
- Veel schonere codebase

Perfect! Nu is je shows pagina volledig geïntegreerd 
met de universele hero component én gebruikt universele buttons! 🎪

"We will give there a lap on!!" 🎵
*/


