/* =========================
   RESET
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* =========================
   BASE
========================= */
html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', sans-serif;
  background: #000;
  color: #fff;
  line-height: 1.6;
}

/* =========================
   FIXED BACKGROUND LOGO
========================= */
.logo-bg {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  opacity: 0.38;
  z-index: -1;
  pointer-events: none;
}

/* =========================
   HERO
========================= */
.hero {
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content {
  animation: fadeUp 1s ease;
}

.title {
  font-size: 2.5rem;
  letter-spacing: 3px;
  margin-bottom: 10px;
}

.tagline {
  font-size: 1.3rem;
  color: #ccc;
  margin-bottom: 30px;
  text-shadow: 0 0 10px rgba(255,255,255,0.15);
}

/* =========================
   BUTTONS
========================= */
.buttons {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 24px;
  border: 1px solid #fff;
  color: #fff;
  text-decoration: none;
  transition: 0.3s;
}

.btn.primary {
  background: #fff;
  color: #000;
}

.btn:hover {
  background: #fff;
  color: #000;
  box-shadow: 0 0 15px rgba(255,255,255,0.4);
}

/* =========================
   SECTIONS
========================= */
.section {
  max-width: 900px;
  margin: auto;
  padding: 80px 20px;

  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1s ease forwards;
}

.section:nth-of-type(1) { animation-delay: 0.2s; }
.section:nth-of-type(2) { animation-delay: 0.4s; }
.section:nth-of-type(3) { animation-delay: 0.6s; }

h2 {
  font-size: 1.6rem;
  margin-bottom: 25px;
  border-bottom: 1px solid #333;
  padding-bottom: 8px;
}

/* =========================
   MUSIC
========================= */
.music-card {
  background: linear-gradient(145deg, #111, #0a0a0a);
  padding: 25px;
  border-radius: 12px;
  border: 1px solid #222;
  box-shadow: 0 0 30px rgba(0,0,0,0.6);
}

.music-card iframe {
  width: 100%;
  height: 160px;
  border: none;
  margin-top: 15px;
}

/* =========================
   SOCIALS
========================= */
.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.social-links a {
  padding: 10px 15px;
  border: 1px solid #333;
  text-decoration: none;
  color: #fff;
  transition: 0.3s;
}

.social-links a:hover {
  background: #fff;
  color: #000;
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 30px 20px;
  font-size: 0.85rem;
  color: #888;
}

.footer-links {
  margin-top: 10px;
}

.footer-links a {
  margin: 0 8px;
  color: #888;
  text-decoration: none;
}

/* =========================
   ANIMATION
========================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* =========================
   MOBILE
========================= */
@media (max-width: 768px) {

  .logo-bg {
    width: 100%;
    opacity: 0.30;
  }

  .title {
    font-size: 1.8rem;
  }

  .tagline {
    font-size: 1.1rem;
  }

  .buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    text-align: center;
  }

  .section {
    padding: 60px 15px;
  }
}