/* =======================
   Global Styles
======================= */

body {
  margin: 0;
  min-height: 100vh;
  font-family: 'Instrument Sans', 'Segoe UI', sans-serif;
  background-color: #E0E0E0;
  overflow-x: hidden;
  overflow-y: auto;

  scrollbar-width: none;
  -ms-overflow-style: none;
}

body::-webkit-scrollbar {
  display: none;
}

/* =======================
   Background Particles
======================= */

#particles-js {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: auto;
}

/* =======================
   Content Layer
======================= */

#content {
  position: relative;
  z-index: 1;
  pointer-events: none;
}

/* =======================
   Section Layout
======================= */

section {
  padding: clamp(120px, 20vh, 300px) 0;
  text-align: center;
}

#hero {
  padding-top: 80px;
}

/* =======================
   Images
======================= */

#main {
  display: block;
  margin: 0 auto;
}

#overview,
#releases {
  pointer-events: none;
}

#releases {
    padding-bottom: 20px;
}

#overview img,
#releases img {
  max-width: 100%;
}

.overview-mobile {
  display: none;
}

/* =======================
   Spotify Embed
======================= */

#spotify-player {
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem;
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding-top: 40px;
  padding-bottom: 80px;
}

/* =======================
   Accessibility
======================= */

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* =======================
   Mobile Design
======================= */

@media (max-width: 768px) {
  section {
    padding: clamp(80px, 16vh, 200px) 0;
  }

  #hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    padding-bottom: 0;
  }

  .overview-desktop {
    display: none;
  }

  #main {
    max-width: 95%;
  }

  .overview-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .overview-mobile img {
    width: 75%;
    height: auto;
  }

  #releases img {
    max-width: 80%;
  }

  #spotify-player {
    max-width: 100%;
    padding: 1.5rem;
    padding-top: 24px;
  }
}

@media (max-width: 480px) {
  section {
    padding: clamp(60px, 14vh, 160px) 0;
  }

  .overview-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }

  .overview-mobile img {
    width: 75%;
    height: auto;
  }

  #spotify-player {
    padding: 1rem;
  }
}
