

/* © 2025 LenCraft Studios */


@media (orientation: landscape) {

	.mobile {
	display: none;
	}
	
	body {
	background-color: black;
	color: white;
	font-family: Montserrat;
	margin: 0;
	padding: 0;
	}

	a {
	color: white;
	transition: 0.1s ease;
	}

	a:hover {
	filter: brightness(.5);
	}

	header {
	z-index: 2;
	position: fixed;
	display: inline-block;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 60px;
	background: linear-gradient(45deg, #373740 0%, #1c1c1f 100%);
	box-shadow: 0 0 10px 1px black;
	transition: 1s ease;
	font-size: 14pt;
	}

	header .logo {
	height: 100%;
	transition: 0.2s ease;
	animation: hue 1s ease;
	}

	@keyframes hue {
		to {
		filter: hue-rotate(360deg);
		}
	}

	header .logo:hover {
	transform: scale(1.1);
	}

	header .nav {
	font-weight: 700;
	float: right;
	display: flex;
	margin-right: 50px;
	align-items: center;
	height: 100%;
	}
	
	header .nav a {
	margin-right: 30px;
	position: relative;
	text-decoration: none;
	color: #bdbdbd;
	}
	
	header .nav a::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 0.1em;
	background-color: #bdbdbd;
	opacity: 0;
	transition: opacity 300ms, transform 300ms;
	}
	
	header .nav a:hover::after,
	header .nav a:focus::after {
	opacity: 1;
	transform: translate3d(0, 0.2em, 0);
	transform: scale(1);
	}
	
	header .nav a::after {
	opacity 1;
	transform: scale(0);
	transform-origin: center;
	}
	
	main {
	margin: 5rem 2rem;
	font-size: 1rem;
	}

	.close {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 30px;
        color: white;
        cursor: pointer;
	}

	.desktop.footer {
	position: static;
	bottom: 0;
	left: 0;
	right: 0;
	text-align: center;
	color: white;
	background: linear-gradient(to top, rgba(255,255,255,.1), black);
	padding: 0 0 1px;
	font-size: 2vh;
	}

	.desktop.footer #logo {
	width: 20vh;
	margin: 3vh;
	transition: .5s all ease;
	}

	.desktop.footer table {
	margin:  0 auto 70px;
	text-align: left;
	}

	.desktop.footer table td {
	width: 20%;
	}

	.desktop.footer a {
	color: white;
	text-decoration: none;
	}

	.desktop.footer a:hover {
	color: #c9c9c9;
	}
}

@media (orientation: portrait) {

	.desktop {
	display: none;
	}	

	html , body {
	width: 100%;
	font-family: Montserrat;
	margin: 0;
	padding: 0;
	color: white;
	background-color: black;
	}

	a {
	color: white;
	transition: 0.1s ease;
	}

	a:hover {
	filter: brightness(.5);
	}

	header {
	font-size: 9pt;
	z-index: 10;
	position: fixed;
	display: inline-block;
	overflow: hidden;
	top: 0;
	left: 0;
	width: 100%;
	height: 50px;
	background: linear-gradient(45deg, #373740 0%, #1c1c1f 100%);
	box-shadow: 0 0 10px 1px black;
	transition: 1s ease;
	}

	header .logo {
	height: 100%;
	animation: hue 1s ease;
	}

	@keyframes hue {
		to {
		filter: hue-rotate(360deg);
		}
	}

	header .nav {
	display: none;
	}
	
	main {
	padding: 0;
	margin: 8vh 0 0 5vw;
	font-size: 14pt;
	}

	.close {
        position: absolute;
        top: 10px;
        right: 20px;
        font-size: 10vh;
        color: white;
        cursor: pointer;
	}

	.mobile.footer {
	padding: 0 0 20px;
	text-align: center;
	font-size: 14pt;
	color: white;
	background: linear-gradient(to top, rgba(255,255,255,.1), black);
	background-color: rgba(255,255,255,.1);
	}

	.mobile.footer .logo {
	padding: 20px;
	width: 40%;
	}

	.mobile.footer h4 {
	text-decoration: underline;
	}

	.mobile.footer a {
	text-align: right;
	color: white;
	text-decoration: none;
	}

	.mobile.footer a:hover {
	color: #c9c9c9;
	}

	.mobile.footer .cr {
	padding: 40px;
	font-size: 12pt;
	font-weight: 0;
	}
}

b {
	font-weight: 900;
}

.modal {
        z-index: 3;
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.8);
        justify-content: center;
        align-items: center;
}

.modal-content {
        position: relative;
        max-width: 90%;
        max-height: 90%;
        box-shadow: 0 0 4px 1px black;
}

.modal p {
        position: absolute;
        bottom: 5px;
        font-size: 8pt;
        margin: auto;
	color: white;
}

.video {
        width: 300px;
        height: 200px;
        display: flex;
        align-items: center;
        justify-content: center;
        background-size: cover;
        background-position: center;
        cursor: pointer;
        color: white;
        font-size: 20px;
        text-align: center;
}

