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

:root {
  --red:    #D93B10;
  --gold:   #F5A800;
  --green:  #2E8B1A;
  --dark:   #0d0d0d;
  --dark2:  #141414;
  --dark3:  #1a1a1a;
  --light:  #f0ece3;
  --white:  #ffffff;
  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--dark);
  color: var(--white);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

/* ── Nav ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 40px;
  background: rgba(13, 13, 13, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(245, 168, 0, 0.12);
}

.nav-logo {
  height: 48px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(245,168,0,0.3));
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 50px;
  padding: 10px 22px;
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-nav {
  background: #1DB954;
  color: #000;
  border: none;
}
.btn-nav:hover {
  background: #1ed760;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(29, 185, 84, 0.4);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--gold));
  color: var(--white);
  border: none;
  font-size: 0.9rem;
  padding: 14px 32px;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(245, 168, 0, 0.4);
  filter: brightness(1.1);
}

.btn-large {
  font-size: 1rem;
  padding: 16px 40px;
}

.btn-sm {
  font-size: 0.75rem;
  padding: 8px 16px;
}

.btn-ghost {
  background: transparent;
  color: rgba(255,255,255,0.25);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: default;
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 2px solid var(--gold);
  padding: 12px 28px;
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 168, 0, 0.35);
}

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 80px 20px 60px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 50% at 50% 60%, rgba(217, 59, 16, 0.18) 0%, transparent 70%),
    radial-gradient(ellipse 40% 40% at 70% 30%, rgba(245, 168, 0, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 40% 50% at 30% 70%, rgba(46, 139, 26, 0.12) 0%, transparent 60%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  max-width: 700px;
}

.hero-logo {
  width: min(420px, 85vw);
  height: auto;
  filter: drop-shadow(0 0 40px rgba(245, 168, 0, 0.25)) drop-shadow(0 4px 24px rgba(0,0,0,0.7));
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-10px); }
}

.hero-tagline {
  font-family: var(--font-body);
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--light);
  opacity: 0.85;
}

.hero-genres {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.hero-genres span:nth-child(1) { color: var(--red); }
.hero-genres span:nth-child(3) { color: var(--gold); }
.hero-genres span:nth-child(5) { color: var(--green); }
.hero-genres .dot { color: rgba(255,255,255,0.3); }

.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0.4;
  z-index: 1;
}

.hero-scroll-hint span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50%       { opacity: 1; transform: scaleY(1.15); }
}

/* ── Shared Section Styles ── */
.section-inner {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  line-height: 1;
  letter-spacing: 0.04em;
  margin-bottom: 16px;
}

.highlight {
  background: linear-gradient(135deg, var(--red), var(--gold), var(--green));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-sub {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  max-width: 480px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

/* ── Music Section ── */
.music {
  padding: 100px 0;
  background: var(--dark2);
  position: relative;
}

.music::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.player-wrap {
  max-width: 620px;
  margin: 0 auto 36px;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(245,168,0,0.12);
}

/* ── Discography Grid ── */
.discography-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 24px;
  margin-top: 56px;
  text-align: left;
}

.song-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.song-card:hover {
  transform: translateY(-6px);
  border-color: rgba(245,168,0,0.3);
  box-shadow: 0 16px 40px rgba(0,0,0,0.5);
}

.song-card--soon {
  opacity: 0.7;
}

.song-card--soon:hover {
  border-color: rgba(255,255,255,0.15);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.song-card__cover {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.song-card__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.song-card__cover-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(217,59,16,0.3), rgba(245,168,0,0.2), rgba(46,139,26,0.3));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
}

.song-card--soon .song-card__cover-placeholder {
  background: linear-gradient(135deg, rgba(255,255,255,0.05), rgba(255,255,255,0.02));
  font-size: 2.5rem;
  opacity: 0.4;
}

.song-card__badge {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.song-card__badge--out {
  background: var(--gold);
  color: #000;
}

.song-card__badge--soon {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  border: 1px solid rgba(255,255,255,0.12);
}

.song-card__body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.song-card__title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--white);
}

.song-card__release {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 8px;
}

/* ── Teaser Player ── */
.teaser-player {
  display: flex;
  align-items: center;
  gap: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,168,0,0.2);
  border-radius: 50px;
  padding: 8px 12px;
  width: 100%;
}

