.navbar {
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    z-index: 40;
}

.nav-container {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    max-width: 1440px;
    margin: 0 auto;
}

/* Header */
.nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 0.5rem;
}

/* Logo */
.logo img {
    height: 48px;
    object-fit: contain;
}

/* Toggle button (hamburger) */
.menu-toggle {
    display: block;
    background: none;
    border: none;
    padding: 0;
}

/* Navigation menu (mobile) */
.nav-menu {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
    padding: 1rem 0;
}

.nav-open {
    display: flex;
}

.nav-closed {
    display: none;
}

/* Menu items */
.menu-item {
    font-size: 1rem;
    color: #444;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    transition: color 0.3s ease;
}

.menu-item:hover {
    /*color: #0093ff;*/
}

/* Desktop styles */
@media (min-width: 1050px) {
    .nav-container {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        max-width: 80rem;
    }

    .menu-toggle {
        display: none;
    }

    .nav-menu {
        display: flex !important;
        flex-direction: row;
        justify-content: flex-end;
        gap: 1.5rem;
        padding: 0;
    }
}
