body {
  margin: 0;
  padding: 0;
  font-family: "Archivo", Arial, sans-serif;
  font-weight: 400;
  background-color: black;
  color: white;
  scroll-behavior: smooth;
}

section > div {
  width: 100%;
  margin: 0 30px;
}

h1,
h2,
h3,
h4,
h5 {
  text-transform: uppercase;
  font-weight: 600;
}

h5 {
  font-size: 18px;
}

a {
  text-decoration: none;
  color: white;
}

a:hover {
  text-decoration: underline;
}

header>nav {
  display: flex;
  justify-content: start;
  text-transform: uppercase;
  font-weight: 600;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background-color: transparent;
  z-index: 1000;
  padding: 1em 0;
}

header>nav:has(ul.visible) {
  background-color: rgba(0, 0, 0, 0.9);
}

header>nav>ul,
header>nav .hamburger {
  display: none;
}

header>nav>ul.visible {
  display: flex;
}

header>nav .hamburger.visible {
  display: block;
}

header>nav .hamburger {
  margin-left: 10px;
  border: 0;
  background: transparent;
}

nav ul {
  list-style: none;
  padding-left: 25px;
  flex-direction: column;
}

nav ul li {
  margin: 0.5em 0;
}

nav a {
  position: relative;
  color: white;
  text-decoration: none;
  font-weight: bold;
  padding-bottom: 2px;
  transition: color 0.3s ease;
}

nav a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background-color: white;
  transition: width 0.3s ease;
}

nav a.active {
  color: #f0f0f0;
  /* Light gray for better contrast */
}

nav a.active::after {
  width: 100%;
}


.section {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1em;
}

#home {
  position: relative;
  overflow: hidden;
}

#home iframe[src^="https://www.youtube.com/embed"] {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

section#contact {
  position: relative;
}

section#contact ul.social-links {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  list-style: none;
  display: flex;
  flex-direction: row;
  column-gap: 20px;
  justify-content: center;
  padding-inline-start: unset;
}

section#contact ul.social-links span {
  display: none;
}

section#music {
  background: url(/images/bg_music_section.jpg) no-repeat center;
  background-size: cover;
  align-items: end;
}

section#music .music-links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

section#music .music-links img {
  max-width: 200px;
}

section#music iframe:first-of-type {
  color: #f0f0f0;
  margin-top: 50px;
}

div.gigs-widget {
  max-height: 650px;
  overflow: scroll;
  overflow-y: auto;
}

@media (min-width: 768px) {
  header>nav {
    display: flex;
    justify-content: start;
    text-transform: uppercase;
    font-weight: 600;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 1000;
    padding: 1em 0;
  }
  
  nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: row;
  }

  header>div {
    display: none;
  }

  header>nav {
    display: flex;
    justify-content: center;
  }

  nav ul li {
    margin: 0 1em;
  }

  header>nav .hamburger.visible {
    display: none;
  }

  header>nav>ul {
    display: flex;
  }

  section > div {
    margin: 0 200px;
  }

  section#music iframe:first-of-type {
    margin-bottom: 10px;
  }
  
  section#music iframe {
    margin-bottom: 35px;
  }

  section#music .music-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    padding-bottom: 50px;
  }
  
}
