body {
    display: grid;
    grid-template-rows: auto;
    grid-template-columns: 100%;
    grid-template-areas:
        "banner"
        "center"
        "current"
        "upcoming";
    height: 100vh;
    padding: 0;
    margin: 0;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5;
    background: var(--background);
}

@media (min-width: 768px) {
    body {
        grid-template-rows: auto 1fr auto;
        grid-template-columns: 100% 0%;
        grid-template-areas:
            "banner upcoming"
            "center upcoming"
            "current upcoming";
    }

    body.has-upcoming-events {
        grid-template-columns: 70% 30%;
    }
}

#club-banner {
    grid-area: banner;
}

#current-event {
    grid-area: current;
    /*background-color: rgba(0, 0, 0, 0.1);*/
    border-top: 1px solid rgba(255, 255, 255, 0.5);
}

#current-event .location {
    display: none !important;
}

#current-event .panel {
    display: flex;
    flex-direction: column;
    padding: 0;
    margin: 0;
    background-color: transparent;
    text-align: center;
}

@media (min-width: 768px) {
    #current-event .panel {
        flex-direction: row;
    }
}

#current-event .panel .panel-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
    margin: 2rem;
}

#current-event .panel .panel-section > * {
    margin: 0;
}

/*
#current-event .panel .panel-section.player {
    justify-content: flex-end;
}*/

#current-event h1 {
    line-height: 1.5;
}

#current-event .player h1 {
    display: none;
}

#upcoming-events {
    grid-area: upcoming;
    display: flex;
    margin: 0;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.1);
    border-left: 1px solid rgba(255, 255, 255, 0.5);
}

#upcoming-events .panel {
    flex: 1;
    overflow: hidden;
}

#upcoming-events .panel li {
    text-align: center;
}

#upcoming-events time {
    font-size: 0.7rem;
}

#upcoming-events h1 {
    margin-top: 2rem;
}

#upcoming-events .performer a {
    transform-origin: center;
    margin-top: 0.2rem;
    text-decoration: none;
    text-transform: none;
}

#upcoming-events .performer .details {
    padding: 0.5rem 0 1rem;
    border: none;
    background-color: rgba(255,255,255,0.2);
}

#upcoming-events .performer .details h2 {
    line-height: 1.2;
}

#upcoming-events .performer .details a {
    text-transform: none;
}

#social {
    grid-area: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

#social .location a {
    display: block;
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    /*font-weight: 100;*/
    /*text-decoration: none;*/
}

.social-icons {
    margin-bottom: 1rem;
}

button {
    border: none;
    cursor: pointer;
}

a {
    color: #fff;
}

#club-banner {
    display: flex;
    flex-direction: column;
    text-align: center;
}

#club-banner img {
    width: 100%;
    opacity: 0.8;
}

#club-banner h1 {
    font-size: 6rem;
    font-weight: 100;
    margin: 6rem 0 1rem;
}

#club-banner blockquote {
    font-size: 2rem;
    margin: 0 0 4rem;
}

.event-title {
    margin: 0.2rem 0 0.5rem;
    font-size: 1.5rem;
    /*color: var(--accent-color);*/
    text-transform: uppercase;
}

/*
.event-description {
    color: var(--accent-color);
}*/

.performers {
    margin: 1rem 0 0;
    text-transform: uppercase;
}

audio {
    width: 100%;
}

.panel-section a {
    text-transform: uppercase;
    text-decoration: none;
}

.panel {
    position: relative;
    padding: 2rem;
}

.panel .panel-section .full-width {
    margin: 0 -2rem;
}

.panel .panel-section h1 {
    margin: 0 0 1rem;
    font-size: 1.5rem;
    font-weight: 100;
    text-transform: uppercase;
}

.actions {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
    z-index: 1;
}

.actions button {
    color: #fff;
}

#social .social-icon svg {
    fill: #fff !important;
}

