/**
 * Sovran Wealth Fund - Navigation Component Styles
 * This CSS file contains all the styles needed for the SWF navigation system.
 */

/* Basic navigation pill styles */
.nav-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.nav-pill {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    background-color: rgba(55, 65, 81, 0.7);
    color: white;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
}

.nav-pill:hover {
    background-color: rgba(59, 130, 246, 0.7);
}

.nav-pill.active {
    background-color: rgba(59, 130, 246, 0.9);
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.3);
}

/* Horizontal Slider Navigation Styling */
.mobile-slider-nav {
    -webkit-overflow-scrolling: touch; /* Smooth scrolling on iOS */
    scroll-behavior: smooth; /* Smooth scrolling behavior */
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.mobile-slider-nav::-webkit-scrollbar {
    display: none;
}

/* Active state for mobile nav items */
.mobile-slider-nav a.active {
    background-color: #2563eb; /* blue-600 */
    box-shadow: 0 0 0 2px rgba(59, 130, 246, 0.5);
    transform: translateY(-2px);
}

/* Transition for nav items */
.mobile-slider-nav a {
    transition: all 0.2s ease;
}

@media (max-width: 768px) {
    .nav-pills {
        justify-content: center;
    }
}