@import "tailwindcss";

@theme {
  /* Premium Band Site Color System */
  
  /* Primary Grayscale (Modern & Clean) */
  --color-primary-50: #FAFAFA;
  --color-primary-100: #F4F4F5;
  --color-primary-200: #E4E4E7;
  --color-primary-300: #D4D4D8;
  --color-primary-400: #A1A1AA;
  --color-primary-500: #71717A;
  --color-primary-600: #52525B;
  --color-primary-700: #3F3F46;
  --color-primary-800: #27272A;
  --color-primary-900: #18181B;
  --color-primary-950: #09090B;
  --color-primary: #000000;

  /* Typography */
  --font-sans: "Inter", "Helvetica Neue", "Arial", sans-serif;
  --font-display: "Inter", "Helvetica Neue", "Arial", sans-serif;
}

/* ===== MODERN UX SYSTEM ===== */
/* Systematic Design System for Modern Interactions */

/* Animation Timing System */
:root {
  /* Micro Interactions (0-100ms) */
  --timing-instant: 0ms;
  --timing-micro: 75ms;
  
  /* UI Feedback (100-300ms) */
  --timing-fast: 150ms;
  --timing-ui: 250ms;
  
  /* Content Transitions (300-500ms) */
  --timing-content: 350ms;
  --timing-smooth: 450ms;
  
  /* Page Transitions (500ms+) */
  --timing-page: 600ms;
  --timing-slow: 800ms;
  
  /* Modern Easing Functions */
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out-expo: cubic-bezier(0.87, 0, 0.13, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
  --ease-out-back: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-spring: cubic-bezier(0.68, -0.55, 0.265, 1.55);
  
  /* Elevation System (Box Shadows) */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
  --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  --shadow-inner: inset 0 2px 4px 0 rgba(0, 0, 0, 0.05);
  
  /* Modern Blur System */
  --blur-sm: blur(4px);
  --blur-base: blur(8px);
  --blur-md: blur(12px);
  --blur-lg: blur(16px);
  --blur-xl: blur(24px);
  --blur-2xl: blur(40px);
  --blur-3xl: blur(64px);
  
  /* Transform System */
  --scale-95: scale(0.95);
  --scale-100: scale(1);
  --scale-105: scale(1.05);
  --scale-110: scale(1.1);
  --scale-125: scale(1.25);
  
  /* Border Radius System */
  --radius-xs: 0.125rem;
  --radius-sm: 0.25rem;
  --radius-md: 0.375rem;
  --radius-lg: 0.5rem;
  --radius-xl: 0.75rem;
  --radius-2xl: 1rem;
  --radius-3xl: 1.5rem;
  --radius-full: 9999px;
}


/* ===== UX COMPONENT CLASSES ===== */
/* Reusable Modern Interaction Patterns */

/* Performance Optimizations */
.ux-will-change-transform {
  will-change: transform;
}

.ux-will-change-opacity {
  will-change: opacity;
}

.ux-will-change-all {
  will-change: transform, opacity, box-shadow;
}

.ux-contain-layout {
  contain: layout;
}

.ux-contain-style {
  contain: style;
}

.ux-gpu-accelerated {
  transform: translateZ(0);
  backface-visibility: hidden;
  perspective: 1000px;
}

/* Interactive Elements Base */
.ux-interactive {
  cursor: pointer;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  will-change: transform, opacity, box-shadow;
  transition: all var(--timing-ui) var(--ease-out-quart);
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Hover Lift System */
.ux-lift-subtle {
  transition: all var(--timing-ui) var(--ease-out-quart);
}

.ux-lift-subtle:hover {
  transform: translateY(-2px) var(--scale-100);
  box-shadow: var(--shadow-md);
}

.ux-lift-moderate {
  transition: all var(--timing-ui) var(--ease-out-quart);
}

.ux-lift-moderate:hover {
  transform: translateY(-4px) var(--scale-105);
  box-shadow: var(--shadow-lg);
}

.ux-lift-strong {
  transition: all var(--timing-content) var(--ease-out-expo);
}

.ux-lift-strong:hover {
  transform: translateY(-8px) var(--scale-110);
  box-shadow: var(--shadow-xl);
}

/* Scale Animation System */
.ux-scale-subtle:hover {
  transform: var(--scale-105);
  transition: transform var(--timing-ui) var(--ease-out-quart);
}

.ux-scale-moderate:hover {
  transform: var(--scale-110);
  transition: transform var(--timing-ui) var(--ease-out-back);
}

.ux-scale-spring:hover {
  transform: var(--scale-105);
  transition: transform var(--timing-content) var(--ease-spring);
}

/* Glow Effect System */
.ux-glow-subtle:hover {
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1), var(--shadow-md);
  transition: box-shadow var(--timing-ui) var(--ease-out-quart);
}

.ux-glow-moderate:hover {
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2), var(--shadow-lg);
  transition: box-shadow var(--timing-ui) var(--ease-out-quart);
}

