@font-face {
  font-family: "Fjalla One";
  src: url('/assets/fonts/FjallaOne-Regular.ttf') format('truetype');
}

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

a {
  font-family: "Fjalla One", sans-serif;
  color: white;
  text-decoration: none;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.25rem;
}

body, html {
  height: 100%;
}

body {
  padding: 0.5em;
  background-color: #141414;
  color: white;
  font-family: "Fjalla One", sans-serif;
  text-transform: uppercase;
}

main {
  font-size: 1rem;
  margin: 0 auto;
  text-align: center;
  max-width: 100%;
}

.header {
  padding: 3em;
  padding-bottom: 1em;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url("/assets/bandfoto4.jpg");

  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;

  margin-bottom: 1em;
}

.header-contents {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.5em;
}

.logo img {
  width: 80%;
}

.tagline {
  color: white;
}

.tagline > h1 {
  font-size: 5vw;
}

a.paradise-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  color: #800000;
  background: #fff;
  padding: 1em 2em;
  margin: auto;
  margin-top: 1em;
  margin-bottom: 1em;
  font-weight: bold;
  font-size: 1.5rem;
  transition: background 0.3s;
}

a.paradise-banner:hover {
  color: #fff;
  background: #800000;
}

.promo {
  display: flex;
  flex-direction: column;
  gap: 1em;
  margin-top: 1.5em;
}

.promo-section {
  width: 100%;
  background: #1a1a1a;
  padding-bottom: 0.5em;
}

.promo-section > h2 {
  color: white;
  background-color: #800000;
  padding: 1em;
  margin-top: 0;
  margin-bottom: 1em;
}

.promo-contents {
  padding-left: 0.5em;
  padding-right: 0.5em;
  display: flex;
  flex-direction: column;
  gap: 1em;
  align-items: center;
}

.promo-contents > * {
  width: 100%;
  max-width: 50em;
}

.upcoming-shows {
}

.show {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.5em;
  margin-top: 1em;
  padding: 1em;
  background: #303030;
}

.show:first-child {
  margin-top: 0;
}

.show > * {
}

.show > .date {
} 

.show > .city {
  font-size: 120%;
  font-weight: bold;
} 

.show > a {
  color: #303030;
  background: #e8e8e8;
  width: 100%;
  padding: 0.5em;
}

.platforms {
  display: flex;
  justify-content: space-between;
  gap: 0.5em;
}

.platform-link {
  padding: 1em;
  width: 100%;
}

.platform-link.spotify {
  background-color: #1db954;
}

.platform-link.bandcamp {
  background-color: #629aa9;
}

.platform-link.youtube-music {
  background-color: #ff0000;
}

.platform-link.apple-music {
  background-color: #fa2d48;
}

.video-link {
  height: auto;
  aspect-ratio: 16 / 9;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.video-link.pile-of-dirt {
  background-image: linear-gradient(rgba(0, 0, 0, 0.1), rgba(0, 0, 0, 0.1)), url("/assets/pile_of_dirt-thumbnail-1000.jpg");
}

.video-link > div {
  font-size: 1.5em;
}

.iframe-container {
}

.iframe-container.bandcamp {
}

.iframe-container > iframe {
  border: none;
}

.iframe-container.bandcamp > iframe {
  width: 300px;
  height: 300px;
}

.social-links {
  display: flex;
  justify-content: space-around;
}

.social-link {
  padding: 1em;
  width: 100%;
}

.booking-partner {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: left;
  gap: 1em;
}

.booking-partner > div.label {
  flex-shrink: 0;
}

.booking-partner img {
  max-width: 100%;
}

.past-shows {
  margin-top: 2em;
}

.past-shows h3 {
  padding-bottom: 0.5em;
  color: #a0a0a0;
}

.past-shows li {
  list-style-type: none;
  padding: 0.2em;
  color: #a0a0a0;
}

/* mid-sized screen */
@media (min-width: 40em) {
  main {
    font-size: 1.1rem;
  }

  .header {
  } 

  .tagline > h1 {
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.5rem;
  }

  .iframe-container.bandcamp > iframe {
    width: 350px;
    height: 470px;
  }

  .booking-partner img {
    width: 20em;
  }
}

/* large screen */
@media (min-width: 70em) {

  main {
    max-width: 1400px;
  }

  .header {
    height: 600px;
  } 

  .tagline > h1 {
  }

  a.paradise-banner {
    font-size: 3rem;
  }

  .promo {
    flex-direction: row;
    justify-content: center;
    gap: 2em;
    margin-top: 2em;
    padding-top: 0em;
  }

  .promo-section {
    flex: 1 1 0;
    width: 0;
    background: none;
  }

  .promo-section.shows {
    order: -1;
  }

  .booking-partner img { 
    max-width: 100%;
  }
}

