/* Custom styles for enhanced mobile experience */
.navbar-menu.is-active {
    animation: slideDown 0.3s ease-out;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.navbar-burger:hover {
    background-color: rgba(0, 0, 0, 0.05);
    border-radius: 4px;
}

/* Active state for navbar items */
.navbar-item.is-active {
    background-color: #3273dc;
    color: white !important;
    border-radius: 4px;
}

.navbar-item:hover:not(.is-active) {
    background-color: #f5f5f5;
    border-radius: 4px;
}

/* Custom dropdown styles */
.navbar-dropdown {
    border-top: 2px solid #3273dc;
}

/* Mobile-specific styles */
@media screen and (max-width: 1023px) {
    .navbar-menu {
        box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
        padding: 0.5rem 0;
    }

    .navbar-item {
        padding: 0.75rem 1rem;
    }
}
