@import url('base.css');
@import url('layout.css');
@import url('components.css');
@import url('pages.css');
@import url('responsive.css');

/* 
 * The content of this file has been refactored into smaller, more manageable modules.
 * - base.css: Root variables, body styles, typography, and basic utilities.
 * - layout.css: Styles for major page sections like navbar, hero, footer.
 * - components.css: Reusable components like buttons, cards, and forms.
 * - pages.css: Styles specific to detail pages.
 * - responsive.css: All media queries for responsive design.
 */

.footer-categories {
    padding: 0.75rem 0;
    background: linear-gradient(180deg, rgba(255,140,0,0.02), rgba(255,140,0,0.01));
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.footer-categories .categories-track {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    overflow-x: auto;
    padding: 0.5rem 0;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
}

.category-pill {
    display: inline-block;
    white-space: nowrap;
    padding: 0.45rem 0.9rem;
    background: rgba(255,255,255,0.02);
    color: var(--text-primary);
    border: 1px solid var(--border-color);
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: transform 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.category-pill:hover {
    transform: translateY(-3px);
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-color: transparent;
}

#interactive-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; /* Behind all content */
    pointer-events: none; /* Allows clicks to pass through */
}

/* ensure small screens show nicely */
@media (max-width: 768px) {
    .category-pill {
        padding: 0.4rem 0.7rem;
        font-size: 0.85rem;
    }
}