.ux-glow-strong:hover {
  box-shadow: 0 0 40px rgba(255, 255, 255, 0.3), var(--shadow-xl);
  transition: box-shadow var(--timing-content) var(--ease-out-expo);
}

/* Fade Animation System */
.ux-fade-in {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp var(--timing-content) var(--ease-out-expo) forwards;
}

.ux-fade-in-delay-1 {
  animation-delay: 150ms;
}

.ux-fade-in-delay-2 {
  animation-delay: 300ms;
}

.ux-fade-in-delay-3 {
  animation-delay: 450ms;
}

.ux-fade-in-delay-4 {
  animation-delay: 600ms;
}

/* Slide Animation System */
.ux-slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
  animation: slideInLeft var(--timing-content) var(--ease-out-expo) forwards;
}

.ux-slide-in-right {
  opacity: 0;
  transform: translateX(30px);
  animation: slideInRight var(--timing-content) var(--ease-out-expo) forwards;
}

/* Button Interaction System */
.ux-button {
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  transition: all var(--timing-ui) var(--ease-out-quart);
}

.ux-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
  transition: left var(--timing-smooth) var(--ease-out-expo);
}

.ux-button:hover::before {
  left: 100%;
}

.ux-button:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.ux-button:active {
  transform: translateY(0);
  transition: transform var(--timing-micro) ease-out;
}

/* Card Interaction System */
.ux-card {
  transition: all var(--timing-ui) var(--ease-out-quart);
  will-change: transform, box-shadow;
}

.ux-card:hover {
  transform: translateY(-4px) var(--scale-105);
  box-shadow: var(--shadow-lg);
}

.ux-card:active {
  transform: translateY(-2px) var(--scale-100);
  transition: all var(--timing-micro) ease-out;
}

/* Premium Band Site Base Styles */
.premium-band-site {
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #000000;
}

/* Reset and Base Typography */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  overflow-x: hidden;
}

/* Premium Typography System */
h1, h2, h3, h4, h5, h6 {
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.font-thin {
  font-weight: 100;
}

.font-light {
  font-weight: 300;
}

.tracking-wider {
  letter-spacing: 0.05em;
}

.tracking-widest {
  letter-spacing: 0.1em;
}

.tracking-wide {
  letter-spacing: 0.025em;
}

/* Premium Layout System */
.max-w-7xl {
  max-width: 1280px;
}

/* Navigation Styles */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  padding: 0 24px;
}

.nav-logo-container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-logo-image {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
}

.nav-logo-text {
  color: white;
  font-size: 18px;
  font-weight: 300;
  letter-spacing: 0.1em;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 48px;
}

.nav-menu a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 0.025em;
  text-transform: uppercase;
  text-decoration: none;
  transition: color 0.3s ease;
}

.nav-menu a:hover {
  color: white;
}

/* Language Toggle */
.language-toggle {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-left: 24px;
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.lang-btn {
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.6);
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  cursor: pointer;
  padding: 4px 8px;
  transition: color 0.3s ease;
}

.lang-btn.active {
  color: white;
}

.lang-btn:hover {
  color: white;
}

.lang-divider {
  color: rgba(255, 255, 255, 0.3);
  font-size: 12px;
}

.mobile-menu-button {
  display: none;
  color: white;
}

@media (max-width: 768px) {
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-button {
    display: block;
  }
}

nav a {
  position: relative;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

nav a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero-section {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #000000;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 24px;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 100;
  line-height: 0.95;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 2rem;
}

.hero-subtitle {
  font-size: clamp(1.25rem, 3vw, 2rem);
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
}

.hero-play-button {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 4rem auto;
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero-play-button:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.4);
  transform: scale(1.1);
}

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  color: rgba(255, 255, 255, 0.6);
}

.scroll-text {
  font-size: 11px;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.3);
}

/* ===== MODERN KEYFRAME ANIMATIONS ===== */

/* Fade Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Scale Animations */
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes scaleInBounce {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Rotation Animations */
@keyframes rotateIn {
  from {
    opacity: 0;
    transform: rotate(-180deg);
  }
  to {
    opacity: 1;
    transform: rotate(0deg);
  }
}

/* Glow Pulse Animation */
@keyframes glowPulse {
  0%, 100% {
    box-shadow: 0 0 5px rgba(255, 255, 255, 0.2);
  }
  50% {
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.4), 0 0 30px rgba(255, 255, 255, 0.2);
  }
}

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

/* Shimmer Effect */
@keyframes shimmer {
  0% {
    background-position: -200px 0;
  }
  100% {
    background-position: calc(200px + 100%) 0;
  }
}

/* Breath Animation */
@keyframes breathe {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.02);
  }
}

