@charset 'UTS-8';

/* ****************************************************************************** Header ****************************************************************************** */

header {
	width: 100%;
	top: 0;
	left: 0;
	padding: 0em;
	position: fixed;
	background-color: hsla(0,0%,0%,0.75);
	z-index: 100;
}

.header-logo {
	position: absolute;
	left: 0;
	top: 0;
	height: 100%;
}

.header-nav {
	position: relative;
	float: right;
	top: 0;
	left: 0;
	width: 80%;
	padding: 1.2em 1.2em;
	background: none;
}

.header-nav ul {
	list-stlye-type: none;
	margin: 0;
	text-align: right;
}

.header-nav ul li {
	display: inline-block;
	margin-bottom: 0;
	margin-left: 1.5em;
}

.header-nav ul li a {
	font-size: 1em;
	line-height: 1em;
	font-family: arial;
	text-decoration: none;
	letter-spacing: .15em;
	text-transform: uppercase;
	color: white;
}

.header-nav ul li a current {
	font-weight: bold;
	font-size: 1.2em;
	color: #E12001;
	text-shadow: 3px 3px 3px #000000;
}

/* ****************************************************************************** Footer ****************************************************************************** */

footer {
	bottom: 0;
	width: 100%;
	background-color: hsla(16,100%,50%,0.9);
	position: fixed;
	z-index: 101;
}

.footer-social {
	position: absolute;
	padding: 0;
	height: 100%;
}

.facebook-placeholder {
	position: fixed;
	z-index: 101;
	bottom: 0;
    width: 3em;
    height: 3em;
	margin: 0.5em;
    border-radius: 50%;
	border: 0.1em solid hsla(0,0%,0%,0.00);
	overflow: hidden;
	background: none;
}

.facebook-placeholder:hover ~ #facebook-background {
	background: hsla(20,100%,80%,1);
	color: hsla(20,100%,80%,1);
	border: 0.2em solid black;
}

.facebook-placeholder:hover ~ #facebook-logo:before {
	border: 0.4em solid black;
	background: none;
}

.facebook-placeholder:hover ~ #facebook-logo:after {
	background: black;
}

.facebook-background {
	background: hsla(20,100%,60%,1);
	position: fixed;
	color: hsla(20,100%,60%,1);
	text-align: center;
	bottom: 0;
    width: 2.8em;
    height: 2.8em;
	margin: 0.5em;
    border-radius: 50%;						/* make the corners of a box round */
	border: 0.2em solid white;				/* make the remaining visible border white and thick enough to look right */
	overflow: hidden; 						/* so we can hide any overflow those elements will have */
}

.facebook-logo {
	position: fixed;
	bottom: 0.7em;
	left: 1.85em;
	overflow: hidden; 						/* so we can hide any overflow those elements will have */
    width: 1.1em;
    height: 2.1em;
	background: none;
}

.facebook-logo:before {
	content: "\20"; 						/* Psuedo elements need something for content, this means a blank space */
	position: absolute; 					/* So we can position it exactly where we want it */
	background: none; 						/* make the box the same Facebook blue */
	width: 1.5em; 							/* setup the right width, which actually extends the box outside of the containing element (along with our positioning below) */
	height: 3em; 							/* this also extends the trunk outside of the main box */
	left: 0.28em; 							/* similar to what we're doing with bottom above */
	border: 0.4em solid white; 				/* make the remaining visible border white and thick enough to look right */
	border-radius: 0.5em; 					/* now give the top right visible corner the necessary curve */
}

.facebook-logo:after {
	content: "\20"; 						/* again, pseudo elements need content to be visible */
	position: absolute;  					/* and we're going to want to position absolutely */
	width: 0.95em;  							/* the desired width of the box to make the bar long enough */
	top: 0.8em;  							/* set it in the proper location */
	height: 0.4em;  							/* make it thick enough */
	background: white;  					/* and the right color */
}

.footer-legal {
	position: relative;
	float: right;
	top: 0;
	left: 0;
	width: 80%;
	padding: 1.5em;
	background: none;
	text-align: right;
	color: antiquewhite;
}