@keyframes wave {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(77%);
    }
}
@keyframes wave2 {
    0%, 100% {
        transform: translate(-50%, -40%);
    }
    50% {
        transform: translate(-50%, -60%);
    }
}
@keyframes wave3 {
    0%, 100% {
        transform: translate(-50%, -60%);
    }
    50% {
        transform: translate(-50%, -40%);
    }
}
@keyframes shadowing {
    0% {
        box-shadow: 30px -10px 40px rgb(255, 190, 0), 20px 30px 60px red;
    }
    50% {
        box-shadow: 10px 20px 50px rgb(255, 190, 0), -10px 50px 70px red;
    }
    100% {
        box-shadow: 30px -10px 40px rgb(255, 190, 0), 20px 30px 60px red;
    }
}
@keyframes blinking {
    0%, 100% {color: grey;}
    50% {color: white;}
}
@keyframes blinking2 {
    0%, 100% {color: white;}
    50% {color: grey;}
}

::-webkit-scrollbar{
    display: none;
}
body {
    display: flex;
    background: rgb(255, 241, 214);
    font-family: Arial, Helvetica, sans-serif;
    margin: 0;
    padding: 0;
    color: black;
    width: 100vw;
    height: 100vh;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    user-select: none;
}
a {
    color: inherit;
    text-decoration: none;
    transition: color linear 0.2s;
}
a:hover, a:active {
    color: white;
}
.arrow {
    position: absolute;
    top: 0;
    left: 0;
    margin: 50px;
    transition: filter ease-in-out 0.1s;
    clip-path: inset(0 8px 0 0);
    z-index: 10;
}
.arrow:hover, .arrow:active {
    filter: invert(100%);
}
.social {
    position: absolute;
    text-align: right;
    font-size: 12px;
    right: 50px;
    top: 0;
    margin-top: 48px;
    z-index: 10;
}
.contact {
    position: absolute;
    text-align: right;
    font-size: 12px;
    right: 50px;
    bottom: 0;
    margin-bottom: 50px;
    padding-bottom: 4px;
    border-bottom: 1px solid black;
    width: 100%;
    clip-path: inset(0 0 0 100px);
    z-index: 10;
}
.about {
    position: absolute;
    text-align: left;
    font-size: 12px;
    left: 50px;
    bottom: 50px;
    padding-bottom: 4px;
    z-index: 10;
}

.container {
    position: relative;
    display: flex;
    flex-direction: column;
    width: 600px;
    margin: 0;
    padding: 0;
    background: black;
    outline: 1px dashed black;
    outline-offset: 6px;
    box-shadow: 20px -10px 30px rgb(255, 190, 0), 15px 20px 40px red;
    border: 2px solid black;
    animation: shadowing ease-in-out infinite 3s;
}

.pagetitle {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 5px;
    border-bottom: 0.5px dashed grey;
}
.pagetitle h1 {
    margin: 0;
    color: grey;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-align: left;
    animation: wave linear infinite 14s;
    flex: 1;
    min-width: 0;
    pointer-events: none;
}
.demobtn, .demobtn2 {
    flex-shrink: 0;
    margin-right: 5px;
    background: transparent;
    border: none;
    color: grey;
    font-family: inherit;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    touch-action: manipulation;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
    transition: color ease-out 0.15s, border-color ease-out 0.15s, opacity ease-out 0.15s;
}
.demobtn {
    animation: blinking ease-in-out 2s infinite;
}
.demobtn2 {
    animation: blinking2 ease-in-out 2s infinite;
}
.demobtn:hover, .demobtn2:hover {
    color: white;
    animation: none;
    text-shadow: 0 0 5px white;
}
.demobtn.active, .demobtn2.active {
    color: white;
    animation: none;
    opacity: 0.5;
    text-shadow: none;
}
.demobtn-right {
    margin-left: auto;
    margin-right: 0;
}

.shows {
    display: flex;
    width: 100%;
    height: 300px;
}
.showcard:first-child {
    border-right: 1px dotted grey;
}
.showcard {
    position: relative;
    width: 320px;
    height: 100%;
    overflow: hidden;
    cursor: default;
    box-sizing: border-box;
}
.showcard.red .showcard.blue {
    border: none;
}
.showimage {
    position: absolute;
    inset: 0;
    background-color: rgb(30, 30, 30);
    background-size: cover;
    background-position: center;
    box-shadow: inset 0 0 1px black;
    transition: ease-out 0.3s;
    zoom: 0.7;
}
.showcard:hover .showimage, .showcard:active .showimage {
    box-shadow: inset 0 0 30px black;
    opacity: 0.7;
}
.showcard::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.88) 0%, rgba(0, 0, 0, 0.35) 70%, rgba(0, 0, 0, 0) 100%);
    opacity: 0;
    transition: opacity ease-out 0.25s;
}
.showcard:hover::after, .showcard:active::after {
    opacity: 1;
}
.showvideo {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 5;
    opacity: 0;
    pointer-events: none;
    transition: opacity ease-out 0.15s;
}
.showvideo.playing {
    opacity: 1;
}
.showlabel, .showlabel2 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1;
    background: black;
    color: white;
    padding: 6px 6px;
    font-size: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
    transition: opacity ease-out 0.2s;
}
.showlabel {
    animation: wave2 ease-in-out 2s infinite;
}
.showlabel2 {
    animation: wave3 ease-in-out 2s infinite;
}
.showcard:hover .showlabel, .showcard:active .showlabel, .showcard:hover .showlabel2, .showcard:active .showlabel2 {
    opacity: 0;
}
.showtext {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 18px 22px 20px;
    color: white;
    z-index: 2;
    opacity: 0;
    transition: opacity ease-out 0.25s, transform ease-out 0.25s;
}
.showcard:hover .showtext, .showcard:active .showtext {
    opacity: 1;
}
.titlerow {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin: 4px 0 8px;
}
.showtext h2 {
    margin: 0;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
}
.showcard.red .showtext h2, .showcard.blue .showtext h2 {
    color: white;
}
.showtext h1 {
    margin: 0;
    font-size: 34px;
    font-weight: bold;
}
.showtext p {
    margin: 0;
    font-size: 12px;
    line-height: 17px;
    color: rgb(220, 220, 220);
}

