@import url('https://fonts.googleapis.com/css?family=Ubuntu:400,400i,700&display=swap');

html, body{
	margin: 0;
	padding: 0;
	background: #232323;
	color: white;
	font-family: 'Ubuntu', sans-serif;
}

html{
	background: black;
}

.content-wrapper{
	max-width: 1200px;
	margin: 0 auto;
	position: relative;
	padding: 0 44px;
	box-sizing: border-box;
}

header{
	position: relative;
	z-index: 100;
}

article{
	height: calc( 100vh - 300px );
	position: relative;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
}

article::before{
	content: '';
	position: absolute;
	width: 100%;
	height: 100%;
	background: transparent url('MyReynoldsTVMediaWall-blur.jpg') no-repeat 50% 50%;
	background-size: cover;
	top: 0;
	left: 0;
	opacity: .5;
}

article h1,
article h2,
article p{
	text-shadow: 0px 0px 10px black,
							 0px 0px 10px black,
							 0px 0px 20px black;
	position: relative;
	z-index: 10;
}

article h1{
	font-size: 64px;
	margin: 0;
}

article h2{
	font-size: 44px;
	margin: 0;
}

article p{
	font-size: 24px;
	margin: 0;
	margin-top: 1em;
}

footer{
	background: black;
	height: 300px;
	padding: 44px 24px;
}

footer .content-wrapper{
	display: flex;
	justify-content: space-between;
}

footer ul{
	margin: 0;
	padding: 0;
}

footer ul li{
	list-style: none;
	padding: .25em 0;
}

footer ul li a{
	text-decoration: none;
	color: white;
	opacity: .9;
}

footer ul.social-media{
	margin: 0 44px;
}

footer ul.social-media li a{
	text-indent: 110%;
	overflow: hidden;
	white-space: nowrap;
	display: block;
	width: 32px;
	height: 32px;
	background-color: transparent;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	background-size: contain;
	opacity: .5;
	transition: opacity .5s linear;
	line-height: 1.5em;
	opacity: .8;
}

footer ul.social-media li a:hover{
	opacity: .85;
}

footer ul.social-media li.facebook a{
	background-image: url(/images/facebook.svg);
}

footer ul.social-media li.instagram a{
	background-image: url(/images/instagram.svg);
}

footer ul.social-media li.youtube a{
	background-image: url(/images/youtube.svg);
}

footer ul.social-media li.twitter a{
	background-image: url(/images/twitter.svg);
}

.legal{
	width: 50%;
	font-size: 12px;
	line-height: 1.4em;
	opacity: .85;
}

.logo{
  width: 200px;
  height: 120px;
  background: transparent url(/images/high-hampton-logo.png) no-repeat 100% 100%;
  background-size: contain;
  position: absolute;
  top: 0;
  left: 44px;
  z-index: 10;
  opacity: .9;
  
  overflow: hidden;
  text-indent: 110%;
  white-space: nowrap;
}

.already-member{
	position: absolute;
	right: 44px;
	top: 25px;
}

.already-member a{
	text-decoration: none;
	color: white;
	opacity: .9;
}


#guest-access{
	background: rgba(0,0,0,.5);
	padding: 1em 3em 3em 3em;
	margin: 1em;
	border-radius: 5px;
	display: inline-block;
	
	position: relative;
	z-index: 10;
}

#guest-access p{
	margin-bottom: 1em;
}

#guest-access input,
#guest-access button{
	font-size: 16pt;
	padding: .5em;
	-webkit-appearance: none;
	border-radius: 3px;
	border: none;
}

@media screen and (max-width: 700px){
	
	.logo{
		left: 25px;
	}
	
	article h1{
		margin-top: -200px;
	}
	
	footer .content-wrapper{
		flex-wrap: wrap;
		padding: 0;
	}
	
	footer .content-wrapper ul{
		width: auto;
	}
	
	footer .content-wrapper ul.social-media{
		margin: 0;
		display: flex;
		width: 100%;
		margin-top: 44px;
	}
	
	footer .content-wrapper ul.social-media li{
		margin-right: 15px;
	}
	
	footer .content-wrapper .legal{
		width: 100%;
		margin-top: 44px;
		padding-bottom: 44px;
	}

}

@media only screen and (max-width: 700px){
	
	article h1{
		font-size: 32px;
	}
	
	article h2{
		font-size: 24px;
	}
	
	article p{
		font-size: 18px;
	}
	
	article h1{
		margin-top: 150px;
	}
	
	#guest-access{
		padding: .5em;
		background: rgba(0,0,0,.85);
	}

	#guest-access p{
		margin-bottom: 1em;
	}
	
	#guest-access input{
		width: 200px;
	}
	
	#guest-access button{
		background-color: #ececec;
		width: 100px;
	}
	
	
}