:root {
    --color-orange: #E68502;
}

* {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    position: relative;
    max-width: 100%;
    width: 100vw;
    min-height: 100vh;
    color: #FFF;
    background: #000;
    line-height: 1.5em;
    font-size: 20px;
    overflow-x: hidden;
    background-size: 0px !important;
    -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

body:before {
  background-image: url(./img/background5.jpg) !important;
  background-repeat: inherit !important;
  background-size: cover;
  background-position: center center;
  content: "";
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1 !important;
  pointer-events: none;
}

h1, h2, h3, h4, h5, h6, .highlight {
    font-family: 'Cinzel', serif;
    text-align: center;
    line-height: 1.1em;
    position: relative;
}
h1 { font-size: 42px; color: #FFF; }
h2 { font-size: 56px; color: var(--color-orange); padding-top: 2em; margin-bottom: 1.75em; }
h3 { font-size: 36px; color: var(--color-orange); }
h4 { font-size: 28px; color: var(--color-orange); }

h2:after {
  content: "";
  position: absolute;
  bottom: -45px;
  left: 0;
  height: 40px;
  width: 100%;
  border: solid 2px rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.3) transparent transparent transparent;
  border-radius: 100%;
}

a {
    color: var(--color-orange);
    text-decoration: none;
    transition: all 0.15s ease-in-out;
}
a:hover {
    color: #FFF;
    text-decoration: underline;
}

p {
    margin-top: 0;
}
p:last-of-type {
    margin-bottom: 0;
}
.highlight {
    font-weight: 900;
    margin-bottom: 2em !important;
}
.bigger {
    font-size: 1.5em;
    line-height: 1.3em;
}
.orange {
    color: var(--color-orange);
}
blockquote {
    font-weight: 900;
    font-style: italic;
    text-align: center;
    font-size: 1.2em;
    margin: 1.5em 0;
    padding: 0;
}
img {
    display: block;
    width: 100%;
    border-radius: 5px;
}

section {
    max-width: 900px;
    margin: 150px auto;
    padding: 0 20px;
}

hr {
    height: 1px;
    border: none;
    background: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(255, 255, 255, 1) 50%, rgba(0,0,0,0) 100%);
}

audio {
    width: 100%;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(0,0,0,0.8);
    border-bottom: 2px solid #000;
    padding: 10px 0;
    text-align: center;
}
nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

nav ul li {
    display: inline;
    margin: 0 10px;
}

nav ul li a {
    color: #FFF;
    text-decoration: none;
    font-size: 1em;
    font-weight: 900;
    transition: all 0.15s ease-in-out;
}
nav ul li a:hover {
    color: var(--color-orange);
}


header {
    display: block;
    min-height: 50vh;
    padding: 10vh 10px 20px;
}
header img {
    max-width: 600px;
    margin: 50px auto;
}
header section {
    margin: 50px auto 0;
    text-align: center;
}

header h1 {
    margin: 0;
    line-height: 1em;
}
header .slogan {
    display: block;
    text-align: center;
    line-height: 1em;
    color: hsl(207, 11%, 53%);
    font-weight: 900;
    font-size: 56px;
}
@media (min-width: 800px) {
    header .slogan {
        font-size: 80px;
    }
}

