:root {
  --highlight: #2c885e;
}

body {
  background-color: #0c1901;
  background-image: url('./../images/base/bg-green.png');
}

h1 {
  color: var(--highlight);
}

#main-content h2 {
  color: var(--highlight);
  border-bottom: 1px dashed var(--highlight);
}

#main-content h3 {
  padding-left: .5rem;
  border-bottom: 2px solid var(--subText);
}

/* Show Row */

.show-row {
  border-bottom: 1px dashed var(--subText);
  display: flex;
  flex-wrap: nowrap;
  width: 100%;
  padding: .5rem 0 .5rem 0;
  gap: 2rem;
}

.show-row .details-container {
  width: 60%;
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  padding-right: 1rem;
  border-right: 1px solid #555555;
}

.show-row .details-container .date {
  color: #ffffff;
  margin-left: .5rem;
  min-width: 65px;
}

.show-row .venue-container {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1rem;
  row-gap: 0;
}

.show-row .venue-container .venue {
  font-weight: bold;
  color: #ffffff;
}

.show-row .venue-container .location {
  font-style: italic;
}

/* Icons Column */

.show-row .icons-container {
  display: flex;
  gap: 1rem;
  align-items: center;
  width: 40%;
}

.show-row .icons-container a {
  background-position: left center;
  background-repeat: no-repeat;
  background-size: 20px auto;
  font-size: .9rem;
  min-width: 5rem;
}

.show-row .icons-container span {
  padding-left: 30px;
}

.show-row .photos-icon {
  background-image: url(./../images/base/photos-icon.png);
}

.show-row .setlist-icon {
  background-image: url(./../images/base/setlist-icon.png);
}

.show-row .flyers-icon {
  background-image: url(./../images/base/flyers-icon.png);
}

/* Detail Contnet */

#detail-content h1 {
  color: var(--highlight);
}

#detail-content h1 span.date {
  display: block;
  line-height: 2rem;
}

#detail-content h1 span.venue {
  display: block;
  font-size: 2rem;
}

#detail-content h1 span.location {
  font-style: italic;
}

#detail-content h2 {
  color: var(--highlight);
  border-bottom: 1px dashed var(--highlight);
}

/* Photos Container */

.photos-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.photos-container a {
  border: 1px solid var(--subText);
  line-height: 0;
}

.photos-container a img {
  width: 200px;
  height: 150px;
}

/* Flyers Container */

.flyers-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
}

.flyers-container a {
  border: 1px solid var(--subText);
  line-height: 0;
}

.flyers-container a img {
  width: 200px;
  height: 280px;
}

/* Setlist */
.setlist {
  margin: 0;
  padding-left: 0;
  color: #ffffff;
}

.setlist li {
  padding: 0.5rem 0;
  border-bottom: 1px dashed var(--subText);
  display: block;
  justify-content: space-between;
}

.setlist li:first-child {
  padding-top: 0;
}

.setlist li:last-child {
  border-bottom: none;
}

@media (max-width:840px) {

  #main-content h3 {
    padding: 0;
  }

  .show-row {
    gap: 1rem;
  }

  .show-row .details-container {
    width: 60%;
  }

  .show-row .details-container .date {
    margin: 0;
  }

  .show-row .icons-container {
    width: 40%;
    gap: .5rem;
  }
}

@media (max-width:740px) {

  .show-row {
    gap: 1rem;
    padding: .25rem 0;
  }

  .show-row .details-container {
    width: 70%;
  }

  .show-row .icons-container {
    align-items: stretch;
    padding-left: 0;
    width: 30%;
  }

  .show-row .icons-container a {
    min-width: 20px;
  }

  .show-row .icons-container a span {
    display: none;
  }

  .photos-container a img {
    width: 100px;
    height: 75px;
  }

  .flyers-container a img {
    width: 100px;
    height: 140px;
  }
}

@media (max-width:480px) {

  #main-content h3 {
    margin-top: 1rem;
  }

  .show-row .venue-container {
    width: 75%;
  }

  .show-row .venue-container {
    width: 75%;
    flex-basis: 100%;
  }

  .show-row .venue-container .venue,
  .show-row .venue-container .location {
    flex-basis: 100%;
  }

  .show-row .icons-container {
    width: 25%;
  }
}