header {
    width: 100%;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    text-transform: none;
    height: inherit;
    display: flex;
    align-items: center;
    cursor: pointer;
}

.logo a {
    text-decoration: none;
    color: white;
}

.logo h1 {
    font-size: 28px;
}

.menu {
    display: flex;
    flex-direction: row;
    gap: 65px;
    height: inherit;
    display: flex;
    align-items: center;
}

.navigation {
    width: 100%;
    height: inherit;
}

.navigation ul {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 65px;
    height: inherit;
}

.navigation ul li {
    list-style: none;
}

.navigation ul li a {
    text-decoration: none;
    color: white;
    font-size: 14px;
}

.language-switcher {
    display: flex;
    height: inherit;
    align-items: center;
    cursor: pointer;
    position: relative;
    gap: 5px;
}

.language-switcher .language-code {
    text-decoration: underline;
    font-size: 14px;
}

.language-dropdown {
    position: absolute;
    top: 60%;
    display: flex;
    right: -3px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 0, 0, 0.9);
    list-style: none;
    margin-top: 5px;
    padding: 5px 0;
    border-radius: 8px;
    min-width: 60px;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.language-dropdown li {
    padding: 8px 0px;
    width: 100%;
    cursor: pointer;
    font-size: 14px;
    text-align: center;
    color: white;
    transition: background 0.2s ease;
}

.language-dropdown li:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hidden {
    display: none;
}

.navigation ul li a.active-link {
    text-decoration: underline;
}