.header {
	width: 100%;
	height: 60px;
	background: rgba(255,255,255,0.9);
}
.header-wrapper {
	padding-top: 80px;
	width: 100%;
	height: 300px;
	background: url(http://vanillacatering.lv/wp-content/uploads/2014/03/ga%C4%BCa3.jpg) no-repeat center center fixed; 
	-webkit-background-size: cover;
	-moz-background-size: cover;
	-o-background-size: cover;
	background-size: cover;

	box-shadow: 0 0 10px rgba(0,0,0,0.1);
}
.header nav {
	float: right;
	right: 50%;
	position: relative;
}

.header ul {
    float: right;
    right: -50%;
    position: relative;


	margin: 0 auto;
	padding: 0;
	list-style: none;
	font: 400 17px/60px 'Dosis', sans-serif;
}

.header li {
	float: left;
	width: 125px;
	height: 60px;
	text-align: center;
}
.header a {
	display: block;
	color: #000;
	width: 100%;
	height: 100%;

	transition: color .25s ease-in-out;
	-moz-transition: color .25s ease-in-out;
	-webkit-transition: color .25s ease-in-out;

	transition: background .5s ease-in-out;
	-moz-transition: background .5s ease-in-out;
	-webkit-transition: background .5s ease-in-out;

	font-weight: 500;
}
.header a:hover {
	background: #000;
	color: #fff;
}
.header li.active a {
	background: #D3D3D3;
	color: #000;
}

.header li.gallery {
	width: 80px;
}
.header li.special {
	width: 150px;
}
.header li.order {
	width: 145px;
}


.header ul.dropdown {
	width: 1080px;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
    position: absolute;
    float: none;
    left: 50%;
    margin-left: -540px;
    background: rgba(0,0,0,0.9);

	transition: opacity .25s ease-in-out;
	-moz-transition: opacity .25s ease-in-out;
	-webkit-transition: opacity .25s ease-in-out
}
.header ul.dropdown li {
	float: left;
	width: 135px;
	height: 50px;
	line-height: 50px;
}
.header ul.dropdown a {
	color: #fff;
}

.header li:hover ul.dropdown {
	visibility: visible;
	opacity: 1;
}

.header li.logo {
	width: 175px;
	height: 175px;
	background: url(../images/logo.jpg) no-repeat center #fff;
	box-shadow: 0 0 10px rgba(255,255,255,0.3);
	border-radius: 175px;
	margin: -70px 20px 0;
}

.header.frontpage {
	position: absolute;
	top: 50%;
	margin-top: -30px;
}