/* =========================
   RESET & GLOBAL
========================= */

*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

body{
  font-family:'Poppins',sans-serif;
  background:#120018;
  color:#fff;
}

.music-hero,
.page-content{
  margin-top:50px;
}

html{
  scroll-behavior:smooth;
}

/* =========================
   SECTION SPACING
========================= */

.music-hero,
.spotify-section,
.originals,
.albums{
  position:relative;
  padding:60px 8% 90px;
  background:#120018;
  color:#fff;
   
}

.music-hero::before,
.spotify-section::before,
.originals::before,
.albums::before{
  content:"";
  position:absolute;
  inset:0;
  background:radial-gradient(
    circle at top,
    rgba(243,193,109,.14),
    transparent 60%
  );
  pointer-events:none;
}

/* =========================
   SCROLL TARGETS
========================= */

#home,
#topmusic,
#originals,
#albums{
  scroll-margin-top:90px;
}

/* =========================
   TITLES
========================= */

.section-title,
.music-hero-content{
  text-align:center;
  margin-bottom:30px;
}

.section-title h2,
.music-hero-content h1{
  color:#f3c16d;
  font-size:2rem;
  margin-bottom:10px;
}

.section-title p,
.music-hero-content p{
  opacity:.8;
  font-size:.95rem;
}

/* =========================
   LATEST TRACK
========================= */

.latest-label{
  display:inline-block;
  padding:8px 18px;
  border:1px solid #f3c16d;
  border-radius:30px;
  color:#f3c16d;
  margin-bottom:25px;
  font-size:.9rem;
  letter-spacing:1px;
}

.latest-btn{
  display:inline-block;
  margin-top:30px;
  padding:14px 28px;
  background:#f3c16d;
  color:#120018;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.latest-btn:hover{
  transform:translateY(-4px);
}

/* =========================
   TRACK CARD
========================= */

.track-card-split{
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 40px 8%;
}

/* LEFT SIDE (VIDEO) */
.track-cover{
  flex: 1;
}

.track-cover iframe{
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 12px;
  display: block;
}

/* RIGHT SIDE (INFO) */
.track-info{
  flex: 1;
}

.track-info h2{
  font-size: 2.5rem;
  color: #f3c16d;
  margin-bottom: 10px;
}

.track-info p{
  margin-bottom: 10px;
  line-height: 1.6;
  opacity: 0.9;
}

/* =========================
   BUTTONS
========================= */

.spotify-btn{
  display:inline-block;
  padding:12px 22px;
  background:#1DB954;
  color:#fff;
  border-radius:30px;
  text-decoration:none;
  font-weight:600;
  transition:.3s;
}

.spotify-btn:hover{
  background:#17a74a;
  transform:translateY(-3px);
}

/* =========================
   GRIDS
========================= */

.spotify-grid,
.originals-grid{
  display:flex;
  flex-direction:column;
  gap:20px;
  max-width:700px;
  margin:auto;
}

/* =========================
   CARDS
========================= */

.spotify-card,
.originals-card{
  background:#1e0a28;
  padding:18px;
  border-radius:20px;
  box-shadow:0 10px 25px rgba(0,0,0,.3);
  transition:.3s;
}

.spotify-card:hover,
.originals-card:hover{
  transform:translateY(-5px);
}

.spotify-card iframe,
.originals-card iframe{
  width:100%;
  height:500px;
  border:none;
  border-radius:12px;
}

/* =========================
   ALBUMS
========================= */

.album-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:20px;
  max-width:700px;
  margin:auto;
}

.album-card{
  background:#1e0a28;
  border-radius:18px;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  box-shadow:0 8px 20px rgba(0,0,0,.35);
  transition:.25s;
}

.album-card:hover{
  transform:translateY(-4px);
  box-shadow:0 12px 30px rgba(0,0,0,.45);
}

.album-card img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
}

.album-info{
  padding:14px 16px;
}

.album-info h3{
  color:#f3c16d;
  margin-bottom:6px;
}

.album-info p{
  opacity:.8;
  line-height:1.3;
  font-size:.9rem;
}

/* =========================
   FOOTER
========================= */

footer{
  text-align:center;
  padding:30px;
  background:#0d0013;
  margin-top:60px;
}

/* =========================
   MOBILE
========================= */
@media (max-width:768px){

  /* TRACK CARD */
  .track-card-split{
    flex-direction: column;
    gap: 12px;
    padding: 20px 5%;
    align-items: stretch;
  }

  .track-cover iframe{
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 12px;
    display: block;
  }

  .track-info{
    width: 100%;
    text-align: left;
  }

  .track-info h2{
    font-size: 1.2rem;
  }

  .track-info p{
    font-size: 0.85rem;
    line-height: 1.4;
  }

  /* GRIDS */
  .spotify-grid,
  .originals-grid{
    gap: 18px;
  }

  .spotify-card iframe,
  .originals-card iframe{
    height: 420px;
  }

  .album-grid{
    grid-template-columns: 1fr;
  }

  .album-card img{
    height: 200px;
  }

  /* SECTIONS */
  .music-hero,
  .spotify-section,
  .originals,
  .albums{
    margin-top: 30px;
    padding: 60px 8% 90px;
  }

  .page-content{
    margin-top: 30px;
  }
}
