@import url("https://fonts.googleapis.com/css2?family=Archivo+Black&family=Inter:wght@300;400;600;900&display=swap");

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

:root {
  --primary: #ff3333;
  --secondary: #ffaa00;
  --dark: #0a0a0a;
  --light: #ffffff;
  --gray: #1a1a1a;
}

body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: var(--light);
  overflow-x: hidden;
  cursor: crosshair;
}

/* Custom Cursor */
body::before {
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    600px at var(--mouse-x) var(--mouse-y),
    rgba(255, 51, 51, 0.1),
    transparent 40%
  );
  pointer-events: none;
  z-index: 1;
}

/* Navigation */
nav {
  position: fixed;
  width: 100%;
  padding: 20px 50px;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(20px);
  transition: all 0.3s;
}

nav.scrolled {
  padding: 15px 50px;
  background: rgba(10, 10, 10, 0.95);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1400px;
  margin: 0 auto;
}

.logo {
  font-family: "Archivo Black", sans-serif;
  font-size: 2rem;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: -2px;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  color: var(--light);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  transition: all 0.3s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s;
}

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

/* Hero Section */
.hero {
  height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(255, 51, 51, 0.3),
      transparent 50%
    ),
    radial-gradient(circle at 80% 80%, rgba(255, 170, 0, 0.2), transparent 50%),
    linear-gradient(180deg, var(--dark) 0%, #1a0000 100%);
}

.hero-content {
  text-align: center;
  z-index: 2;
  animation: heroFade 1s ease-out;
}

@keyframes heroFade {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero h1 {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(4rem, 15vw, 10rem);
  line-height: 0.9;
  letter-spacing: -8px;
  margin-bottom: 20px;
  background: linear-gradient(180deg, var(--light) 0%, var(--primary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 10px 30px rgba(255, 51, 51, 0.5));
}

.tagline {
  font-size: clamp(2rem, 6vw, 2.5rem);
  color: var(--secondary);
  font-weight: 1000;
  letter-spacing: 8px;
  text-transform: uppercase;
  margin-bottom: 50px;
}

.hero-cta {
  display: inline-flex;
  gap: 20px;
}

.btn {
  padding: 18px 40px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  text-decoration: none;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--primary);
  color: var(--light);
  border: 2px solid var(--primary);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--light);
}

.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(255, 51, 51, 0.3);
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

/* Floating elements */
.floating-element {
  position: absolute;
  font-size: 8rem;
  opacity: 0.05;
  animation: float 20s infinite ease-in-out;
}

.floating-element:nth-child(1) {
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}
.floating-element:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: 5s;
}
.floating-element:nth-child(3) {
  bottom: 20%;
  left: 50%;
  animation-delay: 10s;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }
  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }
  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Band Section */
.band-section {
  padding: 150px 50px;
  background: linear-gradient(180deg, #1a0000 0%, var(--dark) 100%);
}

.section-header {
  text-align: center;
  margin-bottom: 80px;
}

.section-title {
  font-family: "Archivo Black", sans-serif;
  font-size: clamp(3rem, 8vw, 5rem);
  letter-spacing: -3px;
  margin-bottom: 20px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.band-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.member-card {
  background: linear-gradient(145deg, #1a1a1a, #0f0f0f);
  border: 1px solid rgba(255, 51, 51, 0.2);
  padding: 40px 30px;
  text-align: center;
  transition: all 0.4s;
  position: relative;
  overflow: hidden;
}

.member-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 51, 51, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.member-card:hover::before {
  opacity: 1;
}

.member-card:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 20px 40px rgba(255, 51, 51, 0.2);
}

.member-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  clip-path: polygon(50% 0%, 100% 38%, 82% 100%, 18% 100%, 0% 38%);
}

.member-name {
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 10px;
}

.member-role {
  color: var(--secondary);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Contact Section */
.contact-section {
  padding: 150px 50px;
  background: var(--dark);
  text-align: center;
}

.contact-grid {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.contact-item {
  flex: 0 1 300px;
}

.contact-item h3 {
  color: var(--primary);
  font-size: 1.2rem;
  margin-bottom: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.contact-item a {
  color: var(--light);
  text-decoration: none;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.contact-item a:hover {
  color: var(--secondary);
}

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

.social-links a {
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 2px solid var(--primary);
  color: var(--primary);
  font-size: 1.5rem;
  transition: all 0.3s;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--primary);
  transition: top 0.3s;
  z-index: -1;
}

.social-links a:hover::before {
  top: 0;
}

.social-links a:hover {
  color: var(--light);
  transform: translateY(-5px) rotate(5deg);
}

/* Footer */
footer {
  padding: 40px;
  text-align: center;
  border-top: 1px solid rgba(255, 51, 51, 0.2);
  font-size: 0.9rem;
  color: #666;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--light);
  font-size: 1.5rem;
  cursor: pointer;
}

/* Responsive */
@media (max-width: 768px) {
  nav {
    padding: 15px 20px;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background: var(--gray);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    transition: right 0.3s;
  }

  .nav-links.active {
    right: 0;
  }

  .menu-toggle {
    display: block;
    z-index: 1001;
  }

  .hero h1 {
    letter-spacing: -4px;
  }

  .tagline {
    letter-spacing: 4px;
  }

  .hero-cta {
    flex-direction: column;
    width: 80%;
    margin: 0 auto;
  }

  .band-section,
  .contact-section {
    padding: 80px 20px;
  }

  .contact-grid {
    flex-direction: column;
    gap: 40px;
  }
}

/* Loading animation */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  transition: opacity 0.5s;
}

.loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-text {
  font-family: "Archivo Black", sans-serif;
  font-size: 3rem;
  background: linear-gradient(
    90deg,
    var(--primary),
    var(--secondary),
    var(--primary)
  );
  background-size: 200% 100%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: loaderGradient 2s linear infinite;
}

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

/* Progress bar */
#progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 4px;
  background: var(--primary);
  width: 0;
  z-index: 2001;
  transition: width 0.25s linear;
}

/* Fade-up animation (used in hero + sections) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Better button hover */
.btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 0 20px rgba(255, 51, 51, 0.6);
}

.fade-up, .fade-left, .fade-right, .zoom-in {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.fade-left { transform: translateX(-50px); }
.fade-right { transform: translateX(50px); }
.zoom-in { transform: scale(0.9); }

.visible {
  opacity: 1;
  transform: translate(0,0) scale(1);
}

.social-links a:hover {
  transform: scale(1.2) rotate(10deg);
  transition: transform 0.3s ease;
}
