body {
  background-image: url('../img/brick-wall.jpg');
  background-size: cover;
  background-position: top left;
  background-attachment: fixed;
  margin: 0;
  font-family: Jost;
}

.w-100 {
  width: 100%;
}

.vh {
  display: none;
}

.spacer {
  flex-grow: 1;
}

.nowrap {
  white-space: nowrap;
}

header {
  background: rgba(0, 0, 0, .25);
  color: #fff;
  position: fixed;
  width: 50%;

  .content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: calc(100vh - 6em);
    padding: 3em;

    h3 {
      text-shadow: 0 0 10px rgba(0, 0, 0, .5);
      font-size: 20pt;
      font-weight: 300;
      line-height: 1.3;
    }

    #tickets {
      background-image: url('../img/pasted-paper.jpg');
      background-size: cover;
      background-repeat: no-repeat;
      box-shadow: 1px 0px 10px rgba(0, 0, 0, .5);
      color: #222;
      font-size: 18pt;
      font-weight: 500;
      margin: 1em 0 0;
      max-width: 400px;
      padding: 2em 1em;
      text-align: center;
      text-decoration: none;
      text-transform: uppercase;
      transform: rotate(2deg);
      width: auto;
      .highlight {
        color: #ED0105;
      }
    }

    .show-logo {
      aspect-ratio: 1200 / 674;
      margin-left: -1em;
      max-height: 25vh;
    }

    img.logo {
      max-width: 200px;
      width: 100%;
    }
  }
}

#main {
  background: rgba(0, 0, 0, .75);
  color: #fff;
  font-size: 16pt;
  line-height: 1.4;
  margin-left: 50%;
  min-height: 100vh;
  width: 50%;

  .content {
    padding: 2em 3em;

    .punched-up {
      color: #ED0105;
      font-weight: 700;
      text-transform: uppercase;
    }

    .punched-down {
      color: #ccc;
      font-size: 80%;
      font-weight: 300;
    }

    h2 {
      font-size: 2em;
      font-weight: 700;

      .author {
        font-size: .6em;
        font-weight: 300;
      }
    }

    blockquote {
      border-left: 3px solid #fff;
      margin-bottom: 2em;
      margin-left: 0;
      margin-right: 0;
      padding-left: 2em;
    }
    
    a {
      color: #ED0105;
    }

    .small {
      font-size: 10pt;
    }

    hr {
      height: 1px;
      background: #666;
      border: 0;
      margin: 1em 0;
    }

    dt {
      font-weight: 700;
    }
  }


  h2 {
    margin-top: 0;
    text-align: center;
  }

  .crew {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-evenly;

    .person {
      text-align: center;
      width: 25%;

      h3 {
        font-size: 14pt;
        line-height: 1.1;
        margin-bottom: 0;
        margin-top: .5em; 
      }

      .role {
        font-size: 12pt;
        font-style: italic;
        line-height: 1.1;
      }

      img {
        width: 100%;
      }
    }

  }

  img.logo {
    display: none;
  }
  .crew + .crew {
    margin-top: 2em;
  }
  .crew + h2 {
    margin-top: 1em;
  }
}

@media screen and (max-width: 800px) {
  body {
    background-color: black;
    background-image: none;
  }

  header {
    background-blend-mode: multiply;
    background-color: rgba(0, 0, 0, .25);
    background-image: url('../img/brick-wall.jpg');
    background-size: cover;
    background-position: top center;
    background-attachment: scroll;
    position: static;
    width: 100%;

    .content {
      height: auto;

      img.logo {
        display: none;
      }

      .show-detail {
        display: flex;
        flex-direction: row;
        justify-content: space-between;

        #tickets {
          margin: 1em 0 0 2em;
        }
      }
    }
  }
  #main {
    margin-left: 0;
    width: 100%;
    img.logo {
      display: block;
      margin: 2em auto 1em;
      max-width: 150px;
      width: 50%;
    }
  }
}

@media screen and (max-width: 600px) {
  header {
    .content {
      .show-detail {
        display: block;

        #tickets {
          margin: 2em 0 0;
        }
      }
    }
  }

  #main {
    .content {
      padding: 1em 2em;
      blockquote {
        margin-left: -1em;
        padding-left: 1em;
      }
      .crew {
        .person {
          margin-bottom: 1em;
          width: 60%;
        }
      }
      .crew + .crew {
        margin-top: 0;
      }
    }
  }
}

@media screen and (max-width: 960px) and (min-width: 800px) {
  #tickets .highlight {
    font-size: 75%;
  }
}

@media screen and (min-width: 1200px) {
  header {
    width: 33%;
  }
  #main {
    margin-left: 33%;
    width: 67%;
  }
}

@font-face {
  src: url('../fonts/Montserrat[wght].woff2');
  font-family: Montserrat;
  font-style: normal;
  font-weight: 300 700;
}
