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

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  background: #050505;
  color: #ffffff;
  overflow-x: hidden;
}

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

img,
video {
  display: block;
  width: 100%;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0));
  backdrop-filter: blur(6px);
}

.logo {
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 1px;
  animation: fadeInDown 0.9s ease forwards;
}

.desktop-nav {
  display: flex;
  gap: 34px;
}

.desktop-nav a {
  position: relative;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255, 255, 255, 0.82);
  transition: 0.3s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #ffffff;
}

.desktop-nav a.active::after,
.desktop-nav a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 2px;
  background: #ffffff;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.desktop-socials {
  display: flex;
  align-items: center;
  gap: 18px;
}

.desktop-socials a {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.92);
  transition: 0.3s ease;
}

.desktop-socials a:hover {
  transform: translateY(-3px) scale(1.08);
  color: #ffffff;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.menu-toggle span {
  width: 28px;
  height: 2px;
  background: #ffffff;
  transition: 0.3s ease;
}

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

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

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

.mobile-menu {
  position: absolute;
  top: 84px;
  left: 20px;
  right: 20px;
  background: rgba(10, 10, 10, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px;
  display: none;
  flex-direction: column;
  gap: 20px;
  border-radius: 18px;
  animation: fadeInUp 0.35s ease;
}

.mobile-menu a {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #ffffff;
}

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

.mobile-socials {
  display: flex;
  gap: 18px;
  padding-top: 10px;
}

.mobile-socials a {
  font-size: 1.2rem;
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 48px 60px;
  overflow: hidden;
  background: #000;
}

.hero-video {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  filter: brightness(1.08) contrast(1.05) saturate(1.08);
  transform: scale(1.04);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.32) 10%, rgba(0, 0, 0, 0.08) 45%, rgba(0, 0, 0, 0.18) 100%);
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 640px;
}

.hero-glow {
  position: absolute;
  width: 500px;
  height: 500px;
  right: -120px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(255,255,255,0.08), transparent 70%);
  filter: blur(50px);
  z-index: 1;
  pointer-events: none;
}

.eyebrow {
  font-size: 0.9rem;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 22px;
}

.hero h1 {
  font-size: clamp(4.5rem, 11vw, 8.5rem);
  font-weight: 900;
  line-height: 0.92;
  letter-spacing: -4px;
  margin-bottom: 18px;
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
}

.hero-text {
  font-size: 1.15rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.92);
  max-width: 520px;
  margin-bottom: 34px;
}

.hero-buttons {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 24px;
  border-radius: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: 0.3s ease;
}

.btn-primary {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 10px 30px rgba(255, 255, 255, 0.12);
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
}

.btn-secondary {
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
  padding-left: 0;
  padding-right: 0;
}

.btn-secondary:hover {
  color: rgba(255, 255, 255, 0.8);
  transform: translateX(4px);
}

.music-section,
.connect-section {
  padding: 90px 48px;
  background: #050505;
}

.section-label {
  font-size: 0.85rem;
  letter-spacing: 7px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 28px;
}

.music-grid {
  display: grid;
  grid-template-columns: 280px 1fr 360px;
  gap: 34px;
  align-items: end;
}

.single-cover img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.35);
}

.artist-name {
  font-size: 1rem;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.single-info h2 {
  font-size: clamp(2.4rem, 5vw, 4.2rem);
  line-height: 0.95;
  margin-bottom: 14px;
  font-weight: 900;
}

.release-tag {
  font-size: 1rem;
  letter-spacing: 10px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 28px;
}

.platform-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 420px;
}

.platform-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 18px 20px;
  color: #ffffff;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.platform-btn span {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
}

.platform-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateX(6px);
}

.shows-box {
  border: 1px solid rgba(255, 255, 255, 0.12);
  padding: 34px 28px;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: rgba(255, 255, 255, 0.02);
}

.shows-label {
  font-size: 0.8rem;
  letter-spacing: 6px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 22px;
}

.shows-box h3 {
  font-size: 2.6rem;
  font-weight: 900;
  margin-bottom: 16px;
}

.shows-box p {
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.8;
  margin-bottom: 24px;
}

.view-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: 0.3s ease;
}

.view-link:hover {
  transform: translateX(4px);
}

.connect-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.connect-card {
  min-height: 140px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: 0.3s ease;
  background: rgba(255, 255, 255, 0.02);
}

.connect-card i {
  font-size: 2rem;
}

.connect-card span {
  font-size: 1.05rem;
  font-weight: 600;
}

.connect-card:hover {
  background: rgba(255, 255, 255, 0.05);
  transform: translateY(-6px);
}

.site-footer {
  padding: 30px 48px 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.92rem;
}

/* entrance animations */
.animate-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.9s ease forwards;
}

.delay-1 { animation-delay: 0.15s; }
.delay-2 { animation-delay: 0.3s; }
.delay-3 { animation-delay: 0.45s; }
.delay-4 { animation-delay: 0.6s; }

.hover-float {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.hover-float:hover {
  transform: translateY(-8px);
}

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

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

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

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tablet */
@media (max-width: 1100px) {
  .music-grid {
    grid-template-columns: 1fr;
    gap: 26px;
  }

  .single-cover {
    max-width: 320px;
  }

  .shows-box {
    max-width: 500px;
  }

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

/* Mobile */
@media (max-width: 768px) {
  .site-header {
    padding: 20px 20px;
  }

  .desktop-nav,
  .desktop-socials {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero {
    min-height: 100vh;
    align-items: flex-end;
    padding: 110px 20px 36px;
  }

  .hero-video {
    object-position: center;
    filter: brightness(1.12) contrast(1.05) saturate(1.05);
  }

  .hero::before {
    background: linear-gradient(to top, rgba(0,0,0,0.52) 8%, rgba(0,0,0,0.06) 45%, rgba(0,0,0,0.18) 100%);
  }

  .hero-content {
    max-width: 100%;
  }

  .eyebrow {
    font-size: 0.78rem;
    letter-spacing: 7px;
    margin-bottom: 16px;
  }

  .hero h1 {
    font-size: clamp(4rem, 20vw, 6rem);
    letter-spacing: -2px;
    margin-bottom: 14px;
  }

  .hero-text {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 24px;
    max-width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }

  .btn {
    justify-content: center;
    width: 100%;
  }

  .btn-secondary {
    border: 1px solid rgba(255, 255, 255, 0.24);
    padding: 16px 24px;
  }

  .music-section,
  .connect-section {
    padding: 70px 20px;
  }

  .section-label {
    font-size: 0.78rem;
    letter-spacing: 5px;
    margin-bottom: 22px;
  }

  .single-cover {
    max-width: 100%;
  }

  .single-info h2 {
    font-size: 3.2rem;
  }

  .release-tag {
    letter-spacing: 7px;
    font-size: 0.95rem;
  }

  .shows-box h3 {
    font-size: 2.1rem;
  }

  .connect-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .connect-card {
    min-height: 110px;
    padding: 16px;
  }

  .connect-card i {
    font-size: 1.7rem;
  }

  .connect-card span {
    font-size: 0.95rem;
  }

  .site-footer {
    padding: 24px 20px 32px;
  }
}

@media (max-width: 480px) {
  .logo {
    font-size: 1.7rem;
  }

  .hero h1 {
    font-size: 4.5rem;
  }

  .single-info h2 {
    font-size: 2.7rem;
  }

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