/* ========================================
   Reset & Base
   ======================================== */

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 70px;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: #0a0a0f;
  color: #e0e0e8;
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: padding 0.4s ease, background 0.4s ease;
  padding: 20px 0;
}

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

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

.nav-logo {
  font-family: 'Sora', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: font-size 0.4s ease;
  background: linear-gradient(135deg, #c084fc, #818cf8, #60a5fa);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.navbar.scrolled .nav-logo {
  font-size: 1.15rem;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 18px;
  margin-left: auto;
  margin-right: 40px;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(224, 224, 232, 0.95);
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #c084fc, #60a5fa);
  border-radius: 1px;
  transition: width 0.3s ease;
}

.nav-links a:hover {
  color: #fff;
}

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

.nav-social {
  display: flex;
  align-items: center;
  gap: 16px;
}

.nav-social a {
  display: flex;
  align-items: center;
  color: rgba(224, 224, 232, 0.85);
  transition: color 0.3s ease;
}

.nav-social a:hover {
  color: #c084fc;
}

.nav-social svg {
  width: 18px;
  height: 18px;
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  width: 24px;
  height: 2px;
  background: #e0e0e8;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
  .nav-logo {
    font-size: 0.9rem;
  }

  .navbar.scrolled .nav-logo {
    font-size: 0.85rem;
  }

  .nav-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 260px;
    height: 100vh;
    flex-direction: column;
    background: rgba(10, 10, 15, 0.98);
    padding: 80px 32px 32px;
    gap: 24px;
    transition: right 0.3s ease;
    border-left: 1px solid rgba(255, 255, 255, 0.06);
  }

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

  .nav-social {
    display: none;
  }
}

/* ========================================
   Hero
   ======================================== */

.hero {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: url('../images/heroimage.jpg') center calc(100% + 150px) / cover no-repeat;
  background-color: #0a0a0f;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(10, 10, 15, 0.27);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-title {
  font-family: 'Poppins', sans-serif;
  font-size: 45px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: #fff;
  -webkit-text-stroke: 1px rgba(120, 120, 120, 0.6);
  letter-spacing: 0.16em;
}




@keyframes heroFadeIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

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

/* ========================================
   Sections
   ======================================== */

.section {
  padding: 50px 0 25px;
}

#music {
}

#follow {
  padding-top: 25px;
}

#band {
  padding-top: 25px;
}

#press {
  padding-top: 25px;
}

.section-title {
  font-family: 'Inter', sans-serif;
  font-size: 35px;
  font-weight: 700;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 15px;
  background: linear-gradient(135deg, #67e8f9, #22d3ee, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ========================================
   Music / Singles
   ======================================== */

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

.single-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.single-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 132, 252, 0.3);
}

.single-artwork {
  width: 100%;
  aspect-ratio: 1;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background: rgba(255, 255, 255, 0.05);
}

.single-artwork img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.single-title {
  font-size: 0.95rem;
  font-weight: 400;
  margin-bottom: 16px;
  color: rgba(224, 224, 232, 0.75);
}

.listen-links {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.listen-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(224, 224, 232, 0.7);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.listen-link svg {
  width: 24px;
  height: 24px;
}

.listen-link:hover {
  background: rgba(192, 132, 252, 0.2);
  color: #fff;
  transform: scale(1.1);
}

/* ========================================
   Follow / Social
   ======================================== */

#follow {
  background: radial-gradient(ellipse at 50% 50%, rgba(99, 102, 241, 0.08) 0%, transparent 60%);
}

.social-links {
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.social-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 24px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
  min-width: 110px;
}

.social-link svg {
  width: 32px;
  height: 32px;
  color: rgba(224, 224, 232, 0.7);
  transition: color 0.3s ease;
}

.social-link span {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(224, 224, 232, 0.5);
  transition: color 0.3s ease;
}

.social-link:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 132, 252, 0.3);
  background: rgba(255, 255, 255, 0.05);
}

.social-link:hover svg {
  color: #c084fc;
}

.social-link:hover span {
  color: #e0e0e8;
}

/* ========================================
   The Band
   ======================================== */

.band-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.band-image {
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: rgba(255, 255, 255, 0.05);
}

.band-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.band-text p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(224, 224, 232, 0.8);
  margin-bottom: 20px;
}

.band-text p:last-child {
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .band-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* ========================================
   Press
   ======================================== */

#press {
  background: radial-gradient(ellipse at 50% 50%, rgba(192, 132, 252, 0.06) 0%, transparent 60%);
}

.press-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.press-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 16px;
  padding: 24px;
  text-align: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.press-card:hover {
  transform: translateY(-4px);
  border-color: rgba(192, 132, 252, 0.3);
}

.press-logo {
  width: 160px;
  height: 160px;
  margin: 0 auto 20px;
  border-radius: 12px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
}

.press-logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: brightness 0.3s ease;
}

.press-logo:has(a:hover) {
  box-shadow: 0 0 0 2px rgba(192, 132, 252, 0.6);
}

.press-logo a:hover img {
  filter: brightness(1.3);
}

.press-quote {
  font-size: 0.95rem;
  font-style: normal;
  line-height: 1.6;
  color: rgba(224, 224, 232, 0.7);
  border: none;
}


/* ========================================
   Reveal Animations
   ======================================== */

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal:nth-child(5) { transition-delay: 0.4s; }
.reveal:nth-child(6) { transition-delay: 0.5s; }

/* ========================================
   Floating particles (hero background)
   ======================================== */

.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  background: rgba(192, 132, 252, 0.15);
  animation: float linear infinite;
}

@keyframes float {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0;
  }

  10% {
    opacity: 1;
  }

  90% {
    opacity: 1;
  }

  100% {
    transform: translateY(-100vh) scale(0.5);
    opacity: 0;
  }
}

/* ========================================
   Mobile Hero Overrides
   ======================================== */

@media (max-width: 768px) {
  .hero {
    min-height: 25vh;
    padding-top: 60px;
    padding-bottom: 10px;
    background-position: center center;
  }

  .hero-title {
    font-size: 24px;
  }
}
