
/**
 *	@content:	header
 *	@project:	massagepoint.cz
 *	@author:	davidledl.com
 */

header {
	font-family: "JohnSansCondText", "Arial Narrow", Arial, sans-serif;
	font-size: 13.5pt;
	width: 100%;
	height: 80px;
	background-color: #9e153b;
	color: #fff;
	position: fixed;
	z-index: 1000;
}
header:after {
	content: '';
	display: block;
	position: relative;
	bottom: 0;
	margin: 0;
	padding: 0;
	height: 3px;
	border: none;
	border-bottom: 2px solid #9e153b;
}

header a {
	display: block;
	text-decoration: none;
}

header nav {
	float: left;
	position: relative;
	z-index: 1001;
	height: 80px;

}
.menu {
	list-style: none;
	height: 80px;
	margin: 0;
	text-align: center;
}

.menu li {
	width: 180px;
	margin: 0 -10px;
}
.menu a {
	color: #fff;
	margin: 0 5px;
	border-radius: 5px;
	transition: 300ms;
}

.menu > li {
	float: left;
	height: 35px;
	margin-top: 45px;
	padding-top: 5px;
	border-radius: 10px 10px 0 0;
	transition: 300ms;
	box-shadow: 0 0 0 #9e153b inset;
}
.menu > li:hover {
	position: relative;
	z-index: 1050;
	box-shadow: 0 -45px 0 #76102c inset;
}
.menu > li > a {
	height: 30px;
	line-height: 30px;
}
.menu > li:hover > a:after {
	content: '';
	position: relative;
	z-index: 1050;
	display: block;
	margin-top: 3px;
	height: 2px;
	background-color: #9e153b;
}
.menu a:hover {
	background-color: #9e153b;
}
.menu li.logo {
	height: 85px;
	margin-top: 0;
	padding-top: 0;
	border-radius: 0;
}
.menu li.logo > a {
	padding-top: 50px;
	background-image: url('../img/logo.png');
	background-position: 50% 10px;
	background-repeat: no-repeat;
	border-radius: 0 0 5px 5px;
}
.menu li.logo:hover {
	box-shadow: 0 -90px 0 #76102c inset;
}
.menu li.logo > a {
	font-weight: bold;
}

.submenu {
	position: absolute;
	list-style: none;
	background-color: #76102c;
	width: 180px;
	margin: 3px 0 0;
	padding: 0 10px;
	border-radius: 0 0 10px 10px;
	overflow: hidden;
	font-size: 11.5pt;
	line-height: 20px;
	transition: 300ms;
	opacity: 0;
	height: 0;
	padding: 0;

}
.submenu li {
	width: 180px;
	margin: 0;
}
header li:hover ul.submenu {
	opacity: 1;
	height: auto;
	padding: 5px 0;
}
.submenu a {
	padding: 5px 10px;
	color: #fff;
}


.social {
	float: right;
	height: 80px;
	margin-right: 20px;
}
.social a {
	float: right;
	font-family: "JohnSansText", Arial, sans-serif;
	font-weight: bold;
	color: #9e153b;
	text-align: center;
	width: 30px;
	height: 30px;
	margin: 20px 0 0 10px;
	line-height: 28px;
	border-radius: 50%;
	transition: 300ms;
	opacity: 0.5;
}
.social .ico-facebook { background: transparent url('../img/ico-facebook.png') 0 0 no-repeat; }
.social .ico-twitter { background: transparent url('../img/ico-twitter.png') 0 0 no-repeat; }

.social a:hover {
	opacity: 1;
}
