/* === Reset & Base === */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  background: #000;
  color: #fff;
  font-family: 'Raleway', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  min-height: 100vh;
  overflow-x: hidden;
}

/* === Typography - Glare Effects === */
.glare-text {
  font-family: 'Cinzel', serif;
  color: #fff;
  text-shadow:
    0 0 10px rgba(255, 255, 255, 0.8),
    0 0 20px rgba(255, 255, 255, 0.5),
    0 0 40px rgba(255, 255, 255, 0.3),
    0 0 80px rgba(200, 200, 255, 0.15);
  letter-spacing: 0.08em;
}

.glare-text-subtle {
  font-family: 'Cinzel', serif;
  color: #fff;
  text-shadow:
    0 0 7px rgba(255, 255, 255, 0.6),
    0 0 15px rgba(255, 255, 255, 0.3),
    0 0 30px rgba(200, 200, 255, 0.1);
  letter-spacing: 0.05em;
}

/* === Navigation === */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.2rem 3rem;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.nav-brand {
  font-family: 'Cinzel', serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #fff;
  text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
}

.nav-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s, text-shadow 0.3s;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: #fff;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.5);
  transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #fff;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

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

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 5px;
}

.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  transition: transform 0.3s, opacity 0.3s;
}

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

.nav-hamburger.open span:nth-child(2) {
  opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(12px);
  z-index: 99;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mobile-menu.open {
  display: flex;
}

.mobile-link {
  font-family: 'Raleway', sans-serif;
  font-weight: 400;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.3s;
}

.mobile-link:hover {
  color: #fff;
}

/* === Sections === */
.section {
  display: none;
  min-height: 100vh;
  padding: 8rem 2rem 4rem;
}

.section.active {
  display: block;
}

.section-container {
  max-width: 900px;
  margin: 0 auto;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 0.5rem;
}

.divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
  margin: 1rem auto 2.5rem;
}

/* === Bio Section === */
.bio-container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.bio-header {
  text-align: center;
  margin-bottom: 2rem;
}

.artist-name {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.artist-aka {
  font-family: 'Raleway', sans-serif;
  font-size: 1.1rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.bio-content {
  width: 100%;
}

.bio-tagline {
  text-align: center;
  margin-bottom: 2.5rem;
}

.tagline {
  font-size: 1.4rem;
  font-weight: 400;
}

.bio-text {
  max-width: 650px;
  margin: 0 auto;
}

.bio-text p {
  margin-bottom: 1.5rem;
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.85);
}

.bio-text em {
  color: #fff;
  font-style: italic;
}

.bio-quote {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem !important;
  color: rgba(255, 255, 255, 0.5) !important;
  text-align: center;
  letter-spacing: 0.03em;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.5rem 0;
  margin-top: 2rem;
}

.bio-socials {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
  margin-top: 3rem;
}

.social-link {
  color: rgba(255, 255, 255, 0.5);
  transition: color 0.3s, transform 0.3s, filter 0.3s;
}

.social-link:hover {
  color: #fff;
  transform: translateY(-2px);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

/* === Discography Section === */
.disco-container {
  max-width: 1100px;
}

.disco-section-label {
  font-size: 1.3rem;
  text-align: center;
  margin-bottom: 1.8rem;
  margin-top: 1rem;
}

.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.5rem;
  margin-bottom: 3rem;
}

.album-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 1.5rem;
  transition: border-color 0.3s, background 0.3s, transform 0.3s, box-shadow 0.3s;
}

.album-card-link {
  display: block;
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

.album-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.album-art {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  border-radius: 4px;
  margin-bottom: 1rem;
  transition: opacity 0.3s;
}

.album-card:hover .album-art {
  opacity: 0.85;
}

.album-art-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.08));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: background 0.3s;
}

.album-card:hover .album-art-placeholder {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.12));
}

.album-icon {
  font-size: 2.5rem;
  color: rgba(255, 255, 255, 0.15);
  transition: color 0.3s;
}

