.navbar {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px;
    background: #1e3c72;
    color: white;
    position: relative;
}

.nav-left {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    object-fit: cover;
    background: white;
}

.nav-right {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 10px;
}

.navbar a {
    color: white;
    margin: 5px 10px;
    text-decoration: none;
}

/* Desktop */
@media (min-width: 768px) {
    .navbar {
        flex-direction: row;
        justify-content: space-between;
    }

    .nav-right {
        margin-top: 0;
    }
}

/* Language Switch */
.lang-switch {
    position: absolute;
    top: 10px;
    right: 20px;
}