/* ONSITE RECORDS - BLACK & RED ONLY DESIGN */
/* NO PINK, NO MAGENTA - PURE RED & BLACK */

:root {
  /* ONLY BLACK AND RED - NO OTHER COLORS */
  --primary: #FF0000;
  --primary-dark: #CC0000;
  --primary-bright: #FF3333;
  --black: #000000;
  --dark: #0A0A0A;
  --gray-dark: #1A1A1A;
  --gray: #2A2A2A;
  --white: #FFFFFF;
  --text-gray: #888888;
  
  /* Gradients - RED ONLY */
  --red-gradient: linear-gradient(135deg, #FF0000, #CC0000);
  --black-gradient: linear-gradient(180deg, #000000 0%, #1A1A1A 100%);
  
  /* Remove ALL pink/magenta references */
  --accent-gradient: linear-gradient(135deg, #FF0000, #CC0000, #990000);
}

/* Override any pink colors */
.gallery-artist[style*="FF0080"],
.gallery-artist[style*="FF00FF"],
.gallery-artist[style*="FF0040"] {
  color: #FF0000 !important;
}

/* Hero Slide - Minimalist Design */
.hero-slide-minimal {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000000;
  position: relative;
  overflow: hidden;
}

.hero-slide-minimal::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 50% 50%, rgba(255,0,0,0.05) 0%, transparent 50%);
  animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 0.8; }
}

.hero-minimal-content {
  text-align: center;
  z-index: 1;
  position: relative;
}

.hero-minimal-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: #FF0000;
  margin: 0;
  padding: 0;
  line-height: 0.9;
}

.hero-minimal-subtitle {
  font-size: 1rem;
  color: #FF0000;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  margin-top: 1rem;
  font-weight: 400;
}

.hero-minimal-line {
  width: 100px;
  height: 2px;
  background: #FF0000;
  margin: 2rem auto;
  animation: expand-line 2s ease-out forwards;
}

@keyframes expand-line {
  from { width: 0; }
  to { width: 100px; }
}

/* Events List Design */
.events-list {
  max-width: 900px;
  margin: 0 auto;
}

.event-list-item {
  display: flex;
  align-items: center;
  padding: 1.5rem 0;
  border-bottom: 1px solid #2A2A2A;
  transition: all 0.3s ease;
  cursor: pointer;
}

.event-list-item:hover {
  padding-left: 1rem;
  border-bottom-color: #FF0000;
}

.event-list-date {
  min-width: 80px;
  font-weight: 700;
  color: #FF0000;
  font-size: 1.1rem;
}

.event-list-content {
  flex: 1;
  padding: 0 2rem;
}

.event-list-title {
  font-size: 1.3rem;
  font-weight: 600;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.event-list-venue {
  font-size: 0.9rem;
  color: #888888;
}

.event-list-cta {
  color: #FF0000;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
}

.event-list-cta::after {
  content: '→';
  margin-left: 0.5rem;
  display: inline-block;
  transition: transform 0.3s ease;
}

.event-list-item:hover .event-list-cta::after {
  transform: translateX(5px);
}

/* Language Switcher - Fixed */
.language-toggle {
  position: fixed;
  top: 100px;
  right: 30px;
  z-index: 1001;
  background: #1A1A1A;
  border: 2px solid #FF0000;
  border-radius: 30px;
  padding: 0;
  overflow: hidden;
  display: flex;
}

.lang-btn {
  padding: 8px 16px;
  background: transparent;
  color: #FFFFFF;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  outline: none;
}

.lang-btn.active {
  background: #FF0000;
  color: #000000;
}

.lang-btn:hover:not(.active) {
  background: #2A2A2A;
}

/* Remove all #FF0080 and #FF00FF colors */
[style*="FF0080"] {
  color: #FF0000 !important;
  border-color: #FF0000 !important;
  stroke: #FF0000 !important;
}

[style*="FF00FF"] {
  color: #FF0000 !important;
  border-color: #FF0000 !important;
  stroke: #FF0000 !important;
}

/* Artist Cards - Pure Red */
.artist-indicator {
  width: 10px;
  height: 10px;
  background: #FF0000;
  border-radius: 50%;
  display: inline-block;
  margin-right: 0.5rem;
  animation: pulse-red 2s infinite;
}

@keyframes pulse-red {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(1.2); }
}

/* What's Missing - Improvements */

/* 1. Social Media Bar */
.social-bar {
  position: fixed;
  left: 30px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.social-icon {
  width: 40px;
  height: 40px;
  border: 1px solid #FF0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FF0000;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #FF0000;
  color: #000000;
  transform: scale(1.1);
}

/* 2. Newsletter Signup */
.newsletter-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #1A1A1A;
  border: 2px solid #FF0000;
  padding: 1rem;
  border-radius: 10px;
  z-index: 100;
}

.newsletter-input {
  background: #000000;
  border: 1px solid #2A2A2A;
  color: #FFFFFF;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  margin-right: 0.5rem;
}

.newsletter-btn {
  background: #FF0000;
  color: #000000;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  font-weight: 600;
  cursor: pointer;
}

/* 3. Music Player Widget */
.music-widget {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  background: #0A0A0A;
  border-top: 1px solid #FF0000;
  display: flex;
  align-items: center;
  padding: 0 2rem;
  z-index: 500;
  transform: translateY(60px);
  transition: transform 0.3s ease;
}

.music-widget.active {
  transform: translateY(0);
}

.music-widget-play {
  width: 40px;
  height: 40px;
  background: #FF0000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  margin-right: 1rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .hero-minimal-title {
    font-size: 3rem;
  }
  
  .event-list-item {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.5rem;
  }
  
  .event-list-date {
    margin-bottom: 0.5rem;
  }
  
  .language-toggle {
    bottom: 20px;
    top: auto;
    right: 20px;
  }
  
  .social-bar {
    display: none;
  }
}