/* Header / Navbar */
.navbar-section {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;

    padding: 0 10%;
    flex-shrink: 0;

    color: var(--text-main);
    background-color: var(--surface-base1);
    
}

.navbar-logo {
    width: 220px;
    max-width: 100%;
    height: auto;
}

.navbar-links {
    display: flex;
    list-style: none;
}

.navbar-links li {
    margin-left: 10px;
}

.navbar-links a {
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;

    color: var(--text-main);
    transition: color 0.2s;
}

.navbar-links a:hover {
    text-decoration: underline;
    color: var(--text-hint-main-muted);
}

/* Portrait Mode */
@media (max-width: 900px) {
    .navbar-section {
        flex-direction: column;
        padding: 20px 5%;
    }
    
    .navbar-logo {
        width: 480px;
        margin-bottom: 15px;
    }

    .navbar-links li {
        margin: 0 8px;
    }

}
