/* Universal Box-Sizing Reset */
*, *::before, *::after {
  box-sizing: border-box;
}


#music, #pricing, #purchase, #contact {
  background-image: url("../assets/other_img/bg5.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* Keeps it fixed when zooming */
  animation: fadeInOut 4s infinite;
}

/* Global Reset */
html, body {
  margin: 0;
  padding: 0;
  font-family: 'Open Sans', sans-serif;
  overflow-y: scroll;
  overflow-x: hidden;
  width: 100vw;
  background: transparent;  /* No fixed global background */
  scroll-behavior: smooth;
  scroll-snap-type: y mandatory;
}



/* Fixed Header Styling */
#fixed-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: #000;  /* Black header background */
  padding: 10px 0;
  z-index: 1000;
}

/* Header Menu Container */
#header-menu {
  max-width: 615px;
  margin: 0 auto;
  text-align: center;
}

/* Header Menu List */
#header-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Header Menu Items */
#header-menu li {
  display: flex;
  align-items: center;
}

/* Header Menu Links */
#header-menu a {
  color: white;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-size: 18px;
  padding: 10px 15px;
  position: relative;
}

/* Underline Effect */
#header-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background-color: #DC1C57;
  transition: width 1.0s ease;
}

/* Hover Effect: Animate underline */
#header-menu a:hover::after {
  width: 100%;
}

#header-menu .menu-logo img {
  height: 50px;
  width: auto;
  margin: 0 10px;
}

/* Base Section Styling */
section {
  position: relative;
  width: 100%;
  min-height: 100vh;
  padding-top: 80px;  /* Space for fixed header */
  box-sizing: border-box;
}

/* Home Section */
#music {
    width: 100vw;
    height: 100vh;
    margin: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Center the music player within Home */
#music .content-wrapper {
  height: calc(100vh - 80px);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}