@font-face {
    font-family: 'Belligerent Madness';
    src: url('fonts/BelligerentMadness.woff2') format('woff2'),
        url('fonts/BelligerentMadness.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Sabre du Rhinoceros';
    src: url('fonts/SabreduRhinoceros.woff2') format('woff2'),
        url('fonts/SabreduRhinoceros.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}

:root {
    --overlay-color: #607490;
    --scrollbar-color1: #777;
    --scrollbar-color2: #111;
    --speed: 0.6s;
    --menu-width-vw: 10vw;
    --menu-width-px: 100px;

}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-size: max(1.2vh, 14px);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
}


/* ########## Scrollbars, Bloody Scrollbars ######### */
/* Works on Firefox */
* {
    scrollbar-width: thin;
    scrollbar-color: var(--scrollbar-color1) var(--scrollbar-color2);
}

/* Works on Chrome, Edge, and Safari */
*::-webkit-scrollbar {
    width: 12px;
}

*::-webkit-scrollbar-track {
    background: var(--scrollbar-color2);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--scrollbar-color1);
    border-radius: 20px;
    border: 3px solid var(--scrollbar-color2);
}

/* ########## End Scrollbars ######### */



h1 {
    font-size: 1.5em;
}

h2 {
    font-size: 1.2em;
}

a {
    color: #fff;
}

a:hover {
    color: var(--overlay-color);
}

table,
th,
tr,
td {
    color: #fff;
}

.venue-logo {
    width: 5vw;
}

.upcoming-show-poster {
    display: flex;
}

img.upcoming-show-poster {
    width: 20vw;
}

.showcase {
    position: absolute;
    width: 100%;
    min-height: 100vh;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #111;
    transition: var(--speed);
    z-index: 2;
}

.showcase.active {
    left: 0;
    width: calc(100vw - max(var(--menu-width-px), var(--menu-width-vw)));
    right: 300px;
    transition: var(--speed);
}

.showcase header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    /* padding: 1vh 1vw; */
    z-index: 1000;
    display: flex;
    align-items: top;
    justify-content: space-between;
}

.logo {
    height: 12vh;
    position: relative;
    transition: var(--speed);
}

/* .sdrlogo {
    position: relative;
    top: -6vh;
    left: 12vh;
    padding: 0 0 0 0;
    scale: 1.5;
    transition: 0.5s;
}

.sdrlogo h1 {
    font-family: 'Sabre du Rhinoceros', sans-serif;
    display: inline;
    font-size: 6em;
    font-weight: 100;
    color: antiquewhite;
    letter-spacing: -1.8vh;
}

.sdrlogo h2 {
    font-family: 'Belligerent Madness', sans-serif;
    display: inline;
    font-size: 1em;
    font-weight: 100;
    color: antiquewhite;
} */



.showcase video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.6;
    z-index: -1;
}



.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-color);
    mix-blend-mode: overlay;
}

.content {
    position: absolute;
    background-color: #000000a0;
    opacity: 1;
    top: 15vh;
    left: max(2vw, calc((100vw - 1200px)/2));
    width: min(90vw, 1200px);
    height: 70vh;
    padding: 2vh 2vw;
    color: rgb(255, 255, 255);
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-size: 1em;
    display: block;
    justify-content: space-between;
    overflow: auto;
    transition: var(--speed);
}

.content-menu {
    margin: 0;
    right: 0;

    display: relative;
    float: right;
}

.content.active {
    width: calc((100vw - 300px) * min(90vw, 1200px));
    left: max(2vw, calc((100vw - 1200px)/2 - 300px));
}

.photocredit {
    font-size: 1vh;
}

.toggle {
    position: relative;
    height: 125px;
    width: 125px;
    right: 0;
    background: url('images/menu.png');
    background-repeat: no-repeat;
    background-size: 125px;
    background-position: center;
    cursor: pointer;
    transition: var(--speed);
    z-index: 1000;
}

.toggle:hover {
    transform: scale(1.2);
}

.toggle.active {
    position: relative;
    width: 125px;
    height: 125px;
    background: url('images/menu.png');
    background-repeat: no-repeat;
    background-size: 40px;
    background-position: center;
    cursor: pointer;
}

.menu {
    position: absolute;
    top: 2vh;
    right: 0;
    width: max(var(--menu-width-px), var(--menu-width-vw));
    height: 75vh;
    padding: 2vh 2vw;
    display: flex;
    align-items: top;
    justify-content: left;
}

