*, *:before, *:after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 1rem;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
  font-family: "Inter", system-ui, sans-serif;
  margin-bottom: 20vh;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: contain;
}

a, a:visited {
    color: blue;
    text-decoration: none;
}

a:hover, a:active {
    text-decoration: underline;
}

.site-header,
main {
  width: min(100% - 2rem, 680px);
  margin-inline: auto;
}

.site-header {
  padding: 1.25rem 0;
}

@media (min-width: 600px) {
  .site-header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 2rem;
  }
}

nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: 0.75rem;
}

@media (min-width: 600px) {
  nav {
    justify-content: flex-end;
    margin-top: 0;
  }
}

nav a {
  font-size: 0.875rem;
}

section {
    margin-bottom: 4rem;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: normal;
}

.band-pic {
    margin: 2rem 0 ;
}

.latest-release-art {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

.latest-release-art div:first-child img {
    border: 1px solid lightgray;
}

#music p {
    text-align: center;
}

#music ul {
    display: flex;
    padding: 0;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

#music ul li {
    list-style: none;
}

@media (min-width: 600px) {
  .latest-release-art {
      grid-template-columns: 1fr 1fr;
  }
}

#shows .show-list {
    list-style: none;
    margin: 0 0 2rem;
    padding: 0;
    display: grid;
    gap: 2.5rem;
}

#shows .show {
    display: grid;
    gap: 1rem;
    align-items: start;
    padding-bottom: 2.5rem;
    border-bottom: 1px solid lightgray;
}

#shows .show:last-child {
    border-bottom: 0;
}

#shows .show-flyer {
    display: block;
    max-width: 320px;
}

#shows .show-details > * {
    margin: 0 0 0.5rem;
}

#shows .show-details > *:last-child {
    margin-bottom: 0;
}

#shows .show-date {
    font-size: 0.875rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

#shows .show-title {
    font-size: 1.25rem;
    line-height: 1.3;
}

#shows .ticket-link {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1.1rem;
    border: 1px solid currentColor;
}

@media (min-width: 600px) {
  #shows .show {
      grid-template-columns: minmax(0, 240px) minmax(0, 1fr);
      gap: 1rem 2rem;
  }

  #shows .show-flyer {
      max-width: none;
  }

  #shows .show-no-flyer {
      grid-template-columns: minmax(0, 1fr);
  }
}

.photo-credit {
    margin: 0.5rem 0 0;
    font-size: 0.8125rem;
    color: gray;
}
