/* Basic Reset and Global Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Smooth scrolling optimizations */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', 'Roboto', sans-serif;
  color: var(--text-primary);
  background: var(--dark-bg);
  background-image: 
    radial-gradient(circle at 20% 80%, rgba(255, 45, 146, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
  line-height: 1.6;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: none;
  letter-spacing: 0.01em;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', 'Josefin Sans', sans-serif;
  margin-bottom: 1.2em;
  line-height: 1.1;
  font-weight: 700;
}

h1 {
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 0.9;
}

h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  text-align: center;
  margin-bottom: 3rem;
  font-weight: 800;
  background: var(--gradient-secondary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -0.02em;
  position: relative;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -1rem;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
  color: var(--text-primary);
  margin-bottom: 1rem;
}

a {
  color: #e74c3c; /* A consistent link color */
  text-decoration: none;
}
a:hover {
  color: #c0392b;
}

/* Modern Music Band Design Variables */
:root {
  --primary-color: #ff2d92;
  --secondary-color: #00d4ff;
  --accent-purple: #8b5cf6;
  --accent-orange: #f59e0b;
  --dark-bg: #0f0f0f;
  --card-bg: rgba(255, 255, 255, 0.03);
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  --text-primary: #ffffff;
  --text-secondary: #a0a0a0;
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-purple) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-orange) 100%);
  --gradient-dark: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(30, 30, 30, 0.9) 100%);
}

/* Lazy Loading Styles */
img.lazy {
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  background: #222;
}

img.lazy.loaded {
  opacity: 1;
}

/* Placeholder for loading images */
img[data-src] {
  filter: blur(5px);
  transition: filter 0.3s ease;
}

img[data-src].loaded {
  filter: none;
}

/* Modern Band Header */
header {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(15, 15, 15, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 1000;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
}

header::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
}

header:hover::before {
  opacity: 1;
}

.header-content {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  background-color: transparent;
  position: relative;
  z-index: 1001;
}

.header-logo {
  height: 60px;
  width: auto;
  margin-right: 2rem;
  filter: drop-shadow(0 4px 20px rgba(255, 45, 146, 0.3));
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-logo:hover {
  filter: drop-shadow(0 6px 30px rgba(255, 45, 146, 0.5)) drop-shadow(0 0 20px rgba(0, 212, 255, 0.3));
  transform: scale(1.05) translateY(-2px);
}

/* Modern Horizontal Navigation */
.main-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
  z-index: 1001;
  position: relative;
}

.main-nav ul {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.5rem;
  align-items: center;
}

.main-nav li {
  position: relative;
}

.nav-link {
  color: var(--text-primary);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  z-index: 1002;
  display: inline-block;
  pointer-events: auto;
  cursor: pointer;
}

.nav-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.5s ease;
  z-index: -1;
  pointer-events: none;
}

.nav-link:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 45, 146, 0.3);
  border-color: var(--primary-color);
}

.nav-link:hover::before {
  left: 0;
}

.nav-link.active {
  background: var(--gradient-primary);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 45, 146, 0.4);
}

/* Hide old menu toggle */
.menu-toggle {
  display: none;
}

.header-right-controls {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-left: auto;
  background-color: transparent;
}

/* Language Switcher Styles */
.language-switcher {
  display: flex;
  align-items: center;
  background-color: transparent;
}

.language-switcher img {
  width: 28px;
  height: auto;
  margin-left: 8px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  background-color: transparent;
  filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.8)) drop-shadow(0 0 6px rgba(0, 0, 0, 0.6));
  border-radius: 4px;
}

.language-switcher img:hover {
  filter: drop-shadow(2px 2px 6px rgba(0, 0, 0, 0.9)) drop-shadow(0 0 10px rgba(231, 76, 60, 0.4));
  transform: scale(1.1);
  border-color: rgba(255,255,255,0.3);
}

/* Cart Indicator */
.cart-indicator {
  font-size: 1.2em;
  color: #fff;
  background-color: transparent;
  transition: all 0.3s ease;
}

.cart-indicator a {
  text-decoration: none;
  color: #fff;
  outline: none;
}

.cart-indicator a:focus {
  outline: none;
}

.cart-indicator:hover {
  transform: scale(1.1);
}