.teaser-play-btn {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--red), var(--gold));
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.teaser-play-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 4px 14px rgba(245,168,0,0.4);
}

.teaser-progress-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
  min-width: 0;
}

.teaser-progress-bar {
  flex: 1;
  height: 3px;
  background: rgba(255,255,255,0.12);
  border-radius: 3px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.teaser-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(to right, var(--red), var(--gold));
  border-radius: 3px;
  transition: width 0.1s linear;
  pointer-events: none;
}

.teaser-time {
  font-size: 0.65rem;
  font-weight: 600;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

.teaser-label {
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  white-space: nowrap;
  opacity: 0.7;
}

/* ── About Section ── */
.about {
  padding: 100px 24px;
  background: var(--dark);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  text-align: left;
}

.about-text .section-title { margin-bottom: 24px; }

.about-text p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
  font-size: 1rem;
  line-height: 1.8;
}

.about-text p em {
  color: var(--gold);
  font-style: normal;
  font-weight: 600;
}

.about-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  border: 2px solid rgba(245,168,0,0.25);
  background: radial-gradient(circle at center, rgba(245,168,0,0.08), transparent 70%);
  box-shadow: 0 0 60px rgba(245,168,0,0.1), inset 0 0 40px rgba(245,168,0,0.05);
  animation: pulse 4s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 60px rgba(245,168,0,0.1), inset 0 0 40px rgba(245,168,0,0.05); }
  50%       { box-shadow: 0 0 80px rgba(245,168,0,0.2), inset 0 0 60px rgba(245,168,0,0.1); }
}

.badge-note {
  font-size: 2.5rem;
  line-height: 1;
}

.badge-text {
  font-family: var(--font-display);
  font-size: 1.5rem;
  letter-spacing: 0.06em;
  color: var(--white);
}

.badge-sub {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Connect Section ── */
.connect {
  padding: 100px 24px;
  background: var(--dark2);
  position: relative;
}

.connect::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--red), transparent);
}

.connect-inner { text-align: center; }

.social-links {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.social-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 28px 32px;
  border-radius: 16px;
  text-decoration: none;
  color: var(--white);
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.06);
  min-width: 140px;
  transition: all 0.3s ease;
}

.social-card:hover { transform: translateY(-6px); }

.social-card.spotify:hover   { border-color: #1DB954; box-shadow: 0 12px 40px rgba(29,185,84,0.25); }
.social-card.instagram:hover { border-color: #E1306C; box-shadow: 0 12px 40px rgba(225,48,108,0.25); }
.social-card.tiktok:hover    { border-color: #69C9D0; box-shadow: 0 12px 40px rgba(105,201,208,0.25); }
.social-card.facebook:hover  { border-color: #1877F2; box-shadow: 0 12px 40px rgba(24,119,242,0.25); }
.social-card.twitter:hover   { border-color: #ffffff; box-shadow: 0 12px 40px rgba(255,255,255,0.15); }

.social-card.spotify   svg { color: #1DB954; }
.social-card.instagram svg { color: #E1306C; }
.social-card.tiktok    svg { color: #69C9D0; }
.social-card.facebook  svg { color: #1877F2; }
.social-card.twitter   svg { color: #ffffff; }

.social-name {
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

.social-action {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.booking-cta {
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.booking-cta p {
  color: rgba(255,255,255,0.5);
  margin-bottom: 20px;
  font-size: 0.95rem;
}

/* ── Footer ── */
.footer {
  padding: 48px 24px;
  text-align: center;
  background: #080808;
  border-top: 1px solid rgba(255,255,255,0.04);
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  opacity: 0.7;
  filter: drop-shadow(0 0 8px rgba(245,168,0,0.2));
}

.footer p {
  color: rgba(255,255,255,0.25);
  font-size: 0.8rem;
  margin-bottom: 4px;
}

.footer-genres {
  letter-spacing: 0.2em;
  font-size: 0.7rem !important;
  color: rgba(245,168,0,0.35) !important;
}

/* ── Responsive ── */
@media (max-width: 700px) {
  .nav { padding: 12px 20px; }
  .nav-logo { height: 38px; }
  .btn-nav span { display: none; }

  .about-inner {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  .about-text .section-label,
  .about-text .section-title { text-align: center; }

  .social-links { gap: 14px; }
  .social-card { min-width: 110px; padding: 22px 20px; }
}
