body {
    background-color: #111;
    color: #eee;
    font-family: Helvetica, Arial, sans-serif;
    margin: 0;
    min-width: 400px;
    padding: 0;
}

ul {
    padding: 0;
    margin: 0;
}

li {
    display: inline-block;
    margin: 0 9px;
    padding: 0 9px;
}

a, a:visited {
    text-decoration: none;
    color: #ccc;
}

a:hover {
    color: #fff;
}

.hero {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.hero-message {
    text-align: center;
    margin-bottom:24px;
}

.main-hero {
    aspect-ratio: 2 / 1.6;
    background-image: url('images/Shocktober0.jpg');
}

.contact-hero {
    aspect-ratio: 2 / 1.3;
    background-image: url('images/Substation0.jpg');
}

.animal-welfare-hero {
    aspect-ratio: 2 / 1;
    background-image: url('images/Cemetary0.jpg')
}

.navigation {
    text-align: center;
}

.navigation .selected {
    color: #fff;
    text-decoration: underline;
}

header {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 0;
}

header h1 {
    margin: 0;
}

header img {
    height: 160px;
    width: 160px;
}

header nav {
    flex: 1;
    font-size: 18px;
    font-weight: 300;
    margin: 12px 0;
    text-transform: lowercase;
    width: 100%;
}

footer {
    text-align: center;
}

footer nav {
    margin: 48px 0;
    text-align: center;
}

footer nav img {
    height: 30px;
    width: 30px;
}

footer small {
    color: #888;
    padding: 24px;
}

.no-upcoming-shows {
    padding: 0 12px 24px 12px;
    border-bottom: 1px solid #888;
}

.shows {
    padding: 0 10%;
}

.shows h2 {
    margin: 24px 0;
}

.show {
  display: flex;
  align-items: center;
  background: #333;
  margin: 24px 0;
  padding: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}
.show img {
  width: 120px;
  height: 120px;
  object-fit: contain;
  border-radius: 5px;
  margin-right: 20px;
}
.show-details {
  display: flex;
  flex-direction: column;
}

.show-details > div {
    margin-top: 6px;
}

.show-title {
  font-size: 1.2em;
  font-weight: bold;
}

.show-date {
  color: gray;
}

.soundcloud-playlist {
    width: 80%;
    margin: 0 auto;
}

.embed-container {
    align-items: center;
    display: flex;
    flex-direction: column;
}

.embed-container > p {
    margin-bottom: 48px;
}

.instagram-media {
    height: 729px;
}

.bold {
    font-weight: bold;
}

.contact-type {
    padding: 6px 12px;
}

.contact-type div {
    display: inline-block;
    padding: 0;
}

@media (min-width: 816px) {
    header {
        padding: 24px 72px;
        flex-direction: row; /* Side by side */
    }

    header nav {
        margin-bottom: 0;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

    footer {
        text-align: right;
    }

    .main-hero {
        aspect-ratio: 2 / 1;
    }

    .shows {
        padding: 0 84px;
    }
}