/* Mobile Responsiveness & Bottom Navigation */
@media (max-width: 991.98px) {
    /* Keep original navbar at top but adjust styling if needed */
    .navbar-glass {
        padding: 5px 0;
    }
    
    .hero-section {
        margin-top: 80px;
        height: 60vh;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    body {
        padding-bottom: 70px; /* Space for bottom nav */
    }
    
    /* App-like Mobile Bottom Navigation */
    .mobile-bottom-nav {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        background: #ffffff;
        box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
        display: flex;
        justify-content: space-around;
        align-items: center;
        padding: 10px 5px;
        z-index: 1050;
        border-radius: 20px 20px 0 0;
    }
    
    .mobile-bottom-nav .nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-decoration: none;
        color: var(--secondary-color);
        font-size: 0.75rem;
        font-weight: 500;
        transition: all 0.3s;
    }
    
    .mobile-bottom-nav .nav-item i {
        font-size: 1.2rem;
        margin-bottom: 4px;
        color: var(--secondary-color);
    }
    
    .mobile-bottom-nav .nav-item.active-item {
        color: var(--primary-color);
    }
    
    .mobile-bottom-nav .nav-item.active-item i {
        color: var(--primary-color);
    }
    
    /* Hide the default navbar collapse on mobile since we have bottom nav */
    .navbar-toggler {
        display: none !important;
    }
    .navbar-collapse {
        display: none !important;
    }
}
