@charset "UTF-8";
/* CSS Document */

#header {
	position:fixed;
	display:block;
	width: 100%;
	z-index:9;
	top:0px;
}
.hslogo {width:100px;
	position:absolute;
	margin:0px auto;
	left:0;
	right:0;
	z-index:999;
}

/*NAVIGATION RESET*/
*,
*:after,
*:before {
	margin:0;
	padding:0;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-font-smoothing:antialiased;
	font-smoothing:antialiased;
	text-rendering:optimizeLegibility;
}

/*NAVIGATION STRUCTURE*/
.nav {font-family: 'Stint Ultra Condensed', cursive;
	font-size:24px;
	letter-spacing:1px;
	position:relative;
	display:inline-block;
	width:100%;
	background-color:#7C181E;
	margin-bottom:-4px;
	box-shadow: 0 0 5px #000;
}
.nav-list {}
.nav-item {float:left;
	*display:inline;
	zoom:1;
}
.navr{
	float:right;
}
.nav-item a {
	display:block;
	padding:8px 20px;
	color:#FFF;
	text-decoration:none;
}
.nav-item a:hover {
	background:#5D1209;
	box-shadow: 0 0 5px #000;
}

/* Mobile Navigation */
.nav-mobile {
	display:none; /* Hide from browsers that don't support media queries */
	cursor:pointer;
	position:absolute;
	top:0;
	right:0;
	background:#5D1209 url(../img/pageelements/nav.svg) no-repeat center center;
	box-shadow:0 0 5px #000;
	height:40px;
	width:40px;
	border-radius:5px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
}
	
/*Media Queries*/
@media only screen and (min-width: 320px) and (max-width: 768px) {
.nav-mobile {
	display:block;
}
.nav {
	width:100%;
	padding:40px 0 0;
}
.nav-list {
	display:none;
}
.nav-item {width:100%;
	float:none;
	text-align:center;
	font-size:22px;
	border-top:1px inset #5D1209;
}
.navr{
	float:none;
}
.nav-item a {
	background:#7C181E;
	padding:10px;
}
.nav-active {
	display:block;
}
.nav-mobile-open {	
	border-radius:5px 5px 0 0;
	-webkit-border-radius:5px 5px 0 0;
	-moz-border-radius:5px 5px 0 0;
}
}

/*Sticky Nav
#section0 li#home a, #section1 li#events a, #events li#happenings a, #menu li#food a, #gallery li#photos a, #brewing li#bc a {
	background:#5D1209;
	box-shadow:0 0 5px #000;
}*/