@font-face {
  font-family: "Avenir Next";
  src: url("../assets/fonts/AvenirNextLTPro-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../assets/fonts/AvenirNextLTPro-Demi.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Avenir Next";
  src: url("../assets/fonts/AvenirNextLTPro-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
}
/**
 * Set up a decent box model on the root element
 */
html {
  height: 100%;
  font-size: 62.5%;
}

/* Box sizing rules */
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

/* Remove list styles on ul, ol elements, which suggests default styling will be removed */
ul,
ol {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
form,
input,
button,
textarea,
label,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/**
 * Basic typography style for copy text
 */
body {
  color: #323232;
  font: normal 400 1.3rem/1.8rem "Avenir Next", "Arial", sans-serif;
}
@media (min-width: 48em) {
  body {
    font: normal 1.4rem/2.2rem "Avenir Next", "Arial", sans-serif;
  }
}

h1,
h2 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  font-weight: 600;
}

h1 {
  color: #ffffff;
}
@media (min-width: 48em) {
  h1 {
    font-size: 6rem;
    line-height: 6.8rem;
    font-weight: 600;
  }
}

@media (min-width: 48em) {
  h2 {
    font-size: 3.6rem;
    line-height: 4.4rem;
    font-weight: 600;
  }
}

h3 {
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 600;
}
@media (min-width: 48em) {
  h3 {
    font-size: 2.4rem;
    line-height: 3.2rem;
    font-weight: 600;
  }
}

h4 {
  font-size: 1.4rem;
  line-height: 2.2rem;
  font-weight: 600;
}
@media (min-width: 48em) {
  h4 {
    font-size: 1.6rem;
    line-height: 3.2rem;
    font-weight: 600;
  }
}

footer > p {
  font-size: 1.3rem;
  line-height: 1.8rem;
  font-weight: 400;
}
@media (min-width: 48em) {
  footer > p {
    font-size: 1.4rem;
    line-height: 2rem;
    font-weight: 400;
  }
}

label,
button {
  font-size: 1rem;
  line-height: 2rem;
  font-weight: 400;
}
@media (min-width: 48em) {
  label,
button {
    font-size: 1.2rem;
    line-height: 2rem;
    font-weight: 400;
  }
}

.header {
  background-color: #323232;
  min-height: 7.7rem;
}
@media (min-width: 48em) {
  .header {
    display: flex;
    justify-content: flex-start;
  }
}
@media (min-width: 80em) {
  .header {
    padding: 0 3.2rem;
  }
}

.nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 1.6rem;
}
.nav__list {
  width: 100%;
  padding-top: 0.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (min-width: 48em) {
  .nav__list {
    max-width: calc(100% - 7.2rem);
    padding-top: 0;
    display: flex;
    justify-content: flex-start;
    gap: 3.2rem;
  }
}
.nav__item {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 0.8rem 4.8rem;
  border-bottom: 2px solid transparent;
  transition: 0.1s;
}
.nav__item:hover, .nav__item--active {
  border-bottom: 2px solid #ffffff;
}
@media (min-width: 48em) {
  .nav__item {
    width: fit-content;
    margin: 0;
    padding: 2.6rem 0;
    align-items: flex-start;
  }
}
.nav__link {
  text-decoration: none;
  letter-spacing: 0.025rem;
  color: #afafaf;
}
.nav__link:hover {
  color: #e1e1e1;
}
.nav__link--active, .nav__link--active:hover {
  color: #ffffff;
}
@media (min-width: 48em) {
  .nav {
    flex-direction: row;
    max-width: calc(100% - 7.2rem);
    min-height: 100%;
    margin: auto;
    padding: 0;
    gap: 5.6rem;
  }
}
@media (min-width: 80em) {
  .nav {
    max-width: 102rem;
    margin: 0 auto;
  }
}

.footer {
  background-color: #323232;
}
.footer__wrapper {
  max-width: calc(100% - 3.2rem);
  margin: 0 auto;
  padding: 1.6rem 0;
}
@media (min-width: 48em) {
  .footer__wrapper {
    max-width: calc(100% - 7.2rem);
    padding: 3.6rem 0;
    position: relative;
  }
}
@media (min-width: 80em) {
  .footer__wrapper {
    max-width: 102rem;
  }
}
@media (min-width: 48em) {
  .footer__title {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-bottom: 4rem;
  }
}
@media (min-width: 48em) {
  .footer__title {
    gap: 2.4rem;
  }
}
@media (min-width: 80em) {
  .footer__title {
    gap: 4.8rem;
  }
}
.footer__heading, .footer__name, .footer__text, .footer__address, .footer__copyright, .footer__link {
  margin-bottom: 1.6rem;
  color: #ffffff;
  font-style: normal;
}
@media (min-width: 48em) {
  .footer__heading {
    margin: 0;
  }
}
.footer__name {
  font-weight: 600;
}
.footer__icon-container {
  margin-bottom: 3.2rem;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2.4rem;
}
@media (min-width: 48em) {
  .footer__icon-container {
    padding: 2.4rem;
    gap: 3.2rem;
    margin: 0;
  }
}
.footer__icon {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 2.4rem;
  height: 2.4rem;
}
@media (min-width: 48em) {
  .footer__icon {
    scale: 1.3;
  }
}
.footer__content {
  margin-bottom: 3.2rem;
}
@media (min-width: 48em) {
  .footer__content {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4rem;
    row-gap: 1.6rem;
  }
}
@media (min-width: 80em) {
  .footer__content {
    max-width: 75%;
    gap: 5.8rem;
  }
}
@media (min-width: 48em) {
  .footer__article {
    max-width: 33%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 1.4rem;
  }
}
.footer__logo {
  margin-top: 5.6rem;
  padding: 1.6rem 0;
  display: block;
}
@media (min-width: 48em) {
  .footer__logo {
    margin-top: 0;
    position: absolute;
    top: 4.8rem;
    right: 0;
  }
}
.footer__link {
  text-decoration: none;
}
@media (min-width: 48em) {
  .footer__copyright {
    margin-bottom: 0;
  }
}

.btn, .cta__btn,
.shows__btn {
  display: inline-block;
  width: 100%;
  height: 4rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  font-size: 1.6rem;
  color: #ffffff;
  border: none;
  background-color: #323232;
  transition: all 0.33s;
  cursor: pointer;
}
.btn:hover, .cta__btn:hover,
.shows__btn:hover {
  background-color: #000000;
}
@media (min-width: 48em) {
  .btn, .cta__btn,
.shows__btn {
    width: fit-content;
    min-width: 15rem;
    padding: 0 3.2rem;
  }
}

@media (min-width: 48em) {
  .cta__btn,
.shows__btn {
    margin-left: auto;
  }
}

.avatar, .cta__comment-avatar, .cta__profile-avatar {
  width: 3.6rem;
  height: 3.6rem;
  object-fit: cover;
  border-radius: 50%;
}
@media (min-width: 48em) {
  .avatar, .cta__comment-avatar, .cta__profile-avatar {
    width: 4.8rem;
    height: 4.8rem;
  }
}

.cta__profile-avatar {
  margin-top: 2.4rem;
}
.cta__comment-avatar {
  min-width: 3.6rem;
  background-color: #afafaf;
}
@media (min-width: 48em) {
  .cta__comment-avatar {
    min-width: 4.8rem;
  }
}

.label, .shows__event-label, .shows__event-title {
  color: #afafaf;
  font-weight: 600;
  text-transform: uppercase;
}

.shows__event {
  margin: 0 -1.6rem;
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  padding: 1.6rem;
  border-bottom: 1px solid #e1e1e1;
  transition: 0.13s;
}
.shows__event-label {
  margin-bottom: -1.2rem;
}
.shows__event-label-container {
  display: none;
}
@media (min-width: 48em) {
  .shows__event-label-container {
    width: calc(100% - 21.4rem);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin-right: auto;
    gap: 3.2rem;
  }
}
@media (min-width: 48em) and (min-width: 80em) {
  .shows__event-label-container {
    padding-top: 6rem;
  }
}
@media (min-width: 48em) {
  .shows__event-label {
    display: none;
  }
}
@media (min-width: 48em) {
  .shows__event-title {
    width: 14rem;
    margin-right: auto;
  }
  .shows__event-title:nth-child(2) {
    padding-left: 0.8rem;
    margin: 0 auto;
  }
  .shows__event-title:last-child {
    padding-left: 1.2rem;
  }
}
@media (min-width: 48em) {
  .shows__event-date, .shows__event-venue, .shows__event-location {
    width: 14rem;
    margin-left: auto;
  }
}
@media (min-width: 48em) {
  .shows__event-date {
    font-weight: 600;
    margin-left: 0;
    margin-right: auto;
  }
}
.shows__event:hover {
  background-color: #fafafa;
}
.shows__event--selected, .shows__event--selected:hover {
  background-color: #e1e1e1;
}
@media (min-width: 48em) {
  .shows__event {
    padding: 1.8rem;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 3.2rem;
  }
}

.placeholder {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e1e1e1;
  border-radius: 5px;
  padding: 16rem 1rem;
  text-transform: uppercase;
  opacity: 0.7;
  transition: all 0.5s;
}
.placeholder:hover {
  letter-spacing: 0.4rem;
  font-weight: 600;
}

.bioHero {
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(rgba(50, 50, 50, 0.5), rgba(50, 50, 50, 0.5)), url("../assets/images/hero-bio.jpg");
}
.bioHero__wrapper {
  max-width: calc(100% - 3.2rem);
  margin: 0 auto;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
@media (min-width: 48em) {
  .bioHero__wrapper {
    height: 40rem;
    padding: 1.6rem 0;
    max-width: calc(100% - 7.2rem);
  }
}
@media (min-width: 80em) {
  .bioHero__wrapper {
    max-width: 102rem;
    height: 64rem;
    padding: 3.2rem 0;
  }
}
.bioHero__heading {
  color: #ffffff;
}

.about__wrapper {
  margin: 0 auto;
  max-width: calc(100% - 3.2rem);
}
@media (min-width: 48em) {
  .about__wrapper {
    max-width: calc(100% - 7.2rem);
    padding: 1.6rem 0;
  }
}
@media (min-width: 80em) {
  .about__wrapper {
    max-width: 102rem;
    padding: 3.2rem 0;
  }
}
.about__heading {
  padding: 2.4rem 0 1.6rem;
}
@media (min-width: 48em) {
  .about__heading {
    line-height: 3.2rem;
    padding: 4.8rem 0 3.6rem;
  }
}
.about__img-container {
  margin-bottom: 1.6rem;
}
@media (min-width: 48em) {
  .about__img-container {
    width: 85%;
    margin: 0 auto 3.2rem;
  }
}
.about__img {
  width: 100%;
  aspect-ratio: 16/9;
}
.about__quote {
  font-weight: 600;
}
@media (min-width: 48em) {
  .about__quote {
    width: 85%;
    padding-bottom: 1.6rem;
    margin: 0 auto;
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}
@media (min-width: 80em) {
  .about__quote {
    max-width: 70%;
    margin-left: 7.8rem;
  }
}
.about__author {
  margin-bottom: 1.6rem;
  font-weight: 600;
}
@media (min-width: 48em) {
  .about__author {
    width: 85%;
    margin: 0 auto 1.6rem;
    font-size: 1.8rem;
  }
}
@media (min-width: 48em) {
  .about__subheading {
    width: 85%;
    margin: 4rem auto 1.6rem;
  }
}
@media (min-width: 48em) {
  .about__text-container {
    width: 85%;
    margin: 0 auto;
    display: flex;
    gap: 3.2rem;
  }
}
.about__text {
  margin-bottom: 1.6rem;
}

.gallery {
  background-color: #fafafa;
}
.gallery__wrapper {
  margin: 0 auto;
  max-width: calc(100% - 3.2rem);
}
@media (min-width: 48em) {
  .gallery__wrapper {
    max-width: calc(100% - 7.2rem);
    padding: 1.6rem 0;
  }
}
@media (min-width: 80em) {
  .gallery__wrapper {
    max-width: 102rem;
    padding: 3.2rem 0;
  }
}
.gallery__heading {
  padding: 2.4rem 0 1.6rem;
}
@media (min-width: 48em) {
  .gallery__heading {
    line-height: 3.2rem;
    padding: 4.8rem 0 3.6rem;
  }
}
.gallery__img-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
@media (min-width: 48em) {
  .gallery__img-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
  }
}
@media (min-width: 80em) {
  .gallery__img-container {
    margin: 0 auto;
    padding: 3.2rem 0;
  }
}
.gallery__img {
  transition: all 0.3s;
  filter: grayscale(100%);
}
.gallery__img:hover {
  filter: none;
}

.cta__wrapper {
  margin: 0 auto;
  max-width: calc(100% - 3.2rem);
}
@media (min-width: 48em) {
  .cta__wrapper {
    max-width: calc(100% - 7.2rem);
    padding: 1.6rem 0;
  }
}
@media (min-width: 80em) {
  .cta__wrapper {
    max-width: 102rem;
    padding: 3.2rem 0;
  }
}
.cta__heading {
  padding: 2.4rem 0 1.6rem;
}
@media (min-width: 48em) {
  .cta__heading {
    line-height: 3.2rem;
    padding: 4.8rem 0 3.6rem;
  }
}
.cta__error-container {
  display: none;
  margin: 0 auto;
  padding: 0.8rem 1.6rem;
  border: 1px solid #d22d2d;
  border-radius: 5px;
  background-color: #db5757;
}
@media (min-width: 48em) {
  .cta__error-container {
    padding: 0.8rem 2.4rem;
    max-width: 58rem;
  }
}
@media (min-width: 80em) {
  .cta__error-container {
    max-width: 50rem;
  }
}
.cta__error-message {
  color: #fafafa;
}
.cta__form-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  gap: 1.6rem;
  margin: 1.6rem auto;
}
@media (min-width: 48em) {
  .cta__form-container {
    margin: 0 auto;
    padding: 1.6rem 0;
    max-width: 58rem;
  }
}
@media (min-width: 80em) {
  .cta__form-container {
    max-width: 50rem;
  }
}
.cta__form {
  width: 100%;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  flex-basis: 100%;
  justify-content: flex-start;
  align-items: flex-start;
}
.cta__form *::placeholder {
  color: #323232;
}
.cta__form label {
  color: #afafaf;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
}
.cta__form input, .cta__form textarea {
  color: #323232;
  outline: none;
  border: 1px solid #e1e1e1;
  background-color: #fafafa;
  border-radius: 4px;
  padding: 1.2rem;
  width: 100%;
  margin-bottom: 2.4rem;
  resize: none;
  transition: 0.33s;
}
.cta__form input:focus:invalid, .cta__form textarea:focus:invalid {
  border-color: #d22d2d;
}
.cta__form input:focus:valid, .cta__form textarea:focus:valid {
  border-color: #323232;
}
.cta__comment-container {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.6rem;
}
@media (min-width: 48em) {
  .cta__comment-container {
    margin: 0 auto;
    padding: 1.6rem 0;
    max-width: 58rem;
  }
}
@media (min-width: 80em) {
  .cta__comment-container {
    max-width: 50rem;
    padding: 3.2rem 0;
  }
}
.cta__comment {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 1.6rem;
  padding: 1.6rem 0;
  border-top: 1px solid #afafaf;
}
.cta__comment:last-child {
  border-bottom: 1px solid #afafaf;
}
.cta__comment-description {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 1fr;
  width: 100%;
  justify-items: start;
  align-items: start;
}
.cta__comment-time {
  color: #afafaf;
  justify-self: end;
}
.cta__comment-text {
  grid-column: 1/-1;
  padding-top: 0.8rem;
  word-break: break-word;
}
.cta__comment-interactivity {
  display: flex;
  justify-self: flex-end;
  gap: 1.2rem;
  padding: 0.4rem;
}
.cta__comment-like-count {
  margin-top: 0.8rem;
}
.cta__comment-like, .cta__comment-delete {
  color: #323232;
  cursor: pointer;
  border: none;
  background: none;
  width: 2.4rem;
  height: 2.4rem;
  transition: all 0.3s;
}
.cta__comment-like:hover {
  color: #000000;
}
.cta__comment-delete:hover {
  color: #d22d2d;
}

.showsHero {
  background-size: cover;
  background-position: center;
  background-image: linear-gradient(rgba(50, 50, 50, 0.5), rgba(50, 50, 50, 0.5)), url("../assets/images/hero-shows.jpg");
}
.showsHero__wrapper {
  max-width: calc(100% - 3.2rem);
  margin: 0 auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  gap: 1.6rem;
  padding: 3.2rem 0;
  height: 32rem;
}
@media (min-width: 48em) {
  .showsHero__wrapper {
    gap: 3.2rem;
    height: 40rem;
    padding: 1.6rem 0;
    max-width: calc(100% - 7.2rem);
  }
}
@media (min-width: 80em) {
  .showsHero__wrapper {
    max-width: 102rem;
    height: 64rem;
    padding: 3.2rem 0;
    position: relative;
  }
}
.showsHero__text {
  color: #ffffff;
}
.showsHero__heading {
  max-width: 24rem;
  color: #ffffff;
}
@media (min-width: 48em) {
  .showsHero__heading {
    max-width: 56rem;
  }
}
@media (min-width: 80em) {
  .showsHero__heading {
    max-width: 48rem;
  }
}
.showsHero__player {
  border: none;
  width: 100%;
  max-width: 50rem;
  height: 16.6rem;
}
@media (min-width: 48em) {
  .showsHero__player {
    width: 60%;
  }
}
@media (min-width: 80em) {
  .showsHero__player {
    width: 45%;
    position: absolute;
    top: 42.5%;
    right: 0;
  }
}
@media (min-width: 48em) {
  .showsHero {
    padding: 6.4rem 0;
  }
}

.shows__wrapper {
  margin: 0 auto;
  max-width: calc(100% - 3.2rem);
}
@media (min-width: 48em) {
  .shows__wrapper {
    max-width: calc(100% - 7.2rem);
    padding: 1.6rem 0;
  }
}
@media (min-width: 80em) {
  .shows__wrapper {
    max-width: 102rem;
    padding: 3.2rem 0;
  }
}
@media (min-width: 80em) {
  .shows__wrapper {
    display: grid;
    grid-template-columns: 1fr 4fr;
    align-items: start;
  }
}
.shows__heading {
  padding: 2.4rem 0 1.6rem;
}
@media (min-width: 48em) {
  .shows__heading {
    line-height: 3.2rem;
    padding: 4.8rem 0 3.6rem;
  }
}
.shows__event-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-bottom: 1.6rem;
}

/*# sourceMappingURL=main.css.map */
