﻿
header {
	width: 100%;
}

.header-logo {
	width: 100%;
	height: 100px;
	background: #292929;
}

.header-logo-container {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 90%;
	max-width: 1440px;
	margin: 0 auto;
	height: 100%;
}

.image_left,
.image_center,
.image_right {
	max-height: 80px;
}

.header-menu {
	width: 100%;
	height: 50px;
	background: #70e906;
	transition: all 0.3s ease;
}

.header-menu-logo{
	display: none;
}

/* FIXED verzia */
.header-menu.fixed {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 999;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.header-nav {
	width: 90%;
	height: 50px;
	max-width: 1440px;
	justify-content: center;
	align-items: center;
	display: flex;
	margin: 0 auto;
}

.header-nav a{
	text-decoration: none;
	font-size: 0.9em;
	font-weight: 500;
	font-family: "Saira", sans-serif;
	text-transform: uppercase;
	color: #292929;
	padding-left: 30px;
	padding-right: 30px;
}

.header-nav a:hover{
	color: #ffffff;
}

.header-line{
	display: none;
}

.header-hamburger {
	display: none;
}

@media screen and (max-width: 900px), {
    .image_left,
	.image_center,
	.image_right {
		max-height: 60px;
	}

	.header-nav a{
		padding-left: 21px;
		padding-right: 21px;
	}
}

@media screen and (max-width: 500px), {
	.image_left,
	.image_center,
	.image_right {
		max-height: 45px;
	}


	
	.header-nav {
		display: none;
		flex-direction: column;
		position: absolute;
		top: 150px;
		right: 0;
		background-color: #292929;
		width: 100%;
		min-height: 50vh;
		border-top: 1px solid #292929;
		z-index: 10000;
		box-shadow: 0 4px 6px rgba(38, 38, 38, 0.3);
	}

	.header-nav a{
		color: white;
		font-size: 1em;
		padding-top: 20px;
		padding-bottom: 20px;
	}

	.header-line{
		display: flex;
		width: 200px;
		height: 1px;
		background: #70e906;
	}

	.header-nav.show {
		display: flex;
	}
	
	.header-hamburger {
		height: 100%;
		display: flex;
		font-size: 35px;
		cursor: pointer;
		float: right;
		justify-content: center;
		align-items: center;
	}

	.header-hamburger a {
		color: #292929;		
		padding-left: 40px;
		padding-right: 40px;
	}

	/* FIXED verzia */
	.header-menu.fixed .header-menu-logo {
		display: flex;
		height: 30px;
		float: left;
		padding-top: 10px;
		padding-left: 30px;
	}
	
}
