@charset "UTF-8";



:root {
	--color-black: #010300;
	--color-white: #fcfcfa;
	--color-yellow: #f8b530;
	--color-blue: #32a2D2;
}

html {
	font-size: 100%;
	-webkit-box-sizing: inherit;
		  box-sizing: inherit;
	scroll-behavior: smooth;
}

body {
	background: var(--color-black);
	/*background-image: url("img/bg-black-texture.webp");
	background-repeat: repeat-y;
	background-size: contain;
	background-position: top center;*/
	font-family: 'Road Rage', 'Segoe UI', Helvetica, Arial, sans-serif;
	font-size: 2.25rem;
	line-height: 1.5;
	color: var(--color-yellow);
}

#preloader {
	background-color: var(--color-black);
}
#preloader .preload-icon {
	border: 4px solid rgba(50, 162, 210, .25);
	border-top: 4px solid var(--color-blue);
}

h1, h2, h3, h4, h5, h6 {
	color: var(--color-white);
	line-height: .85;
}
h2 {
	font-size: clamp(3rem, 4vw, 4.5rem);
}
h3 {
	font-size: clamp(2.5rem, 4vw, 2.5rem);
	color: var(--color-yellow);
}
h4 {
	font-size: clamp(1.75rem, 4vw, 1.75rem);
	color: var(--color-yellow);
	text-transform: uppercase;
}

p, #content p {
	padding-bottom: 3rem;
	line-height: 1.1;
}

a.btn, a:link.btn, a:visited.btn {
	margin: 0 !important;
	padding: .4em 10vw;
	background: var(--color-black);
	border-radius: 25rem;
	text-transform: uppercase;
	font-size: clamp(2.5rem, 4vw, 4.5rem);
	transition: all .15s ease-in-out;
}
a:hover.btn, a:active.btn {
	background: var(--color-black);
	transform: scale(1.02);
}

a#to-top:before {
	content: '\f106';
	font-family: 'FontAwesome', sans-serif;
}
@media screen and (min-width: 0px) and (max-width: 600px) {
	a#to-top:before {
		line-height: 1.4 !important;
	}
}
a#to-top, a:link#to-top, a:visited#to-top,
a:hover#to-top, a:active#to-top {
	background: var(--color-black);
	color: var(--color-blue);
}

section {
	padding: 20vh 0;
}

#hero {
	position: relative;
	width: 100vw;
	height: 100vh;
	background-color: rgba(255,255,255,.15);
	background-image: url("img/Lodger-color.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
}
@media screen and (min-width: 0) and (max-width: 768px) {
	#hero {}
}
#hero .row {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
}
#hero iframe {
	width: 100%;
	height: 100%;
}
img.btn-play {
	max-width: 10vw;
}
@media screen and (min-width: 0) and (max-width: 1080px) {
	img.btn-play {
		max-width: 30vw;
	}
}

#tickets-1, #tickets-2 {
	padding: 10vh 0;
	background-color: var(--color-yellow);
	background-image: url("img/bg-yellow-texture.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	text-align: center;
}
#tickets-1 h1, #tickets-2 h1,
#tickets-1 h2, #tickets-2 h2 {
	color: var(--color-black);
}

#overview {
	padding-right: 40vh;
	padding-left: 40vh;
}
@media screen and (min-width: 0) and (max-width: 1080px) {
	#overview {
		padding-right: 7vw;
		padding-left: 7vw;
	}
}

#intro {
	padding: 60vh 0 50vh;
	text-align: center;
}
#intro img.logo {
	padding: 0 5rem 3rem;
}