.dates {
    position: relative;
    padding: 10px 12px 18px;
    color: white;
    border-top: 0.5px dashed grey;
}
.dates h2 {
    margin: 0;
    padding-bottom: 10px;
    margin-top: -5px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
}
.datelists {
    display: flex;
}
.datecol {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-width: 0;
}
.datecol:first-child {
    padding-right: 12px;
}
.datecol + .datecol {
    position: relative;
    padding-left: 12px;
}
.datecol + .datecol::before {
    content: "";
    position: absolute;
    top: -9px;
    bottom: 0;
    left: -1px;
    border-left: 1px dotted grey;
}
.datecol h3 {
    margin: 0 0 4px;
    padding-bottom: 6px;
    color: white;
    font-size: 11px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 0.5px dashed grey;
}
.scrollwrap {
    position: relative;
    height: 110px;
    overflow: hidden;
    margin-top: -4px;
}
.scrolllist {
    display: flex;
    flex-direction: column;
}
.scrolllist.scrolling {
    animation-name: marquee;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
.scrollwrap:hover .scrolllist.scrolling {
    animation-play-state: paused;
}
@keyframes marquee {
    from {
        transform: translateY(0);
    }
    to {
        transform: translateY(-50%);
    }
}
.daterow {
    display: flex;
    align-items: center;
    height: 22px;
    font-size: 12px;
    line-height: 22px;
    color: grey;
    white-space: nowrap;
}
.daterow.empty {
    color: grey;
    font-style: italic;
}
a.daterow {
    cursor: pointer;
}
a.daterow:hover, a.daterow:active {
    color: white;
}
a.daterow:hover .leader, a.daterow:active .leader {
    border-bottom-color: white;
}
.d-date, .d-loc {
    flex-shrink: 0;
}
.leader {
    flex: 1;
    align-self: center;
    height: 0;
    margin: 0 8px;
    border-bottom: 1px dotted grey;
}

.booking {
    display: flex;
    align-items: baseline;
    margin: 0 0 -10px 0;
    padding-top: 10px;
    font-size: 12px;
    color: grey;
    border-top: 0.5px dashed grey;
}
.booking .label {
    flex-shrink: 0;
}
.here {
    flex-shrink: 0;
    color: white;
    cursor: pointer;
}
.here:hover, .here:active {
    text-shadow: 0px 0px 5px white;
}

@media (max-width: 700px) {
    @keyframes wave {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(45%);
    }
    }
    .social {
        display: none;
    }
    .arrow {
        margin: 10px;
        width: 20px;
        height: 20px;
        clip-path: inset(0 6px 0 0);
    }
    .contact {
        right: 10px;
        margin-bottom: 10px;
        clip-path: inset(0 0 0 20px);
    }
    .about {
        left: 10px;
        bottom: 10px;
    }
    .container {
        width: 90vw;
        max-width: 340px;
    }
    .pagetitle {
        padding: 10px 16px;
    }
    .pagetitle h1 {
        font-size: 16px;
        letter-spacing: 1px;
        animation: wave linear infinite 6s;
    }
    .demobtn, .demobtn2 {
        padding: 0;
    }
    .shows {
        flex-direction: column;
        height: auto;
    }
    .showcard:first-child {
        border-right: none;
        border-bottom: 1px dotted grey;
    }
    .showcard {
        width: 100%;
        height: 220px;
        border-bottom: none;
    }
    .showtext {
        padding: 12px 16px 14px;
    }
    .showlabel {
        font-size: 10px;
        padding: 5px 10px;
    }
    .titlerow {
        margin: 2px 0 4px;
    }
    .showtext h1 {
        font-size: 24px;
    }
    .showtext p {
        font-size: 11px;
        line-height: 15px;
    }
    .dates {
        padding: 12px 6px 14px;
    }
    .datecol:first-child {
        padding-right: 6px;
    }
    .datecol + .datecol {
        padding-left: 6px;
    }
    .scrollwrap {
        height: 80px;
    }
    .daterow {
        height: 16px;
        font-size: 10px;
        line-height: 16px;
    }
    .leader {
        margin: 0 5px;
    }
    .booking {
        font-size: 10px;
        padding-bottom: 5px;
    }
}
