@font-face {
	font-family: "Space Bd Bt";
	src: url("Images/Fonts/Space_Bd_BT_Bold.ttf") format("truetype");
	font-weight: 700;
	font-style: normal;
	font-display: swap;
}

@font-face {
	font-family: "Space Bd Bt";
	src: url("Images/Fonts/Space_Bd_BT_Bold.ttf") format("truetype");
	font-weight: 400;
	font-style: normal;
	font-display: swap;
}

:root {
	/* --ContentBoxBackground: #444; */
	--ContentBoxBackground: rgba(44, 44, 44, 0.85);
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	min-height: 100%;

	background-color: #222;
	/* background-image: URL("Images/metal_seamless_texture_4165.jpg"); */
	/* background-size: 50%; */
	background-image: URL("Images/grunge-texture-background.jpg");
	background-attachment: fixed;
	background-size: cover;
	background-position: top center;
	background-blend-mode: difference;

	font-family: "Space Bd Bt", Arial, Helvetica, sans-serif;
	color: white;

	display: grid;
	grid-template-rows: 0fr 1fr 0fr;
}

/* BEGIN Main Header */

#MainHeader {
	position: relative;
	height: 180px;
}

.MainHeader_Open #MH_Content {
	transform: translateY(0px);
}

#MH_Content {
	position: fixed;
	top: 0;
	z-index: 10;

	width: 100%;
	height: inherit;
	height: 510px;
	transform: translateY(-330px);
	transition: transform ease-in-out 0.2s;

	background-image: URL("Images/BackgroundHeaderTopRepeat.webp");
	background-position-x: center;
	background-position-y: bottom;

	display: flex;
	justify-content: center;

	align-items: end;
	padding-bottom: 25px;
}

#MH_MenuToggle {
	display: none;
	position: absolute;
	bottom: 100px;
	left: 10px;
}

#MH_Nav {
	display: flex;
	justify-content: center;
	align-items: start;
}

.MH_NavItemText {
	text-decoration: none;
	color: inherit;

	width: 170px;

	background-color: #444;

	padding: 10px;
	margin-top: 30px;
	margin-left: 10px;
	margin-right: 10px;
	margin-bottom: 75px;

	text-align: center;
	text-transform: uppercase;
	letter-spacing: 2px;
	white-space: nowrap;

	border: 2px solid transparent;
}

.MH_NavItemText_Selected {
	border-bottom-color: aqua;
}

.MH_NavItemSpace {
	padding-left: 20px;
	padding-right: 20px;
	width: 242px;
}

.MH_NavItemLogo {
	position: absolute;
	left: 50%;
	right: 50%;
	transform: translate(-50%);
	width: 242px;
}

.MH_Logo {
	height: 150px;
}

.MH_Burger {
	width: 35px;
	height: 30px;
	margin: 10px 10px;
	position: relative;
	cursor: pointer;
	display: inline-block;
}
.MH_Burger span {
	background-color: #fff;
	position: absolute;
	border-radius: 2px;
	transition: 0.3s cubic-bezier(0.8, 0.5, 0.2, 1.4);
	width: 100%;
	height: 4px;
	transition-duration: 500ms;
}
.MH_Burger span:nth-child(1) {
	top: 0px;
	left: 0px;
}
.MH_Burger span:nth-child(2) {
	top: 13px;
	left: 0px;
	opacity: 1;
}
.MH_Burger span:nth-child(3) {
	bottom: 0px;
	left: 0px;
}
.MH_Burger:not(.MH_Burger_Open):hover span:nth-child(1) {
	transform: rotate(-3deg) scaleY(1.1);
}
.MH_Burger:not(.MH_Burger_Open):hover span:nth-child(2) {
	transform: rotate(3deg) scaleY(1.1);
}
.MH_Burger:not(.MH_Burger_Open):hover span:nth-child(3) {
	transform: rotate(-4deg) scaleY(1.1);
}
.MH_Burger.MH_Burger_Open span:nth-child(1) {
	transform: rotate(45deg);
	top: 13px;
}
.MH_Burger.MH_Burger_Open span:nth-child(2) {
	opacity: 0;
}
.MH_Burger.MH_Burger_Open span:nth-child(3) {
	transform: rotate(-45deg);
	top: 13px;
}

/* END Main Header */

/* BEGIN Main Footer */

#MainFooter {
	width: 100%;
    min-width: 350px;
	height: 150px;
}

#MainFooter::before {
	z-index: -1;
	content: "";
	position: absolute;
	width: 100%;
	height: inherit;
	background-image: URL("Images/BackgroundHeaderRepeat.webp");
	background-position-x: center;
	background-position-y: bottom;
	transform: rotateZ(180deg);
}

#MF_Items {
	padding-top: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
}

.MF_NavItem {
	text-decoration: none;
	color: inherit;

	font-size: 16px;

	width: 150px;

	padding: 5px;
	margin-top: 10px;
	margin-left: 10px;
	margin-right: 10px;

	text-align: center;
	text-transform: uppercase;
	white-space: nowrap;

	background-color: #444;
}

/* END Main Footer */

/* BEGIN Inputs */

.Button_Book {
	text-decoration: none;
	color: inherit;

	background-color: #238636;
	border-radius: 0.375rem;
	cursor: pointer;

	padding: 5px;
	padding-left: 20px;
	padding-right: 20px;

	font-size: 20px;

	text-align: center;
	white-space: nowrap;
}

.Button_Book:hover {
	background-color: #29903b;
}

/* END Inputs */

@media screen and (max-width: 1430px) {
	#MH_MenuToggle {
		display: unset;
	}

	#MH_Content {
		flex-direction: column;
		align-items: center;
	}

	#MH_Nav {
		flex-direction: column;
	}

	.MH_NavItemText {
		margin-bottom: 0px;
		margin-top: 10px;
	}

	.MH_NavItemSpace {
		width: 0px;
	}

	.MH_NavItemLogo {
		position: unset;
		transform: unset;
	}
}
