/*
 * Mobile Bottom Navigation Styles
 * Fixed bottom nav bar visible only on mobile devices
 */

/* Mobile Bottom Navigation - Only visible on mobile */
#mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--color-surface, #ffffff);
    border-top: 1px solid var(--color-border, #e0e0e0);
    z-index: 99997;
    padding: 8px 0;
    padding-bottom: calc(8px + env(safe-area-inset-bottom));
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

#mobile-bottom-nav .nav-items {
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 500px;
    margin: 0 auto;
}

#mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: var(--color-text-muted, #666);
    font-size: 10px;
    font-family: var(--main-font, 'Poppins', sans-serif);
    min-width: 60px;
    min-height: 44px;
    padding: 4px 8px;
    border-radius: 8px;
    transition: all 0.2s ease;
    background: transparent;
    border: none;
    cursor: pointer;
}

#mobile-bottom-nav .nav-item:hover,
#mobile-bottom-nav .nav-item:focus {
    color: var(--primary-color, #003366);
    background: rgba(0, 51, 102, 0.05);
}

#mobile-bottom-nav .nav-item.active {
    color: var(--primary-color, #003366);
}

#mobile-bottom-nav .nav-item svg {
    width: 22px;
    height: 22px;
    margin-bottom: 2px;
    stroke: currentColor;
    fill: none;
}

#mobile-bottom-nav .nav-item span {
    font-weight: 500;
}

/* Show on mobile only */
@media (max-width: 768px) {
    #mobile-bottom-nav {
        display: block;
    }

    /* Hide floating search button when bottom nav is visible */
    body #floating-search-btn {
        display: none;
    }

    /* Hide hamburger menu - bottom nav handles navigation */
    body .primary-menu-toggle.menu-toggle,
    body .menu-toggle,
    body button.menu-toggle {
        display: none;
    }

    /* Hide social links on mobile - available on About page */
    body .wp-block-social-links,
    body .site-header .wp-block-social-links {
        display: none;
    }

    /* Add padding to body to prevent content from being hidden behind nav */
    body {
        padding-bottom: 70px;
    }
}
