/* ===== BLIJFT IN NON-CRITICAL.CSS ===== */

/* ANIMATIES & SPECIAL EFFECTS */
@keyframes tabGlow {
  0% { box-shadow: var(--gold-shadow); }
  100% { box-shadow: 0 4px 30px rgba(218, 165, 32, 0.6); }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shimmerSweep {
  0% {
    opacity: 0;
    transform: translateX(-100%) translateY(-100%) rotate(45deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateX(100%) translateY(100%) rotate(45deg);
  }
}

@keyframes featuredPulse {
  0%, 100% {
    box-shadow: 0 0 0 0 rgba(218, 165, 32, 0.7);
  }
  50% {
    box-shadow: 0 0 0 20px rgba(218, 165, 32, 0);
  }
}

@keyframes countdownBeat {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

@keyframes nextShowGlow {
  0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.5); }
  100% { text-shadow: 0 0 20px rgba(255, 255, 255, 0.8); }
}

@keyframes buttonBounce {
  0%, 100% { transform: translateY(-3px); }
  50% { transform: translateY(-5px); }
}

@keyframes rotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes indicatorPulse {
  0%, 100% {
    box-shadow: var(--gold-shadow);
  }
  50% {
    box-shadow: 0 0 0 8px rgba(218, 165, 32, 0.2);
  }
}

@keyframes socialFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* HOVER EFFECTS & ADVANCED STYLING */
.tab-btn.active {
  animation: tabGlow 2s infinite alternate;
}

.shows-tab-content {
  animation: fadeInUp 0.5s ease;
}

.show-card.featured {
  animation: featuredPulse 3s 1;
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
}
}

.countdown-item {
  animation: countdownBeat 2s 1;
}

.next-show-label {
  animation: nextShowGlow 2s infinite alternate;
}

.show-btn.primary:hover {
  animation: buttonBounce 0.6s ease;
}