/* Scroll Reveal Animations */
[data-scroll-reveal-target="element"] {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-scroll-reveal-target="element"].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Music Section */
.music-section {
  padding: 6rem 0;
  background: white;
}

.music-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.music-header {
  text-align: center;
  margin-bottom: 5rem;
}

.music-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 100;
  color: black;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.music-divider {
  width: 60px;
  height: 1px;
  background: black;
  margin: 0 auto;
}

.albums-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto 5rem auto;
  padding: 0 2rem;
}

.album-card {
  text-align: left;
  transition: all 0.3s ease;
}

.album-cover {
  aspect-ratio: 1;
  background: #f8f9fa;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.album-cover:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.album-cover-inner {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.album-cover:hover .album-cover-inner {
  transform: scale(1.02);
}

.album-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: black;
  margin-bottom: 0.5rem;
  letter-spacing: 0.025em;
}

.album-year {
  font-size: 0.875rem;
  color: #666;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.album-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.album-actions a {
  color: black;
  transition: color 0.2s ease;
}

.album-actions a:hover {
  color: #666;
}

.platforms-section {
  text-align: center;
  padding-top: 3rem;
  border-top: 1px solid #e5e7eb;
  margin-top: 3rem;
}

.platforms-label {
  font-size: 0.875rem;
  color: #666;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.platforms-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
}

.platforms-links a {
  font-size: 0.875rem;
  font-weight: 300;
  color: black;
  letter-spacing: 0.05em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.platforms-links a:hover {
  color: #666;
}

@media (max-width: 768px) {
  .albums-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
    padding: 0 1rem;
  }
  
  .platforms-links {
    gap: 2rem;
  }
}

/* Gallery Section */
.gallery-section {
  padding: 6rem 0;
  background: black;
  color: white;
}

.gallery-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.gallery-header {
  text-align: center;
  margin-bottom: 4rem;
}

.gallery-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 100;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.gallery-divider {
  width: 60px;
  height: 1px;
  background: white;
  margin: 0 auto;
}

/* Square Gallery Layout */
.gallery-mosaic {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.photo-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 1/1; /* All photos are squares */
}

.photo-item:hover {
  transform: scale(1.05);
  border-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4);
}

.photo-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem;
}

.photo-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.75rem;
  font-weight: 300;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .gallery-mosaic {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    max-width: 600px;
  }
}

@media (max-width: 480px) {
  .gallery-mosaic {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 300px;
  }
  
  .photo-placeholder {
    padding: 2rem;
  }
}

/* Videos Section */
.videos-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.videos-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.videos-header {
  text-align: center;
  margin-bottom: 4rem;
}

.videos-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 100;
  color: black;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.videos-divider {
  width: 60px;
  height: 1px;
  background: black;
  margin: 0 auto;
}

.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 3rem;
}

.video-category {
  text-align: center;
  padding: 3rem 2rem;
  background: white;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
}

.video-category:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.video-thumbnail {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #4a5568 0%, #2d3748 100%);
  margin: 0 auto 2rem auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}

.video-title {
  font-size: 1.5rem;
  font-weight: 300;
  color: black;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
}

.video-description {
  font-size: 0.875rem;
  color: #666;
  line-height: 1.5;
}

/* News Section */
.news-section {
  padding: 6rem 0;
  background: black;
  color: white;
}

.news-container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 2rem;
}

.news-header {
  text-align: center;
  margin-bottom: 4rem;
}

.news-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 100;
  color: white;
  margin-bottom: 2rem;
  letter-spacing: 0.05em;
}

.news-divider {
  width: 60px;
  height: 1px;
  background: white;
  margin: 0 auto;
}

.news-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 4rem;
}

.news-item {
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.3s ease;
}

.news-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
}

.news-date {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1rem;
}

.news-headline {
  font-size: 1.25rem;
  font-weight: 300;
  color: white;
  margin-bottom: 1rem;
  letter-spacing: 0.025em;
}

.news-excerpt {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.newsletter-signup {
  text-align: center;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 2rem;
}

.newsletter-title {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  margin-bottom: 1.5rem;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.newsletter-input {
  padding: 0.75rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: white;
  font-size: 0.875rem;
}

.newsletter-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter-input:focus {
  outline: none;
  border-color: white;
}

.newsletter-submit {
  padding: 0.75rem;
  background: white;
  color: black;
  border: none;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
}

.newsletter-submit:hover {
  background: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
  .newsletter-form {
    flex-direction: row;
  }
  
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .videos-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .news-grid {
    grid-template-columns: 1fr;
  }
}

/* About Section */
.about-section {
  padding: 6rem 0;
  background: #f8f9fa;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .about-content {
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
  }
}

.about-text {
  text-align: left;
}

.about-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 100;
  color: black;
  margin-bottom: 3rem;
  letter-spacing: 0.05em;
}

