.hamburger-menu {
    display: block;
    position: fixed;
    top: 20px;
    left: 20px;
    z-index: 1000;
    width: 30px;
    height: 22px;
    cursor: pointer;
}

.hamburger-icon {
    width: 100%;
    height: 100%;
    position: relative;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 4px;
    width: 100%;
    background: var(--text-color);
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2),
.hamburger-icon span:nth-child(3) {
    top: 9px;
}

.hamburger-icon span:nth-child(4) {
    top: 18px;
}

.hamburger-icon.open span:nth-child(1),
.hamburger-icon.open span:nth-child(4) {
    top: 9px;
    width: 0%;
    left: 50%;
}

.hamburger-icon.open span:nth-child(2) {
    transform: rotate(45deg);
}

.hamburger-icon.open span:nth-child(3) {
    transform: rotate(-45deg);
}

.hamburger-icon.light span {
    background: white;
}

.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 999;
}

.menu-overlay.open {
    display: block;
}

.menu-links {
    position: fixed;
    top: 0;
    left: -250px;
    width: 250px;
    height: 100%;
    background: var(--primary-color);
    transition: left 0.3s ease;
    z-index: 1000;
    padding-top: 60px;
}

.menu-links.open {
    left: 0;
}

.menu-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.menu-links ul li a {
    display: block;
    padding: 15px 20px;
    text-decoration: none;
    color: white;
    font-family: var(--font-sans-serif);
} 

.menu-image {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 50%;
}

.language-switcher {
    position: absolute;
    bottom: 150px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.language-switcher button {
    background: none;
    border: 1px solid white;
    color: white;
    padding: 5px 10px;
    cursor: pointer;
    font-family: var(--font-sans-serif);
}

.language-switcher button:hover {
    background: white;
    color: var(--primary-color);
} 