/* Primary Break Point */
@media (min-width: 768px) {
  #title-nav-container {
    padding: 0.5rem 1rem;
    text-transform: uppercase;
  }
  nav #mobile-nav-button,
  nav #mobile-nav-dismiss {
    display: none;
  }
  nav #nav-menu-container {
    display: block;
    position: static;
    background-color: unset;
    width: unset;
    height: unset;
    padding-top: 0;
  }
  nav ul#nav-menu {
    display: flex;
    justify-content: center;
  }
  nav a,
  nav #nav-menu a {
    font-size: 1.1rem;
    padding: 0.25rem 1rem;
  }
  nav a:hover {
    background: #b42f19;
    transform: translateY(-2px);
    color: white;
  }
  #logo-mobile {
    display: none;
  }
  #logo-desktop {
    display: block;
  }
  #logo-container {
    display: none;
  }
  #logo-container .tagline {
    position: absolute;
    bottom: 0;
    left: 42%;
    max-width: 70vw;
    font-size: clamp(0.8em, 2vw, 1.8em);
  }
  #hero-container {
    display: block;
    margin-top: 0;
  }
  #hero-container #hero {
    position: relative;
  }
  #hero-container .tagline {
    position: absolute;
    bottom: 14%;
    left: 42%;
    max-width: 70vw;
    font-size: clamp(0.8em, 2vw, 1.8em);
  }
  #hero-container p {
    max-width: 900px;
    margin: 5rem auto 0;
    line-height: 1.1;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: -1px -1px 0 #1c2a83, 1px -1px 0 #1c2a83, -1px 1px 0 #1c2a83, 1px 1px 0 #1c2a83, 0 0 20px rgba(28, 42, 131, 0.5);
    opacity: 0.8;
  }
  #band-info {
    display: block;
    max-width: 1000px;
    margin: 0 auto 4rem;
    padding: 0 2rem;
    text-align: center;
    line-height: 1.1;
    font-size: 2.2rem;
    color: #fff;
    text-shadow: -1px -1px 0 #1c2a83, 1px -1px 0 #1c2a83, -1px 1px 0 #1c2a83, 1px 1px 0 #1c2a83, 0 0 20px rgba(28, 42, 131, 0.5);
    opacity: 0.8;
  }
  /* CALENDAR / EVENTS */
  #band-calendar {
    font-size: 1.1rem;
    display: table;
  }
  #band-calendar thead tr {
    display: table-row;
  }
  #band-calendar tr {
    display: table-row;
  }
  #band-calendar th,
  #band-calendar td {
    display: table-cell;
    padding: 0 2rem 0.25rem;
  }
  /* THE BAND */
  #band-photo-mobile {
    display: none;
  }
  #band-photo-desktop {
    display: block;
    margin-top: 2rem;
  }
}
@media (min-width: 992px) {
  .band-members {
    grid-template-columns: repeat(3, 1fr);
  }
  .bio-text img {
    float: left;
    max-width: 400px;
    min-width: 0;
    margin: 0 2rem 1rem 0;
  }
  .bio-text img.right-image {
    float: right;
    margin: 0 0 1rem 2rem;
  }
}