.menu ul {
    position: relative;
    list-style: none;
}

.menu ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1em;
}

.menu ul li a:hover {
    color: var(--overlay-color);
}

.social {
    background-color: rgba(0, 0, 0, 0.50);
    position: absolute;
    height: 10vh;
    padding: 1vh;
    bottom: 3vh;
    left: max(2vw, calc((100vw - 1200px)/2));
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--speed);
}

.social.active {
    left: max(2vw, calc((100vw - 1200px)/2 - var(--menu-width-px)));
}

.social-button {
    display: flex;
    height: 100%;
    text-align: center;
    justify-content: center;
    align-items: center;
    transition: var(--speed)
}

.social-link {
    text-decoration: none;
}

.social-image {
    height: 100%;
}

.social-image-caption {
    color: #fff;
    font-size: 1vh;
    justify-content: center;
    display: block;
}

/* .social li {
    list-style: none;
}

.social li a {
    display: inline-block;
    margin-right: 0.2vw;
    transition: var(--speed);
} */

.social-button:hover {
    transform: translateY(-15px);
}

.ytframe {
    position: relative;
    display: flex;
    width: 40vw;
    height: 40vh;
}

.ytframeouter {
    display: flex;
    height: 40vh;
}


.next-show {
    color: #fff;
    background-color: rgba(0, 0, 0, 0.50);
    position: absolute;
    height: 10vh;
    padding: 1vh;
    bottom: 3vh;
    font-size: 1vh;
    right: max(2vw, calc((100vw - 1200px)/2));
    z-index: 10;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: var(--speed);
}

.next-show.active {
    right: calc((100vw - 1200px)/2 - max(var(--menu-width-px), var(--menu-width-vw))/2)
}

.venue-logo-next-show {
    height: 8vh;
}

.next-show h1 {
    font-size: 2vh;
}

.next-show h2 {
    font-size: 1.5vh;
}

td.shows,
p.shows {
    font-size: 2vh;
}

.showlist-title {
    font-size: 2vh;
}

.showlist-date {
    font-size: 1.75vh;
}

.showlist-address {
    font-size: 1.5vh;
}

/* .shows h1 {
    font-size: 3vh;
} */

/* .shows h2 {
    font-size: 2.5vh;
} */

/* Small Portrait */
@media screen and (orientation:portrait) and (max-width: 991px) {
    h1 {
        font-size: 1.3em;
    }

    h2 {
        font-size: 1.1em;
    }

    .venue-logo {
        width: 8vw;
    }

    .logo {
        height: 150px;
    }

    .content {
        top: 175px;
        width: 96vw;
        font-size: 0.8em;
        height: 68vh;
    }

    .content.active {
        width: 630px;
        left: 1vh;
    }

    .toggle {
        background-size: 80px;
    }

    .social {
        bottom: 14vh;
        height: 8vh;
        left: 1vh;

    }

    td.shows,
    p.shows {
        font-size: 20px;
    }

    /* .shows h1 {
        font-size: 30px;
    } */

    /* .shows h2 {
        font-size: 26px;
    } */

    .ytframe {
        width: 80vw;
        height: 30vh;
    }

    .photocredit {
        font-size: 1vh;
    }

    img.upcoming-show-poster {
        width: 90vw;
    }

    .venue-logo {
        width: 20vw;
    }

}

/* Small Landscape */
@media screen and (orientation:landscape) and (max-height: 921px) {

    .toggle {
        background-size: 30px;
    }

    .logo {
        height: 75px;
    }

    .showcase.active {
        width: calc(100vw - var(--menu-width-px));
    }

    .content {
        height: 60vh;
        padding: 50px;
        left: 2vw;
    }

    .content.active {
        width: calc(100vw - var(--menu-width-px) - 2vh);
        left: 2vh;
    }

    .social {
        bottom: 10vh;
        height: 60px;
    }

    .next-show {
        bottom: 6vh;
        height: 80px;
        right: 8vw;
    }

    .photocredit {
        font-size: 1vh;
    }

    img.upcoming-show-poster {
        width: 30vw;
    }

    .venue-logo {
        width: 10vw;
    }

}

/* Large Landscape */
@media screen and (orientation:landscape) and (min-height: 922px) {


    .toggle {
        background-size: 30px;
    }

    .photocredit {
        font-size: 1vh;
    }

}