:root {
  --primary-color: rgba(254, 253, 56, 1);
  --primary-light: rgba(254, 253, 56, 0.1);
  --bg-color: #F4EAD5;
  --text-dark: #333;
  --text-muted: #666;
}

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

body {
  font-family: monospace !important;
  line-height: 1.6;
  color: var(--text-dark);
  background: #fff;
}

.container-fluid {
  width: 100%;
  padding: 0 15px;
  margin: 0 auto;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

/* Site navigation */
.site-nav {
  background: #000;
  padding: 12px 0;
  position: sticky;
  top: 0;
  z-index: 100;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 20px;
}

.site-nav .nav-brand {
  color: #fff;
  font-family: monospace;
  text-transform: uppercase;
  font-weight: bold;
  font-size: 0.95rem;
  text-decoration: none;
}

.site-nav .nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
}

.site-nav .nav-links a {
  color: #fff;
  font-family: monospace;
  text-transform: uppercase;
  font-size: 0.8rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.site-nav .nav-links a:hover,
.site-nav .nav-links a.active {
  color: var(--primary-color);
}

/* Don't leave a focus ring lingering after a mouse click, but keep a
   clean, visible focus indicator for keyboard navigation (accessibility). */
.site-nav a:focus {
  outline: none;
}

.site-nav a:focus-visible {
  outline: 2px solid var(--primary-color);
  outline-offset: 3px;
  border-radius: 2px;
}

/* Optimized animation container */
.hero-section {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  contain: layout style paint;
  align-content: center;
}

/* Glistening animation overlay */
.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(254, 253, 56, 0.08) 25%,
    rgba(254, 253, 56, 0.15) 50%,
    rgba(254, 253, 56, 0.08) 75%,
    transparent 100%
  );
  animation: glisten 6s ease-in-out;
  animation-fill-mode: forwards;
  pointer-events: none;
  z-index: 1;
}

@keyframes glisten {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Ensure content is above the animation */
.hero-section .container-fluid {
  position: relative;
  z-index: 2;
}

.hero-subtitle {
  font-size: 1.25rem;
  margin-bottom: 2rem;
  font-weight: 300;
}

.hero-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.hero-logo img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 991px) {
  .hero-logo {
    margin-bottom: 3rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
}

/* Skeleton loader for images */
.img-loader {
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

@keyframes loading {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

h1, h2, h3, h4, h5 {
  font-family: monospace;
  text-transform: uppercase;
}

section {
  padding: 80px 0;
}

.section-title {
  text-align: center;
  margin-bottom: 50px;
  font-size: 2rem;
  text-transform: uppercase;
  font-family: monospace;
}

.content-section {
  background: #fff;
  margin-bottom: 20px;
  border-radius: 8px;
  overflow: hidden;
}

/* Static group label (was a collapsible toggle button) */
.section-header {
  padding: 20px 30px;
  width: 100%;
  text-align: left;
  font-size: 1.2rem;
  font-family: monospace;
  text-transform: uppercase;
  background: #FFF;
  color: #000;
}

.section-content {
  padding: 35px;
  background: black;
  color: white;
}

/* Release cards */
.release-card {
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.release-card:last-child {
  border-bottom: none;
}

.artist-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 15px;
}

.artist-link {
  padding: 10px;
  text-decoration: none;
  color: white;
  font-family: monospace;
  text-transform: uppercase;
  font-size: 0.9rem;
  transition: background 0.3s ease;
}

.artist-link:hover {
  background: white;
  text-decoration: none;
}
.event-card {
  text-align: center;
  margin-bottom: 40px;
  padding-bottom: 40px;
}

.event-card img {
  max-height: 230px;
  width: auto;
  margin: 0 auto 20px;
  display: block;
}

.contact-section {
  background-image: url('lou.jpg');
  background-size: cover;
  background-position: center;
  min-height: 700px;
  position: relative;
}

.contact-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
a.artist-link:hover, a.btn-sm:hover {
  color: black !important;
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
  .hero-section::before {
    animation: none;
    left: 100%;
  }
}
