* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  scrollbar-gutter: stable;
}

body {
  font-family: 'Alegreya Sans', sans-serif;
  font-size: 20px;
  font-weight: 500;
  background-color: #111;
  color: #dac898;
  letter-spacing: 1px;
  line-height: 1.3em;
  display: flex;
  flex-direction: column;
  align-items: center;
}

a {
  color: #dac898;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

#a-song-list,
#a-song-samples {
  scroll-margin-top: 20px;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 16px;
  background: #fff;
  color: #000;
  padding: 12px 24px;
  border-radius: 0 0 8px 8px;
  font-size: 1rem;
  font-weight: 700;
  text-decoration: none;
  z-index: 1000;
  transition: top .2s;
}

.skip-link:focus {
  top: 0;
}

/* ---------- background ---------- */

.index-bg,
.events-bg {
  position: fixed;
  inset: 0;
  background: center/cover no-repeat;
  opacity: 0.35;
  z-index: -1;
  will-change: transform;
}

.index-bg {
  background-image: url('images/index-bg.webp');
}

.events-bg {
  background-image: url('images/events-bg.webp');
}

/* ---------- banner ---------- */

.banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 100%;
  background-color: #000;
  padding: 0 48px;
}

/* ---------- logo ---------- */

.logo {
  max-width: 520px;
  width: 50vw;
  height: auto;
  filter: drop-shadow(0 2px 20px rgb(0 0 0 / 70%));
}

/* ---------- home banner ---------- */

.banner-home {
  justify-content: center;
}

.page-links-left,
.page-links-right {
  display: flex;
  gap: 24px;
  flex: 1;
  font-size: 1.15rem;
}

.page-links-left {
  justify-content: flex-end;
  padding-right: 32px;
}

.page-links-right {
  justify-content: flex-start;
  padding-left: 32px;
}

.page-links-left a,
.page-links-right a {
  color: #dad8c8;
  font-size: 1.15rem;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color .25s;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
}

.page-links-left a:hover,
.page-links-right a:hover {
  color: #fff;
}

.socials-corner {
  position: absolute;
  top: 16px;
  right: 40px;
  display: flex;
  gap: 16px;
}

.socials-corner a {
  color: #dad8c8;
  font-size: 1rem;
  transition: color .25s, transform .25s;
  text-decoration: none;
}

.socials-corner a:hover {
  color: #fff;
  transform: scale(1.2);
}

/* ---------- two-col section ---------- */

.two-col {
  display: flex;
  align-items: flex-start;
  width: 100%;
  max-width: 1000px;
  gap: 48px;
  padding: 8vh 48px;
}

.section-dark {
  background: #000;
  max-width: 100%;
  padding-left: 100px;
  padding-right: 100px;
}

.col-text {
  flex: 1;
}

.col-text h2 {
  font-family: Modak, system-ui;
  font-size: 2.5em;
  font-weight: 400;
  letter-spacing: 1px;
  line-height: 0.75em;
  text-align: left;
  margin-bottom: 16px;
  color: #fff;
}

.col-text p {
  font-size: 18px;
  color: #dac898;
  margin-bottom: 16px;
  letter-spacing: 1px;
}

.col-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.col-image img {
  max-width: 75%;
  height: auto;
  border-radius: 600px;
}

/* ---------- song list ---------- */

.song-list {
  list-style: none;
  margin-top: 12px;
  line-height: 1em;
}

.song-list li {
  font-size: 17px;
  color: #fff;
  margin-bottom: 4px;
  letter-spacing: 0.5px;
}

.song-list li .song-artist {
  color: #dac898;
  font-size: 14px;
}

.songs-divider {
  margin-top: 28px;
}

/* ---------- audio player ---------- */

.audio-player {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 12px 16px;
  background: #fff;
  border-radius: 8px;
}

.audio-player:first-of-type {
  margin-top: 8px;
}

.play-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 2px solid #333;
  background: transparent;
  color: #333;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .25s, color .25s;
  flex-shrink: 0;
}

.play-btn:hover {
  background: #333;
  color: #fff;
}

.track-info {
  flex: 1;
  min-width: 0;
}

.track-title {
  font-size: 15px;
  color: #333;
  letter-spacing: 0.5px;
  display: block;
  margin-bottom: 4px;
}

.track-title em {
  color: #555;
}

.track-controls {
  display: flex;
  align-items: center;
  gap: 8px;
}

.time-current,
.time-duration {
  font-size: 12px;
  color: #555;
  font-variant-numeric: tabular-nums;
  min-width: 32px;
}

.time-current {
  text-align: right;
}

.progress-bar {
  flex: 1;
  height: 4px;
  background: rgb(0 0 0 / 15%);
  border-radius: 2px;
  cursor: pointer;
  position: relative;
}

.progress-fill {
  height: 100%;
  background: #333;
  border-radius: 2px;
  width: 0%;
  pointer-events: none;
}

.socials-corner img {
  height: 1em;
  width: auto;
  transition: filter 0s;
}

.socials-corner a:hover img,
.socials-corner a:focus img {
  filter: brightness(0) invert(1);
}

.icon-play {
  margin-left: 2px;
}

/* ---------- events page ---------- */

.page-link-active {
  color: #fff;
  text-transform: uppercase;
  text-decoration: none;
  letter-spacing: 0.04em;
  white-space: nowrap;
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}

.events-section {
  width: 100%;
  max-width: 800px;
  padding: 8vh 48px;
}

.events-section h2 {
  font-family: Modak, system-ui;
  font-size: 2.5em;
  font-weight: 400;
  letter-spacing: 1px;
  margin-bottom: 32px;
  color: #fff;
}