#cart-count {
    font-weight: bold;
    background: #e74c3c;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 1em;
    border: none;
    display: none;
    min-width: 30px;
    text-align: center;
    box-shadow: 0 3px 10px rgba(231, 76, 60, 0.6);
    animation: pulse 2s ease-in-out infinite;
    color: #fff;
}

#cart-count.has-items {
    display: inline-block;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 3px 10px rgba(231, 76, 60, 0.6);
    }
    50% {
        transform: scale(1.15);
        box-shadow: 0 5px 15px rgba(231, 76, 60, 0.8);
    }
}


/* Main Content Styles */
main {
  margin-top: 0;
  padding-bottom: 80px;
}

section {
  position: relative;
  padding: 6rem 2rem;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}

section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(1px);
  z-index: 1;
}

section > * {
  position: relative;
  z-index: 2;
}

/* Ultra aggressive mobile spacing - half of previous */
@media (max-width: 768px) {
  section {
    padding: 15px 15px; /* Half of 30px */
  }
  
  #performances {
    padding-top: 5px; /* Half of 10px */
  }
}

@media (max-width: 480px) {
  section {
    padding: 10px 15px; /* Half of 20px */
  }
  
  #performances {
    padding-top: 2px; /* Almost zero */
  }
}

@media (max-width: 320px) {
  section {
    padding: 8px 10px; /* Half of 15px */
  }
  
  #performances {
    padding-top: 0px;
    margin-top: -5px; /* Negative margin for ultra tight spacing */
  }
}

/* Remove the background zoom effect */
section:hover {
  background-size: cover;
}

/* Hover overlay effect removed */

/* Remove margin between sections - use carefully */
/* section + section { margin-top: -5px; } */ /* This can cause layout issues, better to ensure backgrounds meet */

/* Section Specific Backgrounds & Styles */
#home {
  background-image: url('image/Kolaz20godinacrop.jpg');
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  position: relative;
  background-position: center center;
  background-size: 60%;
  background-repeat: no-repeat;
  background-attachment: fixed;
  overflow: hidden;
}

#home::before {
  background: transparent !important;
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

#home::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(255, 45, 146, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 3s ease-in-out infinite;
  z-index: 1;
}

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


#home [data-lang] {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0;
  background: none;
  border-radius: 0;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.5s ease, opacity 0.5s ease;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

#home [data-lang].animate-in {
  opacity: 1;
  transform: translateX(0);
}

#home h2 { 
  font-size: 4.5em;
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1.2s ease, transform 1.2s ease;
  color: #fff;
}

#home h2.animate-in {
  opacity: 1;
  transform: translateX(0);
}

#home p { 
  font-size: 1.8em;
  max-width: 800px;
  margin: 0 auto;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  opacity: 0;
  transform: translateX(-100%);
  transition: opacity 1.2s ease, transform 1.2s ease;
  transition-delay: 0.6s;
  color: #fff;
}

#home p.animate-in {
  opacity: 1;
  transform: translateX(0);
}

#discography { background-image: url('image/discography_background.jpg'); }
#videos { background-image: url('image/events-bkg.jpg'); }
#booking { background-image: url('image/video-bkg.jpg'); }
#press { 
  background-image: url('image/S.A.R.S. Press Kit.png'); 
  background-size: auto; 
  background-color: rgba(255, 255, 255, 0.05);
  position: relative;
}

#press [data-lang] {
  position: relative;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.7);
  padding: 20px;
  border-radius: 8px;
  backdrop-filter: blur(5px);
  max-width: 800px;
  margin: 0 auto;
}

#press h2 {
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

#press p {
  color: #fff;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.8);
  margin-bottom: 15px;
}

.press-download-link {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.press-download-link::before {
  content: '↓';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.press-download-link:hover::before {
  left: 10px;
  opacity: 1;
}

#social { background-image: url('image/social_background.jpg'); }


/* Carousel Styles */
.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-top: 15px;
  padding: 0 8px; /* Smaller padding */
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 10px;
  width: 100%;
}

.carousel-item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  flex-shrink: 0;
  width: auto;
  flex: 1;
  max-width: calc((100% - 70px) / 8);
  text-align: center;
  background: var(--card-bg);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
  min-height: 200px;
}

.carousel-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  border-radius: 12px;
  transition: opacity 0.4s ease;
  z-index: 1;
}

.carousel-item:hover::before {
  opacity: 0.1;
}

.carousel-item img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1 / 1; /* Square images for album art */
  object-fit: cover; /* Crop image to fit, no distortion */
  display: block;
  border-radius: 4px; /* Slightly rounded corners */
  margin-bottom: 10px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.carousel-item:hover {
  transform: translateY(-15px) scale(1.03);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4), 0 0 30px rgba(255, 45, 146, 0.2);
  border-color: rgba(255, 45, 146, 0.3);
}

.carousel-item:hover img {
  transform: scale(1.1) rotate(2deg);
}

.carousel-item h3 {
  min-height: 40px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  width: 100%;
  margin-bottom: 12px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-primary);
  position: relative;
  z-index: 2;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.carousel-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #e74c3c;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.carousel-item:hover h3::after {
  width: 50%;
}

.carousel-item .listen-button {
  margin-top: auto;
  margin-bottom: 12px;
  padding: 6px 12px;
  font-size: 0.8rem;
}

.carousel-nav {
  position: absolute;
  top: 50%;
  left: 0; /* Align to left */
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
  padding: 0 5px; /* Small padding for buttons */
  pointer-events: none; /* So buttons don't block clicks if track is wider */
}

.carousel-button {
  background: rgba(0, 0, 0, 0.6);
  border: none;
  color: #fff;
  font-size: 1.75em; /* 30% smaller: 2.5em * 0.7 = 1.75em */
  cursor: pointer;
  padding: 4px 11px; /* 30% smaller */
  border-radius: 50%;
  transition: background-color 0.3s ease;
  pointer-events: all; /* Make buttons clickable */
}
.carousel-button:hover {
  background: rgba(0, 0, 0, 0.8);
}
.carousel-button--left { margin-left: 10px; }
.carousel-button--right { margin-right: 10px; }

.album-tracklist {
  display: none;
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: rgba(20,20,20,0.92);
  color: #fff;
  z-index: 2;
  padding: 20px 15px 15px 15px;
  overflow-y: auto;
  border-radius: 8px;
  font-size: 0.98em;
  text-align: left;
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}

.carousel-item:hover .album-tracklist {
  display: block;
  opacity: 1;
  pointer-events: auto;
}

.album-tracklist h4 {
  margin-top: 0;
  margin-bottom: 10px;
  font-size: 1.1em;
  color: #e74c3c;
}

.album-tracklist ul {
  padding-left: 18px;
  margin: 0;
}

.album-tracklist li {
  margin-bottom: 3px;
  font-size: 0.98em;
}

/* Only overlay the image, not the whole card */
.carousel-item {
  position: relative;
}

.carousel-item .album-tracklist {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 100%;
  border-radius: 8px;
  pointer-events: auto;
}

.carousel-item img,
.carousel-item .album-tracklist {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  position: absolute;
}

.carousel-item img {
  position: relative;
  z-index: 1;
}

.carousel-item .album-tracklist {
  z-index: 2;
}

.carousel-item > *:not(img):not(.album-tracklist) {
  position: relative;
  z-index: 3;
}

/* Video Container Styles */
.video-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 30px;
}

.video-container iframe {
  width: 100%;
  max-width: 480px; /* Max width for individual videos */
  aspect-ratio: 16 / 9; /* Maintain 16:9 aspect ratio */
  height: auto; /* Let height adjust based on aspect ratio */
  border-radius: 15px;
  box-shadow: var(--glass-shadow);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container iframe:hover {
  transform: scale(1.02) translateY(-5px);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

/* Social Links Styles */
.social-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.social-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  touch-action: manipulation;
  -webkit-tap-highlight-color: rgba(255, 45, 146, 0.3);
  min-width: 44px;
  min-height: 44px;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.3s ease;
  border-radius: 16px;
}

.social-links a:hover {
  transform: translateY(-8px) scale(1.1);
  border-color: var(--primary-color);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), 0 0 20px rgba(255, 45, 146, 0.3);
}

.social-links a:hover::before {
  opacity: 0.2;
}

.social-links a::after {
  content: attr(aria-label);
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0,0,0,0.8);
  color: white;
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 0.8em;
  opacity: 0;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.social-links a:hover::after {
  opacity: 1;
  bottom: -30px;
}