/* YEAR SECTIONS - INKLAPBAAR */
.year-section {
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.year-header {
  padding: 1.5rem 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.year-header:hover {
  background: rgba(218, 165, 32, 0.2);
}

.year-title {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
}

.year-toggle {
  font-size: 1.2rem;
  transition: transform 0.3s ease;
  color: var(--gold-bright);
}

.year-content {
  padding: 2rem;
  transition: all 0.3s ease;
}

/* STATS OVERVIEW - COMPLEX ANIMATIES */
.stats-overview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.main-stat-card-inverse {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text-primary);
  padding: 3rem 2rem;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.main-stat-card-inverse::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: conic-gradient(
    from 0deg,
    transparent,
    var(--gold-bright),
    transparent
  );
  animation: rotate 4s linear infinite;
  opacity: 0.1;
}

.main-stat-icon {
  font-size: 4rem;
  margin-bottom: 1rem;
  animation: bounce 3s infinite;
}

.main-stat-number {
  font-size: 4rem;
  font-weight: 900;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.main-stat-label {
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.main-stat-subtitle {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-style: italic;
}

/* SUPPORTING STATS */
.supporting-stats {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-stat {
  background: rgba(255, 255, 255, 0.1);
  padding: 1.5rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 1rem;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.support-stat:hover {
  background: rgba(218, 165, 32, 0.2);
  transform: translateX(10px);
}

.support-icon {
  font-size: 2rem;
  animation: float 3s ease-in-out infinite;
}

.support-stat:nth-child(2) .support-icon {
  animation-delay: 1s;
}

.support-stat:nth-child(3) .support-icon {
  animation-delay: 2s;
}

.support-number {
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-bright);
  margin-right: 0.5rem;
}

.support-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* STATS HIGHLIGHTS */
.stats-highlights {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.1);
  padding: 2rem;
  border-radius: 16px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.highlight-card:hover {
  background: rgba(218, 165, 32, 0.2);
  transform: translateY(-5px);
  border-color: var(--gold-bright);
}

.highlight-card h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: var(--white);
}

.highlight-card p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
}

.highlight-card a {
  color: var(--gold-bright);
  text-decoration: none;
  font-weight: 600;
}

.highlight-card a:hover {
  color: var(--white);
  text-decoration: underline;
}

/* SVG ACHTERGRONDEN & COMPLEXE EFFECTEN */
.social-bg-svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120px;
  height: 120px;
  opacity: 0.2;
  transition: all 0.4s ease;
}

/* Facebook SVG */
.social-card-large.facebook .social-bg-svg {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M24 12.073c0-6.627-5.373-12-12-12s-12 5.373-12 12c0 5.99 4.388 10.954 10.125 11.854v-8.385H7.078v-3.47h3.047V9.43c0-3.007 1.792-4.669 4.533-4.669 1.312 0 2.686.235 2.686.235v2.953H15.83c-1.491 0-1.956.925-1.956 1.874v2.25h3.328l-.532 3.47h-2.796v8.385C19.612 23.027 24 18.062 24 12.073z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Instagram SVG */
.social-card-large.instagram .social-bg-svg {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.40s-.644-1.44-1.439-1.40z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* YouTube SVG */
.social-card-large.youtube .social-bg-svg {
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'%3E%3Cpath d='M23.498 6.186a3.016 3.016 0 0 0-2.122-2.136C19.505 3.545 12 3.545 12 3.545s-7.505 0-9.377.505A3.017 3.017 0 0 0 .502 6.186C0 8.07 0 12 0 12s0 3.93.502 5.814a3.016 3.016 0 0 0 2.122 2.136c1.871.505 9.376.505 9.376.505s7.505 0 9.377-.505a3.015 3.015 0 0 0 2.122-2.136C24 15.93 24 12 24 12s0-3.93-.502-5.814zM9.545 15.568V8.432L15.818 12l-6.273 3.568z'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

/* Bandsintown SVG */
.social-card-large.bandsintown .social-bg-svg {
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 500 500' fill='white' xmlns='http://www.w3.org/2000/svg'%3E%3Crect x='173.91' y='152.17' width='65.22' height='86.96'/%3E%3Crect x='260.87' y='152.17' width='65.22' height='86.96'/%3E%3Crect x='347.83' y='86.96' width='65.22' height='152.17'/%3E%3Cpolygon points='173.91 260.87 173.91 326.09 347.83 326.09 347.83 347.83 152.17 347.83 152.17 86.96 86.96 86.96 86.96 413.04 413.04 413.04 413.04 260.87 173.91 260.87'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}

.social-card-large:hover .social-bg-svg {
  opacity: 0.4;
  transform: translate(-50%, -50%) scale(1.2) rotate(10deg);
}

/* SOCIAL EMOJI ANIMATIES */
.social-emoji {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  display: block;
  animation: socialFloat 3s ease-in-out infinite;
}

.social-card-large.instagram .social-emoji {
  animation-delay: 0.5s;
}

.social-card-large.youtube .social-emoji {
  animation-delay: 1s;
}

.social-card-large.bandsintown .social-emoji {
  animation-delay: 1.5s;
}

/* CONTACT STORY ANIMATIES */
.contact-story::before {
  content: '🎪';
  position: absolute;
  top: -20px;
  right: -20px;
  font-size: 4rem;
  opacity: 0.1;
  animation: rotate 20s linear infinite;
}

/* CTA SECTIONS - BASIS STYLING */
.cta-content {
  max-width: 600px;
  margin: 0 auto;
}

.cta-title {
  font-size: 2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

/* SHOWS BOTTOM CTA */
.shows-bottom-cta {
  background: var(--bg-primary);
  padding: 4rem 0;
  text-align: center;
}

.shows-bottom-cta .cta-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 2rem;
}

.shows-bottom-cta h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 1rem;
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.shows-bottom-cta p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.shows-bottom-cta .cta-buttons {
  margin-bottom: 1.5rem;
}

.shows-bottom-cta .cta-subtext {
  font-size: 0.95rem;
  color: var(--text-secondary);
}

.shows-bottom-cta .cta-subtext a {
  color: var(--gold-warm);
  text-decoration: none;
  font-weight: 600;
}

.shows-bottom-cta .cta-subtext a:hover {
  color: var(--gold-bright);
  text-decoration: underline;
}

/* PERFORMANCE OPTIMALISATIES */
.shows-section-fullwidth {
  will-change: transform;
}

.show-card {
  will-change: transform;
}

.testimonial-card {
  will-change: transform;
}

.social-card-large {
  will-change: transform;
}

/* REDUCED MOTION SUPPORT */
@media (prefers-reduced-motion: reduce) {
  .show-card::before,
  .main-stat-card-inverse::before {
    animation: none;
  }
  
  .countdown-item,
  .social-emoji,
  .member-emoji {
    animation: none;
  }
  
  .testimonial-slide {
    animation: none;
  }
  
  .indicator.active {
    animation: none;
  }
  
  .tab-btn.active {
    animation: none;
  }
  
  .featured.show-card {
    animation: none;
  }
  
  .next-show-label {
    animation: none;
  }
}

/* HIGH CONTRAST MODE */
@media (prefers-contrast: high) {
  .show-card {
    border: 2px solid var(--text-primary);
  }
  
  .show-card.featured {
    border: 3px solid var(--gold-bright);
    background: var(--black);
    color: var(--white);
  }
  
  .tab-btn {
    border: 2px solid var(--text-primary);
  }
  
  .tab-btn.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--white);
  }
  
  .social-card-large {
    border: 2px solid var(--text-primary);
  }
  
  .testimonial-card {
    border: 2px solid var(--text-primary);
  }
}

/* PRINT STYLES */
@media print {
  .shows-section-fullwidth::before {
    display: none;
  }
  
  .show-card,
  .testimonial-card,
  .social-card-large {
    background: var(--white) !important;
    color: var(--black) !important;
    border: 1px solid var(--black) !important;
    box-shadow: none !important;
    transform: none !important;
  }
  
  .countdown-timer,
  .carousel-indicators,
  .shows-tabs {
    display: none;
  }
  
  .testimonial-slide {
    display: grid !important;
    page-break-inside: avoid;
  }
  
  .social-follow-section-fullwidth,
  .contact-section-fullwidth {
    background: var(--white) !important;
  }
  
  .cta-buttons {
    display: none;
  }
}

/* JAVASCRIPT SUPPORT CLASSES */
.js-tab-switching .shows-tab-content {
  transition: opacity 0.3s ease;
}

.js-carousel-active .testimonial-slide {
  transition: transform 0.5s ease;
}

.js-countdown-active .countdown-item {
  animation: countdownBeat 2s infinite;
}

/* FALLBACK VOOR OUDERE BROWSERS */
@supports not (backdrop-filter: blur(10px)) {
  .tab-btn,
  .show-card,
  .countdown-item,
  .support-stat,
  .highlight-card {
    background: rgba(255, 255, 255, 0.95);
  }
  
  @media (prefers-color-scheme: dark) {
    .tab-btn,
    .show-card,
    .countdown-item,
    .support-stat,
    .highlight-card {
      background: rgba(26, 26, 26, 0.95);
    }
  }
}

/* BROWSER SPECIFIC FIXES */
@-moz-document url-prefix() {
  .show-card::before {
    background: linear-gradient(45deg, transparent, rgba(218, 165, 32, 0.1), transparent);
  }
}

/* SAFARI SPECIFIC */
@supports (-webkit-appearance: none) {
  .social-card-large {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
  }
}