/* =========================
   BASE
   ========================= */

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #fff;
  font-family: "Courier Prime", monospace;
  font-size: 16px;
}


/* =========================
   LINKS
   ========================= */

a {
  color: #fff;
}


/* =========================
   HOME BUTTON
   ========================= */

.home-btn {
  position: fixed;
  top: 20px;
  left: 20px;

  color: #fff;
  text-decoration: none;

  font-family: "Courier Prime", monospace;
  font-size: 16px;

  z-index: 100;
}

.home-btn:hover {
  text-decoration: underline;
}


/* =========================
   PAGE
   ========================= */

.page-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 40px 100px;
}


/* =========================
   HEADER
   ========================= */

.page-header {
  margin-bottom: 50px;
}


/* =========================
   PAGE TITLE
   ========================= */

.page-title {
  margin: 0;

  font-family: "Silkscreen", sans-serif;
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
}


/* =========================
   LATHER! SUBTITLE
   ========================= */

.page-subtitle {
  margin: 10px 0 0;

  font-family: "Silkscreen", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.4;
}

.page-subtitle a {
  color: inherit;

  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  line-height: inherit;

  text-decoration: none;
}

.page-subtitle a:hover {
  text-decoration: underline;
}


/* =========================
   UPCOMING
   ========================= */

.section-title {
  margin: 0 0 30px;

  font-family: "Silkscreen", sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.3;

  text-transform: uppercase;
}

.shows-section {
  margin-bottom: 90px;
}


/* =========================
   SHOWS
   ========================= */

.show {
  display: grid;
  grid-template-columns: 90px 1fr auto;

  align-items: center;

  gap: 30px;

  padding: 20px 0;

  border-top: 1px solid #fff;
}

.show:last-child {
  border-bottom: 1px solid #fff;
}


/* =========================
   DATE
   ========================= */

.show-date {
  display: flex;
  flex-direction: column;

  font-family: "Courier Prime", monospace;
  line-height: 1.1;
}

.month {
  font-size: 14px;
  font-weight: 700;
}

.day {
  font-size: 28px;
  font-weight: 700;
}


/* =========================
   SHOW INFO
   ========================= */

.show-info h3 {
  margin: 0 0 6px;

  font-family: "Courier Prime", monospace;
  font-size: 18px;
  font-weight: 700;
}

.show-location {
  margin: 0;

  font-family: "Courier Prime", monospace;
  font-size: 15px;
  line-height: 1.4;
}


/* =========================
   TICKETS
   ========================= */

.show-action {
  text-align: right;
}

.show-action a {
  color: #fff;

  font-family: "Courier Prime", monospace;
  font-size: 16px;

  text-decoration: none;
}

.show-action a:hover {
  text-decoration: underline;
}

.coming-soon {
  font-family: "Courier Prime", monospace;
  font-size: 16px;
}


/* =========================
   PAST TOGGLE
   ========================= */

.past-section {
  margin-top: 90px;
}

.past-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  margin: 0;
  padding: 0;

  border: 0;
  background: none;
  color: #777;

  font-family: "Courier Prime", monospace;
  font-size: 14px;
  font-weight: 400;

  cursor: pointer;
}

.past-toggle:hover {
  color: #fff;
}

.past-arrow {
  display: inline-block;

  width: 12px;

  font-size: 16px;
  line-height: 1;

  transition:
    transform 0.4s ease,
    color 0.3s ease;
}

.past-toggle[aria-expanded="true"] {
  color: #fff;
}

.past-toggle[aria-expanded="true"] .past-arrow {
  transform: rotate(45deg);
}


/* =========================
   PAST CONTENT
   ========================= */

.past-content {
  overflow: hidden;

  max-height: 0;
  opacity: 0;

  transform: translateY(-12px);

  transition:
    max-height 0.7s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.35s ease,
    transform 0.5s ease;
}

.past-content.is-open {
  max-height: 3000px;
  opacity: 1;
  transform: translateY(0);
}


/* =========================
   PAST YEARS
   ========================= */

.year-section {
  margin-top: 45px;
  margin-bottom: 60px;
}

.year-title {
  margin: 0 0 15px;

  font-family: "Courier Prime", monospace;
  font-size: 18px;
  font-weight: 700;
}


/* =========================
   PAST SHOWS
   ========================= */

.past-show {
  grid-template-columns: 90px 1fr;

  opacity: 0;
  transform: translateX(-12px);

  transition:
    opacity 0.35s ease,
    transform 0.4s ease;
}

.past-content.is-open .past-show {
  opacity: 1;
  transform: translateX(0);
}

.past-content.is-open .past-show:nth-of-type(2) {
  transition-delay: 0.05s;
}

.past-content.is-open .past-show:nth-of-type(3) {
  transition-delay: 0.1s;
}

.past-content.is-open .past-show:nth-of-type(4) {
  transition-delay: 0.15s;
}

.past-content.is-open .past-show:nth-of-type(5) {
  transition-delay: 0.2s;
}

.past-content.is-open .past-show:nth-of-type(6) {
  transition-delay: 0.25s;
}

.past-content.is-open .past-show:nth-of-type(7) {
  transition-delay: 0.3s;
}

.past-content.is-open .past-show:nth-of-type(8) {
  transition-delay: 0.35s;
}

.past-show .show-info h3 {
  margin: 0;
  font-size: 16px;
}


/* =========================
   MOBILE
   ========================= */

@media (max-width: 700px) {

  .page-wrapper {
    padding: 70px 20px 60px;
  }

  .home-btn {
    top: 15px;
    left: 15px;
  }

  .page-title {
    font-size: 26px;
  }

  .page-subtitle {
    font-size: 16px;
  }

  .section-title {
    font-size: 22px;
    margin-bottom: 25px;
  }

  .show {
    grid-template-columns: 65px 1fr;
    gap: 15px;
  }

  .show-action {
    grid-column: 2;
    text-align: left;
  }

  .past-show {
    grid-template-columns: 65px 1fr;
  }

  .day {
    font-size: 24px;
  }

  .show-info h3 {
    font-size: 16px;
  }

  .show-location {
    font-size: 14px;
  }

  .past-toggle {
    font-size: 13px;
  }
}

