html {
  background-color: #000;
}

body {
  height: 100%;
  margin: 0;
  background-color: #000000;
}

body.music-page {
  background-color: transparent;
}

#main {
  display: flex;
  flex-flow: column;
  width: 100%;
  height: 90%;
}

#maincontent {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  min-height: 100%;
}

#maincontent .social-icons {
  display: flex;
  justify-content: center;
  gap: 5%;
  width: 100%;
  padding: 20px 0;
}

#maincontent .social-icons a {
  flex-shrink: 0;
}

#img_spotify,
#img_apple,
#img_soundcloud,
#img_bandcamp,
#img_instagram {
  position: static;
  padding: 5px;
  display: inline-block;
}

nav {
  background: #000;
  padding: 1rem;
  font-family: 'i_idekuregular', Arial, sans-serif;
  font-size: 60px;
  position: relative;
}

nav ul {
  display: flex;
  list-style-type: none;
  margin: 0;
  padding: 0;
  justify-content: space-around;
}

nav a {
  background: #B7665C;
  background: linear-gradient(to right, #B7665C 0%, #FED8CB 50%, #B7665C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

/* Hamburger menu button - hidden by default */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 1000;
}

.menu-toggle span {
  display: block;
  width: 35px;
  height: 4px;
  background: #FED8CB;
  margin: 6px 0;
  transition: 0.3s;
  border-radius: 2px;
}

/* Mobile styles */
@media screen and (max-width: 768px) {
  nav {
    font-size: 40px;
  }

  .menu-toggle {
    display: block;
  }

  nav ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #000;
    padding: 1rem 0;
    border-top: 2px solid #B7665C;
  }

  nav ul.active {
    display: flex;
  }

  nav ul li {
    padding: 1rem;
    text-align: center;
    border-bottom: 1px solid #333;
  }

  nav ul li:last-child {
    border-bottom: none;
  }

  /* Animate hamburger to X */
  .menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-8px, 6px);
  }

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

  .menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-8px, -6px);
  }
}

#maincontent p {
  background: #CC7867;
  background: linear-gradient(to right, #CC7867 0%, #FED8CB 50%, #CC7867 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

#maincontent #sectionlabels {
  background: #B7665C;
  background: linear-gradient(to right, #B7665C 47%, #FED8CB 50%, #B7665C 53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

#maincontent.events-content {
  justify-content: flex-start;
  padding-top: 50px;
}

#maincontent.about-content {
  justify-content: flex-start;
  padding-top: 50px;
}

#maincontentmusic::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: #000 url('pulse_logo_dark.jpg') no-repeat center top / cover;
}

#maincontentmusic p {
  background: #CC7867;
  background: linear-gradient(to right, #CC7867 0%, #FED8CB 50%, #CC7867 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

#maincontentmusic #sectionlabels {
  background: #B7665C;
  background: linear-gradient(to right, #B7665C 47%, #FED8CB 50%, #B7665C 53%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}

a {
  background: #B7665C;
  background: linear-gradient(to right, #B7665C 0%, #FED8CB 50%, #B7665C 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
}