@charset "UTF-8";

@font-face {
	font-family: 'MedievalSharp';
	src: url('/Fonts/MedievalSharp/MedievalSharp-Regular.woff2') format('woff'), 
		 url('/Fonts/MedievalSharp/MedievalSharp-Regular.ttf') format('truetype'); 
	font-weight: normal;
	font-style: normal;
	
}

* {
	font-family: 'MedievalSharp';
	color:#fdc259;
	font-size: 1.2rem;
}

h1 {
	font-size: 2rem;
	font-weight: normal;
}

html,body{
	background-color:#080908;
	background-image: url('/assets/Background.png');
	margin: 0px;
	padding: 0px;
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.join-order{
	position: fixed;
	margin: 1rem;
	right: 0px;
	top: 0px;
	z-index: 100;
}
.join-order img{
	height: 50px;
}
header{
	width: 100%;
	height: 80vh;
	max-height: fit-content;
	text-align: center;
	font-size:2rem;
}


.link{
	width: 23.4rem;
	
}
.link-cta {
	background-color: #00000000;
	transition: background-color 1s, color 1s;
	align-items: center;
	border: 1px solid #fdc259;
	box-sizing: border-box;
	display: flex;
	flex-direction: row;
	font-size: .875rem;
	font-weight: 700;
	letter-spacing: .175rem;
	max-height: 3.75rem;
	padding: 1.375rem 1.5rem;
	position: relative;
	text-decoration: none;
	text-transform: uppercase;
	white-space: nowrap;
	margin: 2rem auto;
	justify-content: center;
}

.link-cta:hover {
	background-color: #fdc259;
	color: #080908;
}
.link-cta:hover img {
	mix-blend-mode: difference;
}

section, footer{
	margin: 2rem 0%;
	position: relative;
}

section a {
	text-decoration: none;
}

section a:hover img {
	mix-blend-mode: hard-light;
}
/* Slideshow container */
.slideshow-container {
	max-width: 1000px;
	max-height: 560px;
	position: relative;
	margin: auto;
	overflow: hidden;
}

/* Hide the images by default */
.mySlides {
	display: none;
}

/* Next & previous buttons */
.prev, .next {
	cursor: pointer;
	display: flex;
	align-items: center;
	position: absolute;
	top: 0;
	width: auto;
	margin-top: 0px;
	padding: 66px;
	color: white;
	font-weight: bold;
	font-size: 18px;
	transition: 0.6s ease;
	border-radius: 0 3px 3px 0;
	user-select: none;
	height: -webkit-fill-available;
}

/* Position the "next button" to the right */
.next {
	right: 0;
	border-radius: 3px 0 0 3px;
}

.prev:hover{
	background: linear-gradient(90deg, #fdc25988, transparent);
}
.next:hover {
	background: linear-gradient(270deg, #fdc25988, transparent);
}

/* Caption text */
.text {
	font-size: 1.2rem;
	text-align: center;
}

/* Number text (1/3 etc) */
.numbertext {
	color: #fdc259;
	font-size: 12px;
	padding: 8px 12px;
	position: absolute;
	top: 0;
}

/* The dots/bullets/indicators */
.dot {
	cursor: pointer;
	height: 30px;
	width: 30px;
	margin: 0 2px;
	background-image: url(/assets/UI_Selector.png);
	background-repeat: no-repeat;
	background-size: cover;
	background-position: top center;
	display: inline-block;
	transition: background-color 0.6s ease;
}

.active, .dot:hover {
	filter: brightness(2);
}

/* Fading animation */
.fade {
	animation-name: fade;
	animation-duration: 1.5s;
}

@keyframes fade {
	from {opacity: .4}
	to {opacity: 1}
}

.nine-patch-box {
	border: 30px solid transparent;
	border-image-source: url(/assets/UI_Puzzles_Window.png);
	border-image-slice: 100;
	border-image-repeat: stretch;
}

.video-container {
	width: 100%;	/* Example size */
	overflow: hidden;
}

.youtube-container{
	width: 80vw;
}
.youtube-container iframe {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 9;
}

.video-container video {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

@media (min-width: 760px) {
	.youtube-container {
		width: 50vw;
	}
	section a:not(.prev,.next) {
		text-decoration: none;
		margin: auto 2rem;
	}
	header .fade {
		position: absolute;
		bottom: 0;
		left: 0;
		width: 100%;
		height: 20vh;
		background: linear-gradient(0deg, #000F 30%, #0000 100%);
	}
	.fade.inverted{
		position: relative;
		top: -10px;
		left: 0;
		width: 100%;
		height: 20vh;
		background: linear-gradient(180deg, #000F 30%, #0000 100%);
	}
	
	.fade img{
		margin: auto;
	}
	section {
		margin: 4rem 20%;
	}
}