.album-card:hover .album-icon {
  color: rgba(255, 255, 255, 0.3);
}

.album-title {
  font-family: 'Cinzel', serif;
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
  line-height: 1.3;
}

.album-meta {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.4);
  letter-spacing: 0.05em;
  margin-bottom: 0;
  line-height: 1.5;
}

/* Singles List */
.singles-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 3rem;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  overflow: hidden;
}

.single-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.5rem;
  text-decoration: none;
  color: inherit;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: background 0.3s;
}

.single-item:last-child {
  border-bottom: none;
}

.single-item:hover {
  background: rgba(255, 255, 255, 0.05);
}

.single-art {
  width: 48px;
  height: 48px;
  object-fit: cover;
  border-radius: 3px;
  flex-shrink: 0;
}

.single-icon {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.25);
  flex-shrink: 0;
}

.single-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.single-title {
  font-family: 'Cinzel', serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #fff;
  text-shadow: 0 0 4px rgba(255, 255, 255, 0.2);
}

.single-feat {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

.single-date {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  letter-spacing: 0.05em;
  flex-shrink: 0;
  text-align: right;
}

/* Beat Series */
.series-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.series-info h4 {
  font-family: 'Cinzel', serif;
  font-size: 1.15rem;
  margin-bottom: 0.8rem;
  text-shadow: 0 0 6px rgba(255, 255, 255, 0.2);
}

.series-info p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1rem;
}

.series-link {
  font-family: 'Raleway', sans-serif;
  font-size: 0.9rem;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: text-shadow 0.3s;
}

.series-link:hover {
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

/* === Listen / Shop Section === */
.listen-subtitle {
  text-align: center;
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 2.5rem;
  letter-spacing: 0.05em;
}

.platform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1.2rem;
  margin-bottom: 3rem;
}

.platform-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.8rem;
  padding: 2rem 1.5rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 8px;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.7);
  transition: all 0.3s;
}

.platform-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.2);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.platform-card svg {
  opacity: 0.7;
  transition: opacity 0.3s, filter 0.3s;
}

.platform-card:hover svg {
  opacity: 1;
  filter: drop-shadow(0 0 6px rgba(255, 255, 255, 0.3));
}

.platform-name {
  font-family: 'Raleway', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.05em;
}

.platform-action {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(255, 255, 255, 0.35);
}

.ffm-link-container {
  text-align: center;
}

.ffm-button {
  display: inline-block;
  font-size: 1.1rem;
  text-decoration: none;
  color: #fff;
  padding: 0.8rem 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  transition: all 0.3s;
}

.ffm-button:hover {
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

/* === Footer === */
.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 2rem;
}

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

.footer-text {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
}

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

.footer-links a {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.3);
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: rgba(255, 255, 255, 0.7);
}

/* === Responsive === */
@media (max-width: 768px) {
  .nav {
    padding: 1rem 1.5rem;
  }

  .nav-links {
    display: none;
  }

  .nav-hamburger {
    display: flex;
  }

  .section {
    padding: 6rem 1.2rem 3rem;
  }

  .artist-name {
    font-size: clamp(2.2rem, 12vw, 3.5rem);
  }

  .section-title {
    font-size: 2rem;
  }

  .platform-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-content {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .platform-grid {
    grid-template-columns: 1fr;
  }

  .discography-grid {
    grid-template-columns: 1fr;
  }

  .single-item {
    padding: 1rem;
    gap: 0.8rem;
  }

  .single-title {
    font-size: 0.88rem;
  }

  .single-feat {
    font-size: 0.75rem;
  }
}

/* === Animations === */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.section.active .bio-header,
.section.active .bio-content,
.section.active .section-title,
.section.active .discography-grid,
.section.active .singles-list,
.section.active .series-card,
.section.active .platform-grid {
  animation: fadeIn 0.6s ease forwards;
}

.section.active .bio-content {
  animation-delay: 0.2s;
}
