.navbar {
    background-color: #fff;
    color: #333;
    padding: 0px 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.5s;
}

.navbar-placeholder {
    height: 62px;
}

.navbar * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    animation: 1s;
}

.navbar-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.navbar-logo .logo {
    height: 60px;
    display: block;
    padding: 10px 0;
}

.navbar-hamburger {
    display: none;
}

.hamburger-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.hamburger-icon {
    fill: #333;
    width: 24px;
    height: 24px;
}

.navbar-menu {
    display: flex;
    margin-left: 25px;
    gap: 20px;
    height: 60px;
}

.navbar-link {
    color: #444;
    text-decoration: none;
    font-size: large;
    height: 100%;
    display: flex;
    align-items: center;
    padding-top: 2px;
}

.language-switcher {
    display: flex;
    height: 60px;
    align-items: center;
}

.language {
    color: #444;
    font-size: large;
    background: none;
    border: none;
    cursor: pointer;
    margin: 0px;
    cursor: pointer;
    height: 100%;
    width: 30px;
}

.language:hover {
    border-bottom: 3px solid var(--primary-color);
    border-top: 3px solid #ffffff00;
}

.language.active {
    border-bottom: 2px solid var(--primary-color);
    border-top: 2px solid #ffffff00;
}

.navbar-link.active {
    border-bottom: 2px solid var(--primary-color);
    border-top: 2px solid #ffffff00;
}

.navbar-link:hover {
    border-bottom: 3px solid var(--primary-color);
    border-top: 3px solid #ffffff00;
}

.spacer{
    flex: 1;
    flex-grow: 999;
}

.burger-tab {
    display: none;
    background-color: #00000044;
    width: 100%;
    height: 120%;
    position: fixed;
    top: 0;
    left: 0;
}

.burger-quit-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: fixed;
    top: 0px;
    right: 0px;
    height: 100%;
    width: 15%;
}

.burger-menu {
    display: flex;
    flex-direction: column;
    background-color: #fff;
    width: 85%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    align-items: left;
    justify-content: left;
    padding: 0px;
    gap: 10px;
}

.burger-logo .logo {
    height: 60px;
    display: block;
    padding: 15px 20px;
    width: fit-content;
}

.burger-logo {
    border-bottom: 1px solid #00000022;
}

.burger-link {
    flex: 1;
    color: #444;
    text-decoration: none;
    font-size: large;
    width: 90%;
    min-height: 50px;
    padding: 0 25px;
    border-radius: 0 25px 25px 0;
    display: flex;
    align-items: center;
}

.burger-language {
    color: #444;
    font-size: large;
    background: none;
    border: none;
    cursor: pointer;
    cursor: pointer;
    width: min-content;
    min-height: 50px;
    padding: 0 25px 0 0;
    border-radius: 0 25px 25px 0;
}

.burger-link.active {
    background-color: #ddd;
}

@media (max-width: 800px) {
    .navbar {
        background-color: #fff;
        color: #333;
        padding: 0px 10px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .navbar-hamburger {
        display: block;
        height: 40px;
    }

    .navbar-menu {
        display: none;
    }
}

@media (max-width: 400px) {
    .navbar-placeholder {
        height: 60px;
    }

    .navbar-logo .logo {
        height: 50px;
        padding: 8px 0;
        display: block;
    }

    .navbar {
        background-color: #fff;
        color: #333;
        padding: 0px 8px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    }

    .language-switcher {
        font-size: medium;
    }
}

