nav {
    width: 100%;
    height: 130px;
   	position: fixed;
	z-index: 1;
}

/* Standard-Navigation */
#navbar {
    background-color: transparent;
    transition: background-color 0.3s, padding 0.3s;
}

/* Navigation beim Scrollen */
#navbar.scrolled {
    background-color: rgba(0, 0, 0, 0.8);
	height: 95px;
	z-index: 999;
}

#navbar.scrolled #nav-box {
    height: 95px;
}

#navbar.scrolled #nav-box > .logo {
	position: relative;
	top: 15px;
}

#navbar.scrolled #navigation > ul {
    top: 15px;
}

#navbar.scrolled #navigation > ul > li > a:hover {
	background-color: rgba(255, 255, 255, 0.1);
}

nav > #nav-box {
    width: calc(100% - 400px);
    height: 130px;
    margin: auto;
}

nav > #nav-box > .logo {
    width: auto;
    height: 65px;
    color: white;
    font-size: 42px;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
    text-align: center;
    line-height: 65px;
    float: left;
    position: relative;
    top: 35px;
}

nav > #nav-box > .logo > a {
    color: white;
    text-decoration: none;
}

#navigation {
	width: auto;
	height: auto;
	float: right;
}

#navigation > ul {
    width: auto;
    height: 40px;
    background-color: rgba(0, 0, 0, 0.4);
	padding: 0px 0px;
    border-radius: 16px;
    float: left;
	list-style: none;
    position: relative;
    top: 35px;
	box-shadow: 0px 0px 4px rgba(0, 0, 0, 0.4);
}

#navigation > ul > li {
	display: inline-block;
	margin: 0px;
}

#navigation > ul > li > a {
	color: #FFFFFF;
	cursor: pointer;
	display: block;
	font-size: 16px;
	padding: 10px 25px;
	text-decoration: none;
	border-radius: 16px;
}

#navigation > ul > li > a:hover {
	background-color: rgba(0, 0, 0, 0.3);
	transition: all 0.5s;
}

#navigation > .special {
    background-color: rgba(202, 0, 0, 0.7);
	margin-left: 10px;
	border-radius: 16px;
	float: right;
}

#navigation > .special > li > a:hover {
	background-color: rgba(0, 0, 0, 0.2);
}

.toggle,
[id^=drop] {
	display: none;
}

#testbox {
	position: relative;
	width: calc(100% - 400px);
    height: 130px;
    margin: auto;
	top: calc(100vh - 330px);
}

/* 1. Verkleinerung */ 
@media all and (max-width: 1380px) {
	nav > #nav-box {
		width: calc(100% - 40px);
	}
}

/* 2. Verkleinerung (Handy Version) */ 
@media all and (max-width: 1020px) {
	nav {
		position: relative;
	}

	#navbar.scrolled {
		background-color: rgba(0, 0, 0, 0.2);
		height: 110px;
		z-index: 999;
	}
	
	#navbar.scrolled #nav-box {
		height: 116px;
	}
	
	#navbar.scrolled #nav-box > .logo {
		position: relative;
		top: 0px;
	}
	
	#navbar.scrolled #navigation > ul {
		top: 0px;
	}

	#navbar.scrolled #navigation > ul > li > a {
		background-color: rgba(0, 0, 0, 0.2);
	}
	
	#navbar.scrolled #navigation > ul > li > a:hover {
		background-color: rgba(0, 0, 0, 0.4);
	}
	
	nav {
		height: auto;
	}

	nav > #nav-box {
		width: 100%;
		height: auto;
	}

	nav > #nav-box > .logo {
		height: 55px;
		display: block;
		float: none;
		margin: auto;
		padding: 0;
		font-size: 28px;
		line-height: 55px;
		top: 0px;
		background-color: rgba(0, 0, 0, 0.6);
	}

	.toggle + a,
	#navigation, #navigation-special {
		display: none;
	}

	.toggle {
		background-color: rgba(0, 0, 0, 0.6);
		border: none;
		color: #FFFFFF;
		cursor: pointer;
		display: block;
		font-size: 21px;
		padding: 14px 20px 14px 20px;
		text-decoration: none;
		text-align: center;
		position: relative;
	}
	
	.toggle:hover {
		background-color: rgba(0, 0, 0, 0.6);
	}
	
	.toggle .icon {
		position: absolute;
		top: 12px;
		left: 10px;
	}

	[id^=drop]:checked + #navigation {
		display: block;
	}

	#navigation {
		width: 100%;
		height: auto;
	}

	#navigation > ul {
		width: 100%;
		height: auto;
		background-color: rgba(0, 0, 0, 0.4);
		padding: 0px 0px;
		border-radius: 0px;
		float: left;
		top: 0px;
		margin: 0;
	}

	#navigation > ul > li {
		display: block;
		margin: 0px;
	}

	#navigation > ul > li > a {
		border-radius: 0px;
		font-size: 21px;
		padding: 15px 30px;
		background: rgba(0, 0, 0, 0.2);
	}

	#navigation > .special {
		background-color: rgba(202, 0, 0, 0.8);
		margin: 0;
		border-radius: 0px;
	}
}