.request-show {
  text-align: center;
  padding: 24px 48px 64px;
}

.request-show-btn {
  display: inline-block;
  padding: 16px 80px;
  background: #dac898;
  color: #000;
  font-size: 18px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-decoration: none;
  border-radius: 50px;
  transition: background .25s, transform .25s;
}

.request-show-btn:hover {
  background: #fff;
  transform: scale(1.05);
}

.event-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 24px;
  margin-bottom: 16px;
  background: rgb(0 0 0 / 70%);
  border-radius: 8px;
  border-left: 4px solid #dac898;
  transition: background .25s;
}

.event-card:hover {
  background: rgb(0 0 0 / 85%);
}

.event-date {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 60px;
  padding: 8px 12px;
  background: #dac898;
  border-radius: 6px;
}

.event-month {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  color: #000;
  letter-spacing: 1px;
}

.event-day {
  font-size: 28px;
  font-weight: 700;
  color: #000;
}

.event-details h3 {
  font-size: 1.2em;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
  text-align: left;
}

.event-time {
  font-size: 15px;
  color: #dac898;
  letter-spacing: 0.5px;
}

.event-image {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 6px;
  margin-left: auto;
}

/* ---------- band page ---------- */

.band-page {
  background-color: #000;
  color: #dac898;
}

.band-intro {
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 48px 40px;
  text-align: center;
}

.band-intro p {
  font-size: 20px;
  color: #dac898;
}

.band-member-grid {
  width: 100%;
  max-width: 100%;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 100px;
}

.band-member {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #000;
  border-radius: 8px;
}

.band-member img {
  width: 50%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.band-member-info {
  margin-top: 80px;
  padding-left: 30px;
}

.band-member-info h3 {
  font-family: Modak, system-ui;
  font-size: 3em;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0.25em;
  text-transform: uppercase;
}

.band-member-info p {
  font-size: 24px;
  color: #dac898;
}

/* ---------- contact & gallery pages ---------- */

.contact-section,
.gallery-section {
  width: 100%;
  max-width: 800px;
  padding: 48px 24px;
  text-align: center;
}

.contact-section h2,
.gallery-section h2 {
  font-family: Modak, system-ui;
  font-size: 2.5em;
  font-weight: 400;
  color: #fff;
  margin-bottom: 16px;
  text-transform: uppercase;
}

.contact-section p,
.gallery-section p {
  font-size: 20px;
  color: #dac898;
  margin-bottom: 12px;
}

.contact-section a {
  color: #fff;
  text-decoration: underline;
}

.contact-info {
  font-size: 28px;
}

/* ---------- footer ---------- */

.site-footer {
  width: 100%;
  margin-top: auto;
  background: #000;
  border-top: 1px solid rgb(218 216 200 / 15%);
  padding: 16px 48px 24px;
  text-align: center;
}

.footer-divider {
  display: block;
  margin: 0 auto 12px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 16px;
  font-size: 0.9rem;
}

.footer-nav a {
  color: #dad8c8;
  font-size: 0.9rem;
  text-transform: uppercase;
  text-decoration: none;
  /* letter-spacing: 0.04em; */
  transition: color .25s;
}

.footer-nav a:hover,
.footer-nav a:focus {
  color: #fff;
}

.footer-copy {
  font-size: 14px;
  color: #666;
  letter-spacing: 0.5px;
}

/* ---------- mobile ---------- */

@media (width <= 720px) {
  .banner {
    flex-direction: column;
    gap: 8px 16px;
    padding: 0 24px;
  }

  .banner-home {
    flex-flow: row wrap;
    justify-content: center;
  }

  .banner-home > a {
    order: -1;
    flex-basis: 100%;
    text-align: center;
  }

  .page-links-left,
  .page-links-right {
    flex: none;
    justify-content: center;
    gap: 16px;
    padding: 0;
  }

  .page-links-left a,
  .page-links-right a,
  .page-link-active {
    font-size: 0.9rem;
  }

  .logo {
    max-width: 320px;
    width: 80vw;
  }

  .two-col {
    flex-direction: column;
    padding: 6vh 24px;
    gap: 32px;
  }

  .song-list {
    line-height: 0.75em;
  }

  .col-image img {
    width: 100%;
    max-width: none;
  }

  .col-image {
    order: -1;
  }

  .event-card {
    flex-direction: column;
    text-align: center;
    gap: 16px;
  }

  .event-details h3 {
    text-align: center;
  }

  .event-image {
    margin-left: 0;
  }

  .events-section {
    padding: 6vh 24px;
  }

  .events-section h2 {
    font-size: 2em;
  }

  .request-show-btn {
    padding: 16px 48px;
  }

  .band-member-grid {
    padding: 24px 16px;
  }

  .band-member {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
  }

  .band-member img {
    width: 100%;
    aspect-ratio: auto;
  }

  .band-member-info {
    margin-top: 12px;
    padding-left: 0 !important;
    text-align: left;
  }

  .band-member-info h3 {
    font-size: 1.3em;
    margin-bottom: 0;
  }

  .band-member-info p {
    font-size: 15px;
  }

  .contact-section {
    padding: 48px 12px;
  }

  .contact-section h2 {
    line-height: 0.75em;
  }

  .gallery-section {
    padding: 48px 24px;
  }

  .site-footer {
    padding: 32px 24px 24px;
  }

  .footer-nav {
    gap: 16px;
    flex-wrap: wrap;
  }

  .footer-nav a,
  .page-link-active {
    font-size: 0.85rem;
  }

  .socials-corner {
    top: 12px;
    right: 12px;
  }
}