/* iPad and Tablet optimizations for social links */
@media (min-width: 768px) and (max-width: 1024px) {
  .social-links {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin: 30px auto 0;
    max-width: 450px;
    padding: 15px 20px;
    justify-items: center;
    align-items: center;
  }
  
  .social-links a {
    width: 60px !important;
    height: 60px !important;
    flex-shrink: 0;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 8px !important; /* Rounded corners for better touch */
    background: rgba(255, 255, 255, 0.08) !important; /* Subtle background */
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    position: relative !important;
    transition: all 0.2s ease !important; /* Smooth but quick transitions */
    backdrop-filter: blur(5px) !important;
    -webkit-backdrop-filter: blur(5px) !important;
    /* Touch-friendly styling */
    -webkit-tap-highlight-color: rgba(231, 76, 60, 0.3);
    touch-action: manipulation;
  }
  
  .social-links img {
    width: 36px !important;
    height: 36px !important;
    object-fit: contain !important;
    display: block !important;
    transition: opacity 0.2s ease !important;
    filter: brightness(1.1) !important;
    /* Ensure images are properly centered */
    margin: 0 auto !important;
    pointer-events: none; /* Prevent image from blocking touch events */
  }
  
  /* Touch-optimized hover and active states for iPad */
  .social-links a:hover,
  .social-links a:active {
    background: rgba(231, 76, 60, 0.2) !important;
    border-color: rgba(231, 76, 60, 0.4) !important;
    transform: scale(1.05) !important;
  }
  
  .social-links a:hover img,
  .social-links a:active img {
    opacity: 0.9 !important;
    filter: brightness(1.2) !important;
  }
  
  /* Remove tooltips on touch devices */
  .social-links a::after {
    display: none !important;
  }
  
  .social-links a::before {
    display: none !important;
  }
}

/* iPad landscape - optimized grid layout */
@media (min-width: 1024px) and (max-width: 1366px) {
  .social-links {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
    max-width: 550px;
    margin: 30px auto 0;
    padding: 10px 20px;
  }
  
  .social-links a {
    width: 70px !important;
    height: 70px !important;
    margin: 0 !important;
    border-radius: 10px !important;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    transition: all 0.2s ease !important;
    -webkit-tap-highlight-color: rgba(231, 76, 60, 0.3);
    touch-action: manipulation;
  }
  
  .social-links a:hover,
  .social-links a:active {
    background: rgba(231, 76, 60, 0.25) !important;
    border-color: rgba(231, 76, 60, 0.5) !important;
    transform: scale(1.05) !important;
  }
  
  .social-links img {
    width: 42px !important;
    height: 42px !important;
    filter: brightness(1.1) !important;
    /* Ensure images are properly centered */
    margin: 0 auto !important;
    pointer-events: none; /* Prevent image from blocking touch events */
    object-fit: contain !important;
  }
}

/* Tour Dates Styles */
#performances { font-size: 1.1em; } /* Base font size for this section */

.tour-dates {
  list-style: none;
  text-transform: uppercase;
  margin-top: 20px;
  padding: 0;
  max-width: 700px; /* Constrain width for better readability */
  margin-left: auto;
  margin-right: auto;
}

.tour-dates li {
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between; /* Distribute space */
  margin-bottom: 15px;
  padding: 12px 15px;
  font-size: 1.1em; /* Relative to section font size */
  background: rgba(20, 20, 20, 0.8); /* Darker, slightly transparent background */
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.2);
  flex-wrap: wrap; /* Allow wrapping on small screens */
}

.tour-dates li:hover {
  transform: translateX(10px);
  background: rgba(20, 20, 20, 0.9);
}

.tour-dates li::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

.tour-dates li:hover::before {
  left: 10px;
  opacity: 1;
}

.tour-dates li strong {
  min-width: 80px; /* Ensure date part has enough space */
  margin-right: 15px;
  color: #e74c3c; /* Highlight date */
}
.tour-dates li span { /* For event name/location */
    flex-grow: 1;
    text-align: left;
}

.tour-dates img {
  width: 30px; /* Slightly smaller flags */
  height: auto;
  margin-left: 15px;
}

