:root {
  --brown: #7d6d50;
  --cream: #dde0c8;
  --dark-green: #1c261a;
  --hunter-green: #43543a;
  --orange: #ef672d;
}

@font-face {
  font-family: 'Oswald';
  src: url('../fonts/Oswald-VariableFont_wght.ttf') format('ttf');
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  /* Change default 16px font size to 10px.
   * The 62.5% trick makes it easier to scale values without
   * worrying about the type of device used to view the content.
   */
  font-size: 62.5%;
}

body {
  background: var(--hunter-green);
  color: var(--cream);
  font-size: 1.6rem;
  font-family: sans-serif;
}

h1, h2 {
  font-family: "Oswald", sans-serif;
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 500;
  letter-spacing: 0.8rem;
  line-height: 5rem;
  text-transform: uppercase;
}

h1 { margin-top: 4rem; }

h2 {
  border-bottom: 2px solid var(--orange);
  text-align: center;
  margin-bottom: 2rem;
  width: fit-content;
}

.h2__underline {
  display: grid;
  justify-content: center;
  width: 100%;
}

a { color: var(--orange); text-decoration: none; }

p {
  font-size: 1.75rem;
  line-height: 2.5rem;
  letter-spacing: 0.2rem;
  text-align: left;
  font-weight: 200;
}

.full-width {
  display: grid;
  margin: 0;
  width: 100%;
}

.two-column-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  margin: 0;
  width: 100%;
}

.two-column-grid > * {
  img { height: 100%; object-fit: cover; width: 100%; }
  padding: 0;
}

.background-dark {
  background-color: var(--dark-green);
}

.background-brown {
  background-color: var(--brown);
}

.button-group {
  align-items: center;
  display: flex;
  flex-direction: row;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 5rem;
  text-align: center;
}

.button-group > a {
  display: flex;
  border: 2px solid var(--cream);
  color: var(--cream);
  border-radius: 0.6rem;
  padding: 1.6rem 1.8rem;
  text-transform: uppercase;
}

.padded {
  padding: 3rem 2rem;
}

.stacked {
  display: flex;
  flex-direction: column;
  margin: auto;
}

.stacked > div {
  width: 100%;
}

.vh-center {
  align-items: center;
  display: flex;
  justify-content: center;
}

.artist {
  margin-bottom: 5rem;
  text-align: center;
  width: 100%;
}

.socials {
  align-items: center;
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-bottom: 5rem;
  text-align: center;
}

.socials > a {
  align-items: center;
  color: var(--cream);
  display: inline-flex;
  flex-direction: row;
  font-weight: 300;
  justify-content: center;
  margin: auto;
  padding: 1.5rem;
  text-transform: uppercase;
}

.bio > p {
  padding: 2rem;
}

.shows {
  /*border: 1px solid red;*/
  display: grid;
  margin: auto auto;
  max-width: 90rem;
  width: 100%;
}

.show {
  align-content: center;
  border-left: 3px solid var(--orange);
  display: grid;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
  padding: 2rem;
}

.show-item { display: inline-flex; padding: 1rem; }

.show-item > a {
  color: var(--cream);
  text-decoration-color: var(--cream);
  text-decoration-line: underline;
  text-decoration-style: dotted;
  text-decoration-thickness: auto;
}

.show-item > svg {
  height: 24px;
  margin-right: 0.6rem;
  width: 24px;
}

.show-item.note { margin-top: 2rem; }

button.show-item {
  background-color: transparent;
  border: 1px solid var(--orange);
  border-radius: 0.4rem;
  color: var(--orange);
  display: inline-block;
  font-size: 1.8rem;
  font-weight: 500;
  margin: 2rem auto auto 0.6rem;
  padding: 0.8rem 1.2rem;
  text-transform: uppercase;
  text-decoration: none;
  width: fit-content;
}

.feature-video > iframe {
  aspect-ratio: 16 / 9;
  border: none;
  width: 100%;
  margin: 2rem auto 1rem;
  max-width: 75rem;
  min-height: 30rem;
  padding: 0 1.5rem;
}

.videos {
  align-items: center;
  display: grid;
  gap: 1.5rem;
  justify-content: center;
  margin: 2rem auto 1rem;
  padding: 0 1.5rem;
  width: 100%;
}

.video > iframe {
  aspect-ratio: 16 / 9;
  border: none;
  width: 100%;
  min-height: 30rem;
}

.booking {
  font-size: 1.75rem;
  font-weight: 200;
  letter-spacing: 0.2rem;
  line-height: 2.5rem;
  justify-content: center;
  padding: 1rem 2rem;
  text-align: center;
}
.booking > span { padding: 0 2rem; }

.site-info {
  justify-content: center;
  margin: 2rem auto;
}

.site-info > p { text-align: center; }
.copyright { font-size: 1.5rem; }
.roadie-media { font-size: 1.1rem; }

/* tablet breakpoint */
@media (min-width:768px) {
  h1 {
    margin-top: 0;
  }
  .two-column-grid {
    display: grid;
    grid-template-columns: minmax(50%, 50%) 1fr;
  }
  .grid-item:nth-child(4n-1) { order: 3; }
  .vh-center {
    align-items: center;
    display: flex;
    justify-content: center;
  }
  .show {
    display: grid;
    grid-template-columns: minmax(50%, 50%) 1fr;
  }
  .videos { max-width: 100rem; }
}