.flex-container {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

@media (min-width: 800px) {
    .flex-container.flex-reverse-desktop {
        flex-direction: row-reverse;
    }
}
.flex-container > * {
    padding: 20px 0;
    width: 100%;
}


.flex-container img {
    display: block;
    width: 100%;
    object-fit: cover;
    border-radius: 50px;
    align-self: flex-start;
}
@media (min-width: 800px) {
    .flex-container {
        flex-direction: row;
        text-align: left;
    }
   .flex-reverse {
    flex-direction: row-reverse;
}
}

.slider {
    flex-grow: 1;
    width: 100%;
}
.slider img {
	display: none;
    object-fit: cover;
    border-radius: 5px;
    align-self: flex-start;
}

.animate-left {
	position: relative;
	animation: animateleft 0.8s
}

@keyframes animateleft {
	from { left :-50px; opacity:0 }
	to { left:0; opacity:1 }
}


.shooting-star {
    position: fixed;
    left: 20vw;
    top: 50vh;
    width: 4px;
    height: 4px;
    background: #FFF;
    border-radius: 50%;
    box-shadow:
        0 0 0 4px rgba(255, 255, 255, 0.1),
        0 0 0 8px rgba(255, 255, 255, 0.1);
    animation: shootingStar 5s linear infinite;
    z-index: -1;
}
.shooting-star:before {
    display: block;
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 200px;
    height: 1px;
    background: linear-gradient(90deg, #FFF, transparent);
}

@keyframes shootingStar {
    0% {
        transform: rotate(185deg) translateX(0);
        opacity: 0;
    }
    5% {
        opacity: 1;
    }
    40% {
        opacity: 0;
    }
    50% {
        transform: rotate(190deg) translateX(-1000px);
    }
    100% {
        opacity: 0;
    }
}

@media screen and (max-width: 800px) {
    .shooting-star {
        top: 30vh;
        /* display: none; */
    }
}


#background {
    height: 100vh;
    width: 100vw;
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000;
}
#background .stars {
  position: absolute;
  background: #f1f1f1;
  z-index: 18;
  border-radius: 100%;
}
#background:after {
    display: block;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(345deg, rgba(0,0,0,0) 0%, rgba(27,81,126,0.3) 50%, rgba(0,0,0,0) 100%), linear-gradient(355deg, rgba(0,0,0,0) 50%, rgba(131,174,209,0.1) 60%, rgba(0,0,0,0) 70%), linear-gradient(335deg, rgba(0,0,0,0) 50%, rgba(131,174,209,0.1) 60%, rgba(0,0,0,0) 70%);
}


footer {
    background: url(./img/footer.png) center top no-repeat;
    background-size: cover;
    padding: 80px 0;
    font-size: 0.9em;
    color: #AAA;
    text-shadow: 1px 1px 4px #000;
}
footer strong {
    color: #FFF;
}
footer section {
    margin: 0 auto;
}


/* .reveal {
  opacity: 0;
  transition: opacity 1s;
}

.reveal.fade-in {
  opacity: 1;
} */


.events article {
    margin-bottom: 60px;
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    flex-direction: row;
}
.events article .date {
    width: 100px;
    font-size: 60px;
    line-height: 48px;
    font-weight: bold;
}
.events article h3 {
    line-height: 1em;
    text-align: left;
    margin-top: 0;
    margin-bottom: 0.25em;
}
.events article .ticket-cta {
    display: inline-block;
    margin-top: 1em;
    padding: 15px;
    border-radius: 20px;
    color: #FFF;
    background-color: rgba(230, 133, 2, 0.6);
    border: 2px solid rgba(230, 133, 2, 1);
    text-decoration: none;
    font-weight: 900;
    text-shadow: 1px 1px 2px #000;
    transition: all 0.15s ease-in-out;
}

.events article .ticket-cta:hover {
    background-color: rgba(230, 133, 2, 0.9);
    border: 2px solid rgba(230, 133, 2, 1);
}


.crew-member {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 80px;
}

.crew-member img {
    border-radius: 50px;
    max-width: 300px;
    aspect-ratio: 1/1;
    margin: auto;
}
.crew-member h3 {
    line-height: 1em;
    text-align: center;
    margin: 0.2em 0 1em 0;
}

@media (min-width: 800px) {
    .crew-member {
        flex-direction: row;
    }
    .crew-member h3 {
        text-align: left;
    }
}


/* ------------------------------ */

.player .shooting-star {
    top: 30vh;
}
.player {
    display: flex;
    flex-wrap: nowrap;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    height: 100vh;
    overflow: hidden;
}
.player header {
    height: auto;
    margin: 0;
    min-height: 0;
    padding: 10vh 30px !important;
}
.player header h1 {
    line-height: 1.4em;
}
.player main {
    flex: 1;
    padding-left: 20px;
    padding-right: 20px;
}
.player footer {
    min-height: 20vh;
}
audio {
    width: 100%;
}