#performers {
	padding-top: 0;
	text-align: center;
}
#performers .performer-wrap {
	padding: 0 3rem;
}
@media screen and (min-width: 0) and (max-width: 1080px) {
	#performers .performer-wrap {
		padding: 0 6rem;
	}
}
#performers img.performer {
	border-radius: 25rem;
	margin-top: 4.5rem;
	margin-bottom: 1.5rem;
	transition: all .2s ease-in-out;
}
#performers img:hover.performer {
	transform: scale(1.07);
}
#performers img:after.performer {
	content: 'View Bio';
	text-align: center;
	display: block;
	margin: 0 auto;
}
#content #performers .performer-wrap h1,
#content #performers .performer-wrap h2,
#content #performers .performer-wrap h3,
#content #performers .performer-wrap h4,
#content #performers .performer-wrap h5,
#content #performers .performer-wrap h6 {
	padding-bottom: 0 !important;
}
#content #performers .performer-wrap a:has(h1),
#content #performers .performer-wrap a:has(h2),
#content #performers .performer-wrap a:has(h3),
#content #performers .performer-wrap a:has(h4),
#content #performers .performer-wrap a:has(h5),
#content #performers .performer-wrap a:has(h6) {
	text-decoration: none;
	cursor: pointer !important;
}
#content #performers .performer-wrap h6 {
	margin-top: .75rem !important;
	border: 2px solid var(--color-white);
	border-radius: 3rem;
	padding: .5rem .5rem !important;
	cursor: pointer;
}

/* Modals */
.modal {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: flex-start;
  z-index: 1000;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal.modal-show {
  animation: fadeIn 0.1s ease-in-out forwards;
}
.modal.modal-hide {
  animation: fadeOut 0.1s ease-in-out 0.1s forwards;
}
.modal-content {
	position: relative;
	background-color: rgba(0,0,0,.8);
	-webkit-backdrop-filter: blur(4px);
			backdrop-filter: blur(4px);
	margin: 2rem;
	padding: 2rem;
	border-radius: 0.25rem;
	width: 50%;
	max-height: 75%;
	overflow: auto;
	box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}
.modal.modal-show .modal-content {
  animation: fadeInDown 0.3s ease-in-out forwards;
}
.modal.modal-hide .modal-content {
  animation: fadeOutUp 0.2s ease-in-out forwards;
}
#content .modal-content h1 {
	text-align: center;
	padding-bottom: 0 !important;
}
#content .modal-content h2 {
	text-align: center;
	padding-bottom: 1.5rem !important;
}
.modal-content p {
  margin: 1rem 0;
  line-height: 1.5rem;
}
.modal-close {
	position: absolute;
	top: 2vh;
	right: 2vh;
	font-size: 1.75rem;
	font-weight: bold;
	padding: 0 0.75rem;
	color: var(--color-white);
	cursor: pointer;
	user-select: none;
}
.modal-close:hover,
.modal-close:focus {
  color: var(--color-white);
}

.modal:nth-of-type(2) {
  justify-content: initial;
  align-items: initial;
  background-color: transparent;
}
.modal:nth-of-type(2) .modal-content {
  margin: 0;
  padding: 2rem 5rem;
  border-radius: 0;
  box-shadow: initial;
  width: 100%;
  height: 100%;
  max-height: 100%;
  text-align: left;
}
.modal:nth-of-type(2) .modal-close {
  font-size: 3rem;
  padding: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal:nth-of-type(2).modal-show {
  animation: none;
}
.modal:nth-of-type(2).modal-hide {
  animation: none;
}
.modal:nth-of-type(2).modal-show .modal-content {
  animation: zoomIn 0.3s ease-in-out forwards;
}
.modal:nth-of-type(2).modal-hide .modal-content {
  animation: zoomOut 0.2s ease-in-out forwards;
}

.modal:nth-of-type(3) {
  justify-content: flex-end;
  align-items: flex-end;
  background-color: transparent;
  overflow: hidden;
}
.modal:nth-of-type(3).modal-show {
  animation: none;
}
.modal:nth-of-type(3).modal-hide {
  animation: none;
}
.modal:nth-of-type(3).modal-show .modal-content {
  animation: fadeInLeft 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}
.modal:nth-of-type(3).modal-hide .modal-content {
  animation: fadeOutRight 0.2s ease-in-out forwards;
}

.modal:nth-of-type(4) .modal-content {
  padding: 0;
}
.modal:nth-of-type(4) .modal-header,
.modal:nth-of-type(4) .modal-footer {
  background-color: steelblue;
  padding: 1rem;
  color: #fff;
  text-align: center;
}
.modal:nth-of-type(4) .modal-header h1 {
  margin: 0;
}
.modal:nth-of-type(4) .modal-body {
  padding: 1.25rem;
}
.modal:nth-of-type(4) .modal-close {
  color: rgba(255, 255, 255, 0.5);
}
.modal:nth-of-type(4) .modal-close:hover,
.modal:nth-of-type(4) .modal-close:focus {
  color: rgba(255, 255, 255, 0.75);
}

.modal:nth-of-type(5) {
  justify-content: center;
  align-items: center;
}
.modal:nth-of-type(5) .modal-content {
  padding: 0;
  height: 80%;
  max-height: 80%;
  width: auto;
  max-width: 80%;
  overflow: visible;
  border: 3px solid #fff;
}
.modal:nth-of-type(5) .modal-content img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.modal:nth-of-type(5) .modal-close {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  width: 3rem;
  height: 3rem;
  font-size: 3rem;
  top: -1.5rem;
  right: -1.5rem;
  border-radius: 50%;
  color: #111;
  background-color: #fff;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.2);
}
.modal:nth-of-type(5) .modal-close:hover,
.modal:nth-of-type(5) .modal-close:focus {
  color: #111; /* color: rgba(255,0,0,0.5); */
}
.modal:nth-of-type(5).modal-show .modal-content {
  animation: zoomIn 0.3s ease-in-out forwards;
}
.modal:nth-of-type(5).modal-hide .modal-content {
  animation: zoomOut 0.2s ease-in-out forwards;
}

/* Animations */
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeInDown {
  0% {
    opacity: 0;
    transform: translateY(-3rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutUp {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-3rem);
  }
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes zoomOut {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(0.3);
  }
}
@keyframes fadeInLeft {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeOutRight {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateX(100%);
  }
}

/* Responsiveness */
@media (max-width: 992px) {
  html {
    font-size: 14px;
  }
  .modal-content {
    width: 80%;
  }
}
@media (max-width: 767px) {
  html {
    font-size: 12px;
  }
  .modal-content {
    padding: 2rem 1rem 1rem 1rem;
    width: 90%;
  }
  .modal-content h1 {
    margin-bottom: 1.5rem;
  }
  .modal:nth-of-type(2) .modal-content {
    padding: 2rem 3rem;
  }
  .modal:nth-of-type(3) {
    justify-content: center;
  }
  .modal:nth-of-type(3) .modal-content {
    width: 80%;
  }
  .modal:nth-of-type(5) .modal-content {
    max-width: 85%;
  }
}

footer {
	padding: 15vh 0;
	background-color: var(--color-black);
	background-image: url("img/bg-black-texture.webp");
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	font-family: 'Segoe UI', Helvetica, Arial, sans-serif;
	text-align: center;
	color: var(--color-white);
}
footer a, footer a:link, footer a:visited {
	color: var(--color-white);
}
footer img.logo {
	padding: 0 5rem 3rem;
}
footer .social {
	padding-top: 6rem !important;
}
a.social-icn.be:before, a.social-icn.db:before, a.social-icn.fb:before, a.social-icn.fr:before, a.social-icn.g1:before, a.social-icn.ig:before, a.social-icn.li:before, a.social-icn.pn:before, a.social-icn.rss:before, a.social-icn.tr:before, a.social-icn.tw:before, a.social-icn.vm:before, a.social-icn.tw-x:before, a.social-icn.yt:before {
	padding: .75rem;
	font-size: 2.5rem;
	color: var(--color-white);
}