.tour-nav {
  margin: 30px 0 10px;
  text-align: center;
}
.tour-button  {
  font-size: 1.1em;
  text-transform: uppercase;
  color: #fff;
  background-color: #e74c3c;
  padding: 12px 25px;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  display: inline-block;
}
.tour-button:hover {
  background-color: #c0392b;
  color: #fff;
}

/* Booking Info Styles */
.booking-info {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  justify-content: center;
  text-align: center;
  margin: 30px auto;
  gap: 30px;
  max-width: 1200px;
  flex-wrap: wrap;
}

.booking-info .contact {
  background: rgba(255, 255, 255, 0.05);
  padding: 20px;
  border-radius: 8px;
  flex: 1;
  min-width: 280px;
  max-width: 350px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

.booking-info .contact:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.booking-info .contact h3 { 
  color: #e74c3c;
  margin-bottom: 15px;
  font-size: 1.4em;
}

.booking-info .contact p { 
  margin: 8px 0;
  font-size: 1.1em;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

@media (max-width: 768px) {
  .booking-info {
    flex-direction: column;
    align-items: center;
  }
  
  .booking-info .contact {
    width: 100%;
    max-width: 400px;
  }
}

/* Shop Styles */
.shop-grid {
  width: 100%;
  margin: 0 auto;
  padding: 20px 0; /* Only vertical padding */
  overflow-x: auto;
}

.product-category {
  margin-bottom: 40px;
}
.product-category h3 {
    text-align: left;
    margin-left: 10px; /* Align with grid padding */
    font-size: 1.8em;
}

.products {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  padding: 20px;
  overflow-x: auto;
  justify-content: flex-start;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--accent-color) transparent;
  align-items: stretch;
  position: relative;
  min-width: max-content;
  width: 100%;
}

.products::-webkit-scrollbar {
  height: 8px;
}
.products::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.products::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}
.products::-webkit-scrollbar-thumb:hover {
  background: #ff1a75;
}

.product-card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  flex: 0 0 280px;
  width: 280px;
  min-width: 280px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
  position: relative;
}


.product-card, .product-card img, .product-card h4, .product-card p, .product-card .price {
  pointer-events: auto;
}
.product-card img.tshirt {
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.3s;
  cursor: pointer;
}
.product-card img.tshirt:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}

/* Make size selector and its container interactive */
.product-card .size-selector-container,
.product-card .size-select {
  pointer-events: auto;
}

.product-card .size-selector-container {
  margin-bottom: 16px;
}

.product-card .buy-button {
  pointer-events: auto; /* Make only the button interactive */
}

/* Remove the hover effect from the entire card */
.product-card::before {
  display: none;
}

/* Buy button styling */
.buy-button {
  background-color: #e74c3c;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-top: auto;
  transition: all 0.3s ease;
  font-weight: bold;
}

/* Add hover effect only to the button */
.buy-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
  background: linear-gradient(45deg, #c0392b, #e74c3c);
}

/* Style for size selector to make it more visible and interactive */
.size-selector-container {
  margin: 15px 0;
}

.size-selector-container label {
  display: block;
  margin-bottom: 5px;
  font-size: 0.9rem;
  color: #ccc;
}

.size-select {
  padding: 10px 12px;
  width: 100%;
  max-width: 100%;
  background-color: #333;
  border: 2px solid #e74c3c;
  color: #fff;
  border-radius: 4px;
  font-size: 1rem;
  cursor: pointer;
  position: relative;
  z-index: 10;
  transition: all 0.3s ease;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23e74c3c' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 30px;
}

.size-select option {
  background-color: #333;
  color: #fff;
  padding: 10px;
}

.size-select:hover, .size-select:focus {
  border-color: #e74c3c;
  outline: none;
  box-shadow: 0 0 5px rgba(231, 76, 60, 0.3);
}

.size-selector-container label {
  pointer-events: auto;
  color: #fff;
  margin-bottom: 5px;
  display: block;
}

.product-card img {
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1; /* Ensure images are square */
  object-fit: cover;
  border-radius: 4px;
  margin-bottom: 15px;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: auto;
}

.product-card:hover img {
  transform: scale(1.1) rotate(2deg);
}

.product-card h4 {
  margin: 10px 0;
  font-size: 1.2em;
  color: #fff; /* Brighter title */
  flex-grow: 1; /* Allow title to take space if description is short */
}
.product-card p {
    font-size: 0.9em;
    margin-bottom: 8px;
}

