@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed&display=swap');

html {
	font-family: 'Roboto Condensed', sans-serif;
	margin: 0;
	padding: 0;
}

body {
	margin: 0;
	padding: 0;
}

a:link {
	text-decoration: none;
	color: inherit;
}

a:visited {
	color: inherit;
}

a:link:active {
	text-decoration: none;
	color: inherit;
}

a:visted:active {
	color: inherit;
}

h1 {
	text-align: center;
	font-size: 45px;
	margin: 0;
}

.center {
	width: 100%;
	text-align: center;
}

.header {
	font-size: 23px;
	font-weight: bold;
	color: orangered;
}

.blur {
	backdrop-filter: blur(5px);
}

.blink {
	animation: blinker 1s step-start infinite;
}

@keyframes blinker {
	50% {
		opacity: 0;
	}
}

.link {
	font-weight: bold;
	float: left;
	padding: 0px 15px;
}

.mobile-link {
	padding-left: 20px;
	padding-top: 5px;
	padding-bottom: 5px;	
	font-size: 35px;
}

.mobile-link:hover {
	background-color: #c500db;
}

.fullWidthPhoto {
	width: 100%;
}

.reg-width {
	margin: 0 auto;
	max-width: 1100px;
	width: 100%;
}

#book-a-room {
	color: rgb(237, 40, 0);
	text-decoration: bold;
}

#mobile-header {
	width: 100%;
	padding-top: 15px;
	padding-bottom: 10px;
	overflow: hidden;
}

#mobile-logo-wrapper {
	width: calc(100% - 100px);
	float: left;
}

#mobile-logo {
	padding-left: 20px;
	height: 80px;
}

#hamburger-menu-wrapper {
	float: left;
	width: 100px;
	height: 84px;
	display: flex;
}

#hamburger-menu {
	margin: auto auto;
	border-radius: 10px;
	padding: 10px;
	border: 2px solid black;
}

#content-wrapper {
	width: 100%;
	color: white;
	background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.2));
	padding: 50px 10px 20px 10px;
}

#content {
	font-size: 20px;
	width: 100%;
	filter: none;
}

#header-wrapper {
	width: 100%;
	box-shadow: 0px 3px 5px black;
	z-index: 1;
	position: relative;
}

#header {
	height: 150px;
	max-width: 1100px;
	width: 100%;
	margin: 0 auto;
	background-color: white;
	display: flex;
}

#content-wrapper-img {
	min-height: calc(100vh - 235px);
	background-image: url(images/overview.jpg);
	background-repeat: no-repeat;
	background-position: center;
	-webkit-background-size: cover;
  	-moz-background-size: cover;
  	-o-background-size: cover;
  	background-size: cover;
	display: flex;
	overflow: hidden;
}

#footer-wrapper {
	box-shadow: 0px 0px 15px black;
	background-color: darkgray;
	width: 100%;
	position: relative;
}

#well-rested-wrapper {
	background-color: #FDBE0F;
	height: 70px;
	display: flex;
}

#well-rested {
	font-family: Arial, Helvetica, sans-serif;
	font-weight: bold;
	color: black;
	text-align: center;
	margin: auto auto;
}

#well-rested-logo {
	height: 50px;
	vertical-align: middle;
}

#trademark {
	font-size: 10px;
}

#logo-wrapper {
	background-color: white;
	display: inline-block;
	margin: auto 0;
	margin-right: 0;
}

#logo {
	height: 100px;
}

#links-wrapper {
	display: inline-block;
	margin: auto 35px;
	margin-right: 0;
}

#links {

}

@media screen and (min-width: 0px) and (max-width: 800px) {
  #mobile-header { display: block; }
  #mobile-logo-wrapper { display: block; }
  #mobile-logo { display: block; }
  #hamburger-menu-wrapper { display: flex; }
  #hamburger-menu { display: block; }
  #links { display: none; }
  #links-wrapper { display: none; }
  #link { display: none; }
  #logo-wrapper { display: none; }
  #header { display: none; }
  #content-wrapper-img { min-height: calc(100vh - 194px); }
}

@media screen and (min-width: 801px) {
  .mobile-link { display: none; }  /* hide it on larger screen */
  #mobile-links { display: none; }
  #mobile-header { display: none; }
  #mobile-logo-wrapper { display: none; }
  #mobile-logo { display: none; }
  #hamburger-menu-wrapper { display: none; }
  #hamburger-menu { display: none; }
  #links { display: block; }
  #links-wrapper { display: block; }
  #link { display: block; }
  #logo-wrapper { display: block; }
  #header { display: flex; }
  #content-wrapper-img { min-height: calc(100vh - 235px); }
}