.about-description {
  space-y: 1.5rem;
  color: #374151;
  line-height: 1.7;
}

.about-description p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.about-description p:first-child {
  font-size: 1.125rem;
  font-weight: 300;
}

.band-members {
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.member-role {
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-bottom: 0.5rem;
  color: black;
}

.member-name {
  font-size: 0.875rem;
  color: #666;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-photo-placeholder {
  width: 100%;
  max-width: 400px;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #6b7280;
}

.about-photo-icon {
  width: 3rem;
  height: 3rem;
  background: black;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.about-photo-text {
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-size: 0.875rem;
}

/* Button Styles */
.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: white;
  color: black;
  border-color: white;
}

.btn-solid {
  background: white;
  color: black;
  border: none;
  transition: all 0.3s ease;
}

.btn-solid:hover {
  background: rgba(255, 255, 255, 0.9);
  transform: translateY(-1px);
}

/* Play Button */
.play-button {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.play-button:hover {
  transform: scale(1.1);
  background: rgba(255, 255, 255, 0.2);
}

/* Contact Section */
.contact-section {
  padding: 6rem 0;
  background: white;
}

.contact-container {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
  padding: 0 2rem;
}

.contact-title {
  font-size: clamp(3rem, 6vw, 4rem);
  font-weight: 100;
  color: black;
  margin-bottom: 4rem;
  letter-spacing: 0.05em;
}

.contact-info {
  margin-bottom: 4rem;
}

.contact-item {
  margin-bottom: 3rem;
}

.contact-label {
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: black;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}

.contact-value {
  font-size: 1rem;
  color: #666;
  line-height: 1.4;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 2rem;
}

.social-link {
  font-size: 0.875rem;
  font-weight: 300;
  color: black;
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  position: relative;
  transition: color 0.2s ease;
}

.social-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.social-link:hover {
  color: #666;
}

.social-link:hover::after {
  width: 100%;
}

.footer-section {
  padding: 3rem 0;
  background: black;
  color: white;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2rem;
}

@media (min-width: 768px) {
  .footer-content {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
}

.footer-links {
  display: flex;
  gap: 2rem;
}

.footer-link {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.2s ease;
}

.footer-link:hover {
  color: white;
}

/* Form Styles */
input, textarea {
  font-family: inherit;
  font-size: inherit;
  transition: all 0.3s ease;
}

input:focus, textarea:focus {
  outline: none;
  border-color: white;
  box-shadow: 0 0 0 1px white;
}

input::placeholder, textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  font-weight: 300;
}

/* Section Dividers */
.section-divider {
  width: 24px;
  height: 1px;
  margin: 0 auto;
}

/* Social Links */
.social-link {
  position: relative;
  transition: color 0.3s ease;
}

.social-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.3s ease;
}

.social-link:hover::after {
  width: 100%;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(2.5rem, 12vw, 6rem);
  }
  
  .tour-date-item {
    padding: 1rem 0;
  }
  
  .album-card {
    margin-bottom: 2rem;
  }
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  html {
    scroll-behavior: auto;
  }
}

/* Focus States */
button:focus,
input:focus,
textarea:focus,
a:focus {
  outline: 2px solid white;
  outline-offset: 2px;
}

/* Selection */
::selection {
  background: rgba(255, 255, 255, 0.2);
  color: inherit;
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 255, 255, 0.4);
}

/* Dark Theme Optimizations */
@media (prefers-color-scheme: dark) {
  .premium-band-site {
    background: #000000;
    color: #ffffff;
  }
}

/* Performance Optimizations */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

/* Grid System */
.album-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
}

@media (max-width: 640px) {
  .album-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

/* Typography Hierarchy */
.text-hero {
  font-size: clamp(3rem, 8vw, 12rem);
  font-weight: 100;
  line-height: 0.9;
  letter-spacing: 0.02em;
}

.text-section-title {
  font-size: clamp(2rem, 5vw, 6rem);
  font-weight: 100;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.text-subtitle {
  font-size: clamp(1rem, 2.5vw, 2rem);
  font-weight: 300;
  letter-spacing: 0.025em;
}

.text-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
}

.text-small {
  font-size: 0.875rem;
  font-weight: 300;
  letter-spacing: 0.025em;
}

/* Modern Hover Effects */
.hover-lift {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.02);
}

/* Section Spacing Improvements */
.section-spacing {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  .section-spacing {
    padding: 4rem 0;
  }
}

/* Image Optimizations */
img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Print Styles */
@media print {
  .premium-band-site {
    color: black !important;
    background: white !important;
  }
  
  nav,
  footer {
    display: none;
  }
  
  section {
    page-break-inside: avoid;
    margin-bottom: 2rem;
  }
  
  .bg-black {
    background: white !important;
    color: black !important;
  }
}