
header {
}

.menu-toggle {
    cursor: pointer;
    width: 25px;
    height: 25px;
    display: flex;
    justify-content: center;
    align-items: center;
	order: 3;
	
}

.hamburger {
    width: 100%;
    height: 3px;
    background-color: #fff;
    position: relative;
    transition: transform 0.4s;
}

.hamburger:before,
.hamburger:after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #fff;
    transition: transform 0.4s;
}

.hamburger:before {
    top: -8px;
}

.hamburger:after {
    bottom: -8px;
}

.nav {
    /*display: none;*/
	display: block; 
    order: 2;
		margin-left: auto; /* Przesuń nav w prawo */
}

.nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav ul li {
    padding: 10px 0;
}

.nav ul li a {
    color: #fff;
    text-decoration: none;
}

/* Dodatkowy styl dla menu po rozwinięciu */
.nav.active {
    display: block;
    position: absolute;
    top: 100%;
    left: -100px;
    background-color: #000000;
}

.nav.active ul li {
    display: block;
}

.header-menu-container {
	position: absolute;
	/*border: 1px solid blue;*/
	margin-left: 20%;
}