.price {
  font-weight: bold;
  color: #e74c3c; /* Highlight price */
  font-size: 1.3em;
  margin: 10px 0;
}

.buy-button, .listen-button, .tour-button {
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  border: none;
  padding: 12px 24px;
  border-radius: 25px;
  color: white;
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.buy-button:hover, .listen-button:hover, .tour-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(231, 76, 60, 0.3);
}


/* Footer Styles */
footer {
  position: fixed;
  bottom: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.7); /* Consistent with header */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  text-align: center; /* Center align footer content */
  padding: 15px 20px;
  color: #aaa; /* Lighter footer text */
  z-index: 1000;
  font-size: 0.9em;
  display: flex; /* For aligning logo and text */
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-top: 1px solid var(--glass-border);
}
.footer-logo {
    width: 35px;
    height: auto;
    opacity: 0.7;
}


/* Past Dates Page Specific (if any, from original) */
.past-dates {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
  text-align: left;
}
.year-section {
  margin: 40px 0;
  background: rgba(0, 0, 0, 0.7);
  border-radius: 10px;
  padding: 20px;
}
.year-section h2 {
  text-align: left;
  margin-bottom: 20px;
  font-size: 2em;
}
.tour-dates-past li {
  display: flex;
  align-items: center;
  margin-bottom: 5px;
  padding: 10px; /* Increased padding */
  background: rgba(0, 0, 0, 0.836);
  border-radius: 5px;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.tour-dates-past li img {
  width: 35px;
  height: auto;
  margin-left: 10px;
}
.tour-dates-past strong {
  min-width: 50px;
  display: inline-block;
}


/* Responsive Adjustments */
@media (max-width: 1024px) {
    .carousel-item {
        width: auto !important;
        flex: 1 !important;
        max-width: calc((100% - 70px) / 4) !important; /* 4 items on tablet */
    }
     .products {
        gap: 15px;
        padding: 15px;
    }
    .product-card {
        flex: 0 0 250px;
        width: 250px;
        min-width: 250px;
    }
}

@media (max-width: 768px) {
  .header-logo {
      height: 40px;
  }
  header nav {
    width: 280px;
    left: -280px;
  }
  header nav a {
    font-size: 1.1em;
  }
  .menu-toggle {
    display: block; /* Show hamburger */
  }

  #home h2 { font-size: 2em; }
  #home p { font-size: 1em; }

  .carousel { padding: 0 5px; } /* Reduce padding on mobile */
  .carousel-item {
    width: auto !important;
    flex: 1 !important;
    max-width: calc((100% - 20px) / 2) !important; /* 2 items on mobile */
  }
  .carousel-button { font-size: 2em; padding: 3px 10px;}

  .video-container iframe { max-width: 100%; }

  .tour-dates li { font-size: 1em; flex-direction: column; align-items: flex-start; }
  .tour-dates li strong { margin-bottom: 5px; }
  .tour-dates img { margin-left: 0; margin-top: 5px;}

  .booking-info { flex-direction: column; }
  .booking-info .contact { max-width: none; /* Allow full width */ }
  
  .products {
    gap: 15px;
    padding: 15px;
  }
  .product-card {
    flex: 0 0 220px;
    width: 220px;
    min-width: 220px;
  }
  .product-card { padding: 15px; }

  footer {
      font-size: 0.8em;
      padding: 10px;
      flex-direction: column; /* Stack logo and text on small screens */
  }
  .footer-logo { margin-bottom: 5px; }
}

@media (max-width: 480px) {
    h2 { font-size: 1.8em; }
    .header-logo { height: 35px; }
    header nav {
        width: 200px;
        left: -200px;
    }
    .language-switcher img { width: 24px; margin-left: 6px; }
    .cart-indicator { font-size: 1em; }
    
    .carousel-item {
        width: 100% !important;
        flex: none !important;
        max-width: 100% !important; /* 1 item on very small screens */
    }
    .carousel-track {
        gap: 10px; /* Reduce gap if items are 100% to avoid overflow with padding */
    }

    .products {
        gap: 10px;
        padding: 10px;
    }
    .product-card {
        flex: 0 0 180px;
        width: 180px;
        min-width: 180px;
    }
    .product-card { font-size: 0.95em; }
    .price { font-size: 1.2em; }
    .buy-button { padding: 10px; font-size: 0.9em; }

    /* Only apply to phone, not tablets */
    .social-links img { width: 30px; height: 30px; }
    .tour-button { padding: 10px 20px; font-size: 1em;}

    .modal-content {
        padding: 20px;
    }
    .modal-content h4 {
        font-size: 1.2em;
    }
    .platform-logo-button img {
        height: 30px;
    }
}

.listen-button {
    background-color: #4CAF50;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s;
}

.listen-button:hover {
    background-color: #45a049;
}

/* Listen Button in Carousel */
.carousel-item .listen-button {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 8px 15px;
    font-size: 0.9em;
    font-weight: bold;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
    transition: background-color 0.3s ease;
    text-transform: uppercase;
}

.carousel-item .listen-button:hover {
    background-color: #c0392b;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s ease, visibility 0.4s ease;
    backdrop-filter: none;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    padding: 20px;
    text-align: center;
    color: #fff;
    width: 90%;
    max-width: 600px;
    position: relative;
    transform: scale(0.9) translateY(20px);
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1) translateY(0);
}

.modal-close-button {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 32px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
}

.modal-close-button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.platform-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 40px 0 20px 0;
    justify-items: center;
    position: relative;
}

/* Platform Logo Button Styles */
.platform-logo-button {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.04));
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 25px;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25), inset 0 2px 0 rgba(255, 255, 255, 0.15), 0 0 20px rgba(231, 76, 60, 0.1);
    overflow: hidden;
}

.platform-logo-button:hover {
    transform: translateY(-15px) scale(1.08);
    border-color: rgba(231, 76, 60, 0.4);
    background: linear-gradient(135deg, rgba(231, 76, 60, 0.15), rgba(255, 255, 255, 0.1));
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.25), 0 0 30px rgba(231, 76, 60, 0.3);
}

.platform-logo-button:active {
    transform: translateY(-10px) scale(1.05);
    transition: all 0.1s ease;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 0 20px rgba(231, 76, 60, 0.25);
}

.platform-logo-button img {
    width: 110px;
    height: 110px;
    object-fit: contain;
    transition: all 0.5s ease;
    filter: drop-shadow(0 6px 20px rgba(255, 255, 255, 0.15)) brightness(1.1);
    position: relative;
    z-index: 2;
}

.platform-logo-button:hover img {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 12px 30px rgba(231, 76, 60, 0.3)) brightness(1.3) saturate(1.2);
}

/* Specific adjustments for each platform logo */
.platform-logo-button img[alt="Spotify Logo"] {
    width: 110px;
    height: 110px;
}

.platform-logo-button img[alt="Deezer Logo"] {
    width: 105px;
    height: 105px;
}

.platform-logo-button img[alt="YouTube Music Logo"] {
    width: 105px;
    height: 105px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .platform-links {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .platform-logo-button img {
        width: 80px;
        height: 80px;
    }
    
    .platform-logo-button img[alt="Spotify Logo"] {
        width: 90px;
        height: 90px;
    }
    
    .platform-logo-button img[alt="Deezer Logo"],
    .platform-logo-button img[alt="YouTube Music Logo"] {
        width: 85px;
        height: 85px;
    }
}

/* Video Popup Styles */
.video-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.3);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s ease; /* Added transition for fade effect */
}

.video-popup-overlay.active {
    opacity: 1;
    visibility: visible;
}

.video-popup-content {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 25px;
    border-radius: 8px;
    position: relative;
    width: 70%;
    max-width: 1000px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5%);
    border: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(-5%) scale(0.95);
    transition: opacity 0.8s ease, transform 0.8s ease; /* Added transition for content */
}

.video-popup-overlay.active .video-popup-content {
    opacity: 1;
    transform: translateY(-5%) scale(1);
}

.video-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    color: #000;
    cursor: pointer;
    transition: color 0.3s ease;
    z-index: 10000;
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.8); /* Increased glow for better visibility */
}

.video-popup-close:hover {
    color: #e74c3c;
}

.video-popup-content h3 {
    color: #000;
    text-align: center;
    margin-bottom: 25px;
    font-size: 2.2em;
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(255, 255, 255, 0.9); /* Increased text shadow for better readability */
}

.video-popup-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 4px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
}

.video-popup-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* Modern Modal Enhancements */
.platform-links::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(231, 76, 60, 0.05) 0%, transparent 60%);
    border-radius: 15px;
    pointer-events: none;
}

/* Platform button ripple effect */
.platform-logo-button::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease, opacity 0.6s ease;
    opacity: 0;
    pointer-events: none;
}

.platform-logo-button:active::after {
    width: 200px;
    height: 200px;
    opacity: 1;
    transition: width 0s, height 0s, opacity 0s;
}

/* Modern modal title styling */
.modal-content h3 {
    font-size: 1.8rem;
    margin-bottom: 30px;
    background: linear-gradient(135deg, #fff 0%, rgba(231, 76, 60, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    font-weight: 600;
}

/* Responsive adjustments for video popup */
@media (max-width: 768px) {
    .video-popup-content {
        width: 90%;
        padding: 20px;
    }
    
    .video-popup-content h3 {
        font-size: 1.6em;
    }
}

/* Scroll Progress Indicator */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: #e74c3c;
  z-index: 9999;
  transition: width 0.1s ease;
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #e74c3c;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: all 0.3s ease;
  z-index: 1000;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.back-to-top.visible {
  opacity: 1;
}

.back-to-top:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.4);
}

/* Modern Animations */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 3s ease-in-out infinite;
}

/* Modern Loading Animation */
@keyframes shimmer {
  0% {
    background-position: -1000px 0;
  }
  100% {
    background-position: 1000px 0;
  }
}

.loading {
  background: linear-gradient(90deg, 
    rgba(255,255,255,0.1) 0%, 
    rgba(255,255,255,0.2) 50%, 
    rgba(255,255,255,0.1) 100%);
  background-size: 1000px 100%;
  animation: shimmer 2s infinite linear;
}

/* Modern Loading States */
.loading-skeleton {
  background: linear-gradient(90deg, 
    rgba(255,255,255,0.1) 0%, 
    rgba(255,255,255,0.2) 50%, 
    rgba(255,255,255,0.1) 100%);
  background-size: 200% 100%;
  animation: loading 1.5s infinite;
}

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

/* Modern Dark Mode Support */
@media (prefers-color-scheme: dark) {
  :root {
    --glass-bg: rgba(0, 0, 0, 0.2);
    --glass-border: rgba(255, 255, 255, 0.1);
  }
}

/* Modern Band Design - Final Styles */
button:not(.modal-close-button):not(.carousel-button), .button, .listen-button, .buy-button {
    font-family: "Inter", sans-serif;
    font-weight: 600;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    background: var(--gradient-primary);
    color: white;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(255, 45, 146, 0.3);
    z-index: 2;
}

button:not(.modal-close-button):not(.carousel-button):hover, .button:hover, .listen-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 45, 146, 0.4);
}


/* Responsive Navigation */
@media (max-width: 1024px) {
  .main-nav ul {
    gap: 1rem;
  }
  
  .nav-link {
    padding: 0.6rem 1rem;
    font-size: 0.8rem;
  }
}

@media (max-width: 768px) {
  .main-nav ul {
    gap: 0.5rem;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .nav-link {
    padding: 0.5rem 0.8rem;
    font-size: 0.75rem;
  }
  
  .header-content {
    flex-wrap: wrap;
    gap: 1rem;
  }
}

@media (max-width: 480px) {
  .header-content {
    flex-direction: column;
    align-items: center;
    padding: 1rem;
  }
  
  .main-nav ul {
    justify-content: center;
    gap: 0.3rem;
  }
  
  .nav-link {
    padding: 0.4rem 0.6rem;
    font-size: 0.7rem;
  }
}

/* Floating Section Indicator */
.section-indicator {
  position: fixed;
  right: 2rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.section-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.section-dot:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  transform: scale(1.3);
}

.section-dot.active {
  background: var(--gradient-primary);
  border-color: var(--primary-color);
  transform: scale(1.2);
  box-shadow: 0 0 20px rgba(255, 45, 146, 0.5);
}

.section-dot::after {
  content: attr(data-section);
  position: absolute;
  right: 25px;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-dot:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(-10px);
}
