/* Base Styles */
:root {
  --primary-color: #00f3ff;
  --secondary-color: #ff00c8;
  --accent-color: #ff0066;
  --dark-bg: #0a0a15;
  --light-text: #ffffff;
  --medium-text: #e0e0ff;
  --transition-speed: 0.3s;
}

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

body {
  font-family: 'Exo 2', sans-serif;
  background-color: var(--dark-bg);
  color: var(--light-text);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Orbitron', sans-serif;
  font-weight: 700;
  letter-spacing: 1px;
}

/* Navigation */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 10, 21, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 243, 255, 0.2);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo h2 {
  color: var(--primary-color);
  text-shadow: 0 0 10px rgba(0, 243, 255, 0.5);
}

/* Logo Image Styling */
.logo-image {
  height: 40px;
  width: auto;
}

.hero-logo {
  height: 400px;
  width: auto;
  margin-bottom: 1rem;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-link {
  color: var(--light-text);
  text-decoration: none;
  font-weight: 400;
  position: relative;
  padding: 0.5rem 0;
  transition: color var(--transition-speed);
}

.nav-link:hover {
  color: var(--primary-color);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary-color);
  transition: width var(--transition-speed);
}

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

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

.hero-content h1 {
  font-size: 5rem;
  margin-bottom: 1rem;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(0, 243, 255, 0.3);
}

.hero-content p {
  font-size: 1.5rem;
  color: var(--medium-text);
  margin-bottom: 2rem;
}

.scroll-down-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {transform: translateY(0) translateX(-50%);}
  40% {transform: translateY(-20px) translateX(-50%);}
  60% {transform: translateY(-10px) translateX(-50%);}
}

/* Background Animation */
.background-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: 0.3;
}

/* Section Headers */
.section-header {
  text-align: center;
  padding: 3rem 2rem;
  position: relative;
}

.section-header h2 {
  font-size: 2.5rem;
  color: var(--primary-color);
  display: inline-block;
  position: relative;
  margin-bottom: 1rem;
}

.section-header h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: var(--secondary-color);
  border-radius: 2px;
}

/* Music Section */
.music-section {
  padding: 4rem 2rem;
  background: rgba(10, 10, 21, 0.7);
}

.music-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.track {
  background: rgba(25, 25, 45, 0.6);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 243, 255, 0.1);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.track:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 243, 255, 0.2);
}

.track-artwork {
  width: 100%;
  height: 200px;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(45deg, #1a1a2e, #16213e);
  position: relative;
}

.placeholder-artwork {
  font-size: 0.9rem;
  color: var(--medium-text);
  text-align: center;
}

.track-info h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.track-info p {
  color: var(--medium-text);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

/* About Section */
.about-section {
  padding: 4rem 2rem;
  background: rgba(5, 5, 15, 0.8);
}

.about-content {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
  color: var(--medium-text);
}

.about-image {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 300px;
  border-radius: 10px;
  overflow: hidden;
  background: linear-gradient(45deg, #1a1a2e, #16213e);
  position: relative;
}

.placeholder-image {
  font-size: 1.2rem;
  color: var(--medium-text);
  text-align: center;
}

/* Shows Section */
.shows-section {
  padding: 4rem 2rem;
  background: rgba(10, 10, 21, 0.7);
}

.shows-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.show-event {
  background: rgba(25, 25, 45, 0.6);
  border-radius: 10px;
  padding: 1.5rem;
  display: flex;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(0, 243, 255, 0.1);
  transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.show-event:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 243, 255, 0.2);
}

.event-date {
  background: linear-gradient(45deg, var(--secondary-color), var(--accent-color));
  border-radius: 8px;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-right: 1rem;
  flex-shrink: 0;
}

.day {
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
}

.month {
  font-size: 0.8rem;
  text-transform: uppercase;
  color: white;
}

.event-details h3 {
  color: var(--primary-color);
  margin-bottom: 0.5rem;
}

.event-details p {
  color: var(--medium-text);
  margin-bottom: 0.3rem;
  font-size: 0.9rem;
}

/* Footer */
.footer {
  background: rgba(5, 5, 15, 0.9);
  padding: 2rem;
  text-align: center;
  border-top: 1px solid rgba(0, 243, 255, 0.1);
}

.social-links {
  margin-bottom: 1rem;
}

.social-links a {
  display: inline-block;
  margin: 0 1rem;
  color: var(--medium-text);
  text-decoration: none;
  transition: color var(--transition-speed);
  font-weight: bold;
}

.social-links a:hover {
  color: var(--primary-color);
}

.footer p {
  color: var(--medium-text);
  font-size: 0.9rem;
}

/* Scroll Effects */
.scroll-reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.scroll-reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
  .nav-container {
    padding: 1rem;
  }
  
  .nav-menu {
    gap: 1rem;
  }
  
  .hero-content h1 {
    font-size: 3rem;
  }
  
  .hero-content p {
    font-size: 1.2rem;
  }
  
  .about-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .music-container,
  .shows-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 2.5rem;
  }
  
  .section-header h2 {
    font-size: 2rem;
  }
  
  .track,
  .show-event {
    padding: 1rem;
  }
  
  .event-date {
    width: 60px;
    height: 60px;
  }
  
  .day {
    font-size: 1.2rem;
  }
  
  .month {
    font-size: 0.7rem;
  }
}
