html, body {
  --accent: #d32f2f
}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  font-family: 'Montserrat', Arial, sans-serif;
  color: #fff;
  background: #1a1a1a;
  min-height: 100vh
}

body {
  cursor: url('cursor.png'), auto;
  position: relative;
  min-height: 100vh;
  box-sizing: border-box
}

.main-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding-top: 80px;
  padding-bottom: 60px;
  max-width: 1200px;
  margin: 0 auto
}

.rock-headline {
  font-size: 5em;
  color: var(--accent);
  text-shadow: 0 2px 5px #000;
  margin-top: 0;
  margin-bottom: 0.5em;
  font-family: 'Metal Mania', cursive, sans-serif
}

.box {
  max-width: 910px;
  width: 90%;
  margin: 25px auto 40px auto;
  background: rgba(20, 20, 20, 0.66);
  padding: 1.5em 1em;
  border: 3px solid var(--accent);
  border-top: 0;
  font-size: 1.1em;
  box-shadow: 0 0 16px #000a;
  text-align: center;
  border-bottom-left-radius: 50px;
  border-bottom-right-radius: 50px;
  box-sizing: border-box
}

.box img {
  max-width: 100%;
  height: auto
}

#bg-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: 0;
  filter: grayscale(70%) brightness(0.5)
}

.overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.66);
  z-index: 1
}

.shows ul {
  padding: 0;
  list-style: none
}

.gig-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #555
}

.gig-item > div {
  display: flex;
  flex-direction: column
}

.gig-item .gig-date-year {
  padding-left: 20px;
}

.gig-item .date {
  font-size: 1.2em;
  font-weight: bold
}

.gig-item .gig-location {
  width: 100%;
  padding-left: 20px
}

.gig-item .location {
  font-size: 1.2em;
  font-weight: bold
}

.gig-item:last-child {
  border-bottom: none
}

.media .youtube-wrapper {
  position: relative;
  padding-top: 56.25%;
  height: 0;
  overflow: hidden;
  margin-bottom: 40px
}

.media .youtube-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0
}

.media .spotify-wrapper {
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center
}

.media .spotify-wrapper iframe {
  border-radius: 12px;
  width: 100%;
  max-width: 700px;
  height: 380px;
  border: none
}

.photos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-bottom: 25px;
  width: 100%;
  max-width: 900px
}

.photo {
  width: 170px;
  height: 170px;
  background: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px #0007;
  border: 3px solid var(--accent);
  background-size: cover;
  background-position: center;
  font-size: 1em;
  color: #fff;
  flex-shrink: 0
}

.socials {
  margin: 18px 0 40px 0;
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%
}

.socials a {
  display: inline-block;
  font-size: 4em;
  padding: 8px 11px;
  color: #fff;
  background: var(--accent);
  border-radius: 50%;
  text-decoration: none;
  transition: filter 0.2s;
  width: 80px;
}

.socials a:hover {
  filter: brightness(1.2) drop-shadow(0 0 6px #ff7171)
}

@media (max-width:900px) {
  .bandbio, .media, .photos {
    max-width: 95vw
  }

 .socials {
 flex-wrap: wrap;
  }

  .rock-headline {
    max-width: 95vw
  }

  .media .spotify-wrapper iframe {
    max-width: 90vw;
    height: 90px
  }

  .photo {
    width: 140px;
    height: 140px
  }

}

@media (max-width:600px) {
  .media .spotify-wrapper {
    flex-direction: column;
    gap: 15px
  }

  .rock-headline {
    font-size: 2.5em;
  }


}

@media (max-width:380px) {
  .photo {
    width: 110px;
    height: 110px
  }

}
