@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;700;800&family=Inter:wght@300;400;500;600&display=swap');

:root {
  --primary: #ff00ff;
  --secondary: #00f2ff;
  --accent: #ffd700;
  --bg-dark: #050505;
  --bg-surface: #0f0f0f;
  --bg-card: #161616;
  --text-main: #ffffff;
  --text-dim: #a0a0a0;
  --glass: rgba(255, 255, 255, 0.03);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glow-pink: 0 0 20px rgba(255, 0, 255, 0.4);
  --glow-blue: 0 0 20px rgba(0, 242, 255, 0.4);
  --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

/* Noise Overlay */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: url(https://grainy-gradients.vercel.app/noise.svg);
  opacity: 0.05;
  pointer-events: none;
  z-index: 9999;
}

/* Custom Cursor */
.cursor {
  width: 20px;
  height: 20px;
  background: var(--primary);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 10000;
  mix-blend-mode: screen;
  transition: transform 0.1s ease;
  box-shadow: 0 0 20px var(--primary);
  display: none;
}

@media (pointer: fine) {
  .cursor {
    display: block;
  }
}


h1,
h2,
h3,
.heading-font {
  font-family: 'Syne', sans-serif;
  text-transform: uppercase;
  line-height: 1.1;
}

/* Custom Selection */
::selection {
  background: var(--primary);
  color: white;
}

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

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: #333;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}

/* Layout Utilities */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  padding: 100px 0;
  position: relative;
}

/* Header & Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition);
}

header.scrolled {
  background: rgba(5, 5, 5, 0.85);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--glass-border);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-family: 'Syne', sans-serif;
  font-weight: 800;
  font-size: 1.5rem;
  letter-spacing: -1px;
  background: linear-gradient(45deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  transition: var(--transition);
  display: inline-block;
}

.logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 10px rgba(255, 0, 255, 0.3));
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

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

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

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

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

.btn-book {
  background: transparent;
  border: 1px solid var(--primary);
  color: var(--text-main);
  padding: 1rem 2.5rem;
  /* KC Larger padding */
  border-radius: 50px;
  text-decoration: none;
  font-size: 1.1rem;
  /* KC Larger font */
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transition: var(--transition);
}

.btn-book:hover {
  background: var(--primary);
  box-shadow: var(--glow-pink);
  transform: translateY(-2px);
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  /* Switch to top-aligned for stability */
  align-items: center;
  padding-top: 15vh;
  /* Explicit distance from top, irrespective of height */
  padding-bottom: 5rem;
  background: radial-gradient(circle at 50% 50%, rgba(255, 0, 255, 0.1) 0%, rgba(0, 0, 0, 0) 70%),
    linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url('./images/hero-bg.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
}

.hero-content {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
  /* Removed transform to stabilize positioning */
}

.hero-tagline {
  font-size: 2.2rem;
  /* KC Significantly larger */
  letter-spacing: 8px;
  color: var(--secondary);
  display: block;
  font-weight: 800;
  text-shadow: 0 0 15px rgba(0, 242, 255, 0.6);
  margin-top: 10rem;
  /* KC Pushes the text and buttons lower */
}

.hero-banner-card {
  max-width: 1200px;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.hero-banner-card:hover {
  transform: translateY(-5px) scale(1.02);
  border-color: var(--primary);
  box-shadow: 0 40px 80px rgba(255, 0, 255, 0.2);
}

.hero-banner-card img {
  width: 100%;
  display: block;
}

.hero-title {
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 800;
  letter-spacing: -2px;
  margin-bottom: 1.5rem;
}

.hero-title span {
  display: block;
}

.text-gradient-pink {
  background: linear-gradient(to right, #ffffff, var(--primary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.text-gradient-blue {
  background: linear-gradient(to right, #ffffff, var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-btns {
  display: flex;
  justify-content: center;
  gap: 2rem;
}


.band-section {
  margin-top: -5rem;
  position: relative;
  z-index: 20;
  background: rgba(5, 5, 5, 0.4);
  /* Transparent dark */
  backdrop-filter: blur(15px);
  /* Premium blur effect */
  padding: 100px 0;
  border-top: 1px solid var(--glass-border);
}

/* Band Members Grid */
.section-title {
  text-align: center;
  margin-bottom: 5rem;
}

.section-title h2 {
  font-size: 3.5rem;
  margin-bottom: 1rem;
}

.section-title p {
  color: var(--text-dim);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

.members-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.member-item {
  position: relative;
  border-radius: 15px;
  overflow: hidden;
  aspect-ratio: 4/5;
  background: var(--bg-card);
}

.member-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.2);
  transition: var(--transition);
}

.member-item:hover .member-image {
  filter: grayscale(0) contrast(1);
  transform: scale(1.1);
}

.member-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9), transparent);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}

.member-item:hover .member-info {
  transform: translateY(0);
  opacity: 1;
}

.member-name {
  font-size: 1.5rem;
  font-weight: 700;
}

/* Testimonials */
.testimonials-section {
  background: var(--bg-surface);
}

.quotes-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 3rem;
}

.quote-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  padding: 3rem;
  border-radius: 30px;
  position: relative;
}

.quote-card i {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 2rem;
  display: block;
}

.quote-text {
  font-size: 1.4rem;
  font-style: italic;
  margin-bottom: 2rem;
  color: var(--text-main);
}

.quote-author {
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* Contact Footer */
footer {
  padding: 100px 0 50px;
  border-top: 1px solid var(--glass-border);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 5rem;
  margin-bottom: 5rem;
}

.footer-about h3 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.footer-links h4 {
  margin-bottom: 1.5rem;
  color: var(--primary);
}

.footer-links ul {
  list-style: none;
}

.footer-links ul li {
  margin-bottom: 1rem;
}

.footer-links ul a {
  color: var(--text-dim);
  text-decoration: none;
  transition: var(--transition);
}

.footer-links ul a:hover {
  color: var(--text-main);
  padding-left: 5px;
}

.socials {
  display: flex;
  gap: 1.5rem;
  margin-top: 2rem;
}

.social-icon {
  width: 50px;
  height: 50px;
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-main);
  text-decoration: none;
  font-size: 1.2rem;
  transition: var(--transition);
}

.social-icon:hover {
  border-color: var(--primary);
  color: var(--primary);
  box-shadow: var(--glow-pink);
  transform: translateY(-5px);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--glass-border);
  text-align: center;
  color: var(--text-dim);
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
}

.reveal.active {
  animation: fadeInUp 0.8s ease-out forwards;
}

/* Responsive */
@media (max-width: 1024px) {
  .members-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hero-title {
    font-size: 4rem;
  }

  .quotes-container {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}