
/* =======================
   Sticky Header
======================= */

.site-header {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	z-index: 1000;
}

/* Desktop-Höhe:
   Topbar 95px + Nav 48px = 143px
*/

.header-container {
	width: 1200px;
	max-width: 100%;
	margin: 0px auto;
	padding-left: 0px;
	padding-right: 0px;
}

/* =======================
   Topbar Desktop
======================= */

.topbar {
	width: 100%;
	height: 95px;
	background-color: #000000;
}

.topbar-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 95px;
}

.logo {
	display: inline-flex;
	align-items: center;
	flex: 0 0 auto;
}

.logo-image {
	display: block;
	width: 335px;
	height: 36px;
	background: url("../images/logo.png") no-repeat left top;
	background-size: 335px 36px;
}

.topbar-info {
	display: flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1 1 auto;
	gap: 0px;
}

.info-item {
	display: inline-flex;
	align-items: center;
	font-size: 17px;
	font-weight: normal;
	line-height: 1.2;
	white-space: nowrap;
	margin: 0px;
	padding: 0px;
}

.info-item a {
	color: #E3B344;
	text-decoration: none;
	transition: color 0.2s ease;
}

.info-item a:hover,
.info-item a:focus {
	color: #FFFFFF;
}

.topbar-info .info-item:nth-child(1) {
	width: 200px;
}

.topbar-info .info-item:nth-child(2) {
	width: 275px;
}

.topbar-info .info-item:nth-child(3) {
	width: 275px;
}

.info-icon {
	display: inline-block;
	flex: 0 0 auto;
	background-image: url("../images/icons1.png");
	background-repeat: no-repeat;
	margin-right: 12px;
}

.icon-standort {
	width: 30px;
	height: 30px;
	background-position: 4px -4px;
}

.icon-telefon {
	width: 30px;
	height: 30px;
	background-position: 0px -61px;
}

.icon-mail {
	width: 30px;
	height: 30px;
	background-position: 0px -120px;
}

/* =======================
   Navigation Desktop
======================= */

.main-nav {
	width: 100%;
	height: 48px;
	background-color: #E3B344;
}

.nav-list {
	display: flex;
	align-items: center;
	justify-content: space-between;
	list-style: none;
	margin: 0px;
	padding: 0px;
	height: 48px;
}

.nav-list li {
	margin: 0px;
	padding: 0px;
}

.nav-link {
	display: inline-block;
	padding: 10px 0px;
	color: #000000;
	font-size: 16px;
	font-weight: normal;
	line-height: 20px;
	text-transform: uppercase;
	transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link:focus {
	color: #FFFFFF;
}

/* =======================
   Mobile Elemente standardmäßig aus
======================= */

.menu-toggle {
	display: none;
}

.mobile-quicklinks {
	display: none;
}

/* =======================
   Tablet
======================= */

@media only screen and (min-width: 1024px) and (max-width: 1199px) {

	.header-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.topbar-info {
		gap: 24px;
	}

	.topbar-info .info-item:nth-child(1),
	.topbar-info .info-item:nth-child(2),
	.topbar-info .info-item:nth-child(3) {
		width: auto;
	}

	.info-item {
		font-size: 15px;
	}

	.logo-image {
		width: 300px;
		height: 32px;
		background-size: 300px 32px;
	}

	.nav-link {
		font-size: 15px;
	}
}

/* =======================
   Mobile
======================= */

@media only screen and (max-width: 1023px) {

	.site-header {
		position: fixed;
	}

	/* Mobile-Höhe:
	   schwarze Leiste 84px + goldene Quicklinks 48px = 132px
	   Hauptnavigation klappt darunter zusätzlich auf
	*/
	.page-content {
		padding-top: 132px;
	}

	.header-container {
		padding-left: 20px;
		padding-right: 20px;
	}

	.topbar {
		height: 84px;
	}

	.topbar-inner {
		height: 84px;
	}

	.logo-image {
		width: 255px;
		height: 28px;
		background-size: 255px 28px;
	}

	.topbar-info {
		display: none;
	}

	.menu-toggle {
		display: inline-flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 46px;
		height: 36px;
		padding: 0px;
		border: 0px;
		background: transparent;
		cursor: pointer;
	}

	.menu-toggle span {
		display: block;
		width: 40px;
		height: 4px;
		margin: 0px 0px 6px 0px;
		background: #FFFFFF;
		transition: transform 0.25s ease, opacity 0.25s ease;
	}

	.menu-toggle span:last-child {
		margin-bottom: 0px;
	}

	.mobile-quicklinks {
		display: block;
		width: 100%;
		height: 48px;
		background-color: #E3B344;
	}

	.mobile-quicklinks-inner {
		display: flex;
		align-items: center;
		justify-content: space-between;
		height: 48px;
	}

	.quicklink {
		display: inline-flex;
		align-items: center;
		justify-content: center;
		flex: 1 1 33.333%;
		min-width: 0;
		color: #000000;
		font-size: 14px;
		line-height: 1.2;
		white-space: nowrap;
	}

	.quicklink .info-icon {
		margin-right: 10px;
	}
	
	
	.info-icon {
		background-image: url("../images/icons2.png");
	}
	
	.icon-standort {
		background-position: 4px -120px;
	}

	.icon-telefon {
		background-position: 0px -4px;
	}

	.icon-mail {
		background-position: 0px -65px;
	}

	.main-nav {
		display: none;
		height: auto;
		background-color: transparent;
	}

	.site-header.is-open .main-nav {
		display: block;
	}

	.nav-list {
		display: block;
		height: auto;
	}

	.nav-list li {
		display: block;
		border-top: 1px solid #000000;
		text-align: center;
		background-color: #DDDDDD;
	}

	.nav-list li:first-child {
		border-top: 0px;
	}

	.nav-link {
		display: block;
		padding: 15px 20px;
		font-size: 16px;
		line-height: 1.3;
		color: #000000;
	}
	
	.nav-link:hover,
	.nav-link:focus {
		color: #E3B344;
	}

	.site-header.is-open .menu-toggle span:nth-child(1) {
		transform: translateY(10px) rotate(45deg);
	}

	.site-header.is-open .menu-toggle span:nth-child(2) {
		opacity: 0;
	}

	.site-header.is-open .menu-toggle span:nth-child(3) {
		transform: translateY(-10px) rotate(-45deg);
	}
}

/* =======================
   Kleine Smartphones
======================= */

@media only screen and (max-width: 560px) {

	.header-container {
		padding-left: 16px;
		padding-right: 16px;
	}

	.logo-image {
		width: 235px;
		height: 26px;
		background-size: 235px 26px;
	}

	.quicklink {
		font-size: 13px;
	}

	.quicklink .info-icon {
		margin-right: 8px;
	}
}






