:root {
	--accent-color:#ff7200;
	--bgbrown:#393232;
}

body {
	margin: 0;
	padding: 0;
	font-family: "Raleway", sans-serif;
	font-weight: 300;
	letter-spacing: 0.05em;
}

h1, h2, h3, h4, h5, h6 {
	font-family: "Raleway", sans-serif;
	font-weight: 500;
	letter-spacing: 0.05em;
	color:var(--accent-color);
}
h1 {font-size: 2em;}
h2 {font-size: 1.75em;}
h3 {font-size: 1.5em;}
h4 {font-size: 1.25em;}
h5 {font-size: 1.125em;}
h6 {font-size: 1em;}

a {text-decoration:none;}
a:focus-visible {
}

header {
	width: 100vw;
}
.subheader-text {
	font-weight:500;
	margin-top:-1.5em;
	margin-bottom:1.5em;
}

.banner > * {
	z-index:2;
}
.banner-background {
	z-index:0;
}
#banner-blur-cover {
	position:absolute;
	bottom:-45px;
	width:100%;
	height:45px;
	background-color:#fff;
	z-index:1;
}


nav {
	position:fixed;
	top:0; left:0;
	width:100vw; height:60px;
	display:flex;
	flex-direction:row;
	z-index:99;
	background-color:rgba(0,0,0,0.33);
	backdrop-filter: blur(10px);
	margin-bottom: 60px;
}
nav ul {
	position:relative;
	left:0; top:0;
	width:auto; height:60px;
	list-style-type:none;
	padding:0; 
	display:flex;
	flex-direction:row;
	align-items:center;
	justify-content:center;
	max-width:800px;
	margin: 0 auto;
	transition:0.3s ease-in-out;

    padding-left:33%;
    width:66%;
}
nav li {
	position:relative;
	padding-left: 3em;
	padding-right: 3em;
	font-size:1em;
	font-weight:400;
	color:#fff;
	cursor:pointer;
}
nav li a {
	text-decoration: none;
	color: white;
	font-family:"Voltaire", sans-serif;
	text-transform:uppercase;
	font-size:18pt;
}

.skip-link {
	position: absolute;
	left: -9999px;
	top: 10px;
	background: #fff;
	color: #000;
	padding: 8px 12px;
	border-radius: 4px;
	z-index: 1000;
}

.skip-link:focus {
	left: 10px;
}

#navbar-logo {
	position:absolute;
	width:auto;
	height:60px;
	background-color:var(--bgbrown);
	top:10px;
	margin-left:15px;
	padding:5px;
	border-radius:5px;
	cursor:pointer;
	z-index:2;
}

#nav-button {
	display: none;
	justify-content: center;
	align-items: center;
	font-size: 24px;
	color: #fff;
	position: absolute;
	right: 10px;
	width: 60px; height: 60px;
	cursor: pointer;
	background:none;
	border:none;
}

#mobile-menu {
	position: fixed;
	right: 0;
	top: 60px;
	background-color: #555;
	color: white;
	width: 66.6vw;
	height: calc(100vh - 60px);
	z-index: 98;
	transform: translateX(100vw);
	transition: 0.25s ease-in-out;
}
#mobile-menu ul {
	list-style-type:none;
	font-family: "Voltaire", sans-serif;
	font-size:2em;
	line-height:1.5em;
	margin:45px;
	text-align:right;
}
#mobile-menu ul li a {
	color:#fff;
	text-decoration:none;
}

body.mobile-menu-open #mobile-menu {
	transform: translateX(0);
}

@media(max-width:1000px) {
	#navbar-logo {
		display: none;
	}
	nav > ul {
		width: 100% !important;
		padding-left: 0 !important;
	}
}

@media(max-width:767px){
	nav > ul {
		display: none;
	}
	#nav-button {
		display: flex;
	}
	#nav-button:focus-visible {
		outline: 3px solid #fff;
		outline-offset: 3px;
	}
	#navbar-logo {
		display:block;
	}
}
.banner {
	position: relative;
	height:400px;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	background-color: gray;
}
.banner > * {
	flex:1;
}
.banner-background {
	position:absolute;
	left: 0;
	top: 0;
	object-fit:cover;
	width: 100%;
	height: 100%;
	z-index: 0;
	filter: blur(10px) brightness(75%);
}
#title-overlay h1, .title-overlay h1 {
	position: relative;
	text-align: center;
	color: #fff;
	text-shadow:0 7.5px 5px rgba(0,0,0,0.2);
	font-family:"Voltaire", sans-serif;
	font-size:32pt;
	text-transform:uppercase;
}

main {
  min-height: 500px;
  margin-top: 30px;
}

section {
	padding:4em 2.5em;
}
	  
#footer {
	position:relative;
	z-index:4;
	background-image:linear-gradient(#555, #222);
	width:100vw;
	color:#ddd;
	display:flex;
	flex-direction:column;
	align-items:center;
	justify-content:center;
	text-align:center;
	padding:3em 0 5em 0;
	overflow:hidden;
}
#footer a {
	display:inline-block;
	color:#ddd;
	text-decoration:none;
	transition:0.2s ease-in-out;
}
#footer a:hover,
#footer a:focus-visible {
	color:#fff;
	text-shadow:0 0 5px rgba(255,255,255,0.5);
	text-decoration: underline;
	text-decoration-thickness: 1px;
	text-underline-offset: 10px;
	transform:scale(1.05);
}
#footer-logo {
	width:200px;
	margin:2em;
	mix-blend-mode:screen;
}
#footer-bglogo {
    position: absolute;
    z-index: 0;
    width: 130vw;
    opacity: 0.1;
    mix-blend-mode: luminosity;
    top: -18%;
    left: -32%;
	pointer-events:none;
}

.modal-backdrop {
	background-color:#000;
	backdrop-filter:blur(10px);
}
.modal-backdrop.show {
	opacity:0.66;
}
