/*
 * ============================================================
 * SUMO-D — Shared Stylesheet
 * ============================================================
 * WHY THIS FILE EXISTS:
 *   All pages (index, about, contact) share the same brand rules.
 *   Keeping styles here means one change updates every page at once.
 *   Never duplicate these rules inside a page's own <style> block.
 * ============================================================
 */

/* ── Base Typography ───────────────────────────────────────── */
body {
    font-family: 'Inter', sans-serif;
    background-color: #FFFFFF;
    color: #0A1A2F;
}

h1, h2, h3, h4, h5, h6, .font-space {
    font-family: 'Space Grotesk', sans-serif;
}

/* ── Brand Rule: Uppercase nav & buttons ──────────────────── */
/* ⚠️ WARNING: Do NOT remove — buttons and nav links across every page depend on this */
.nav-link,
button,
.btn-text {
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    font-size: 14px;
}

/* ── Custom Scrollbar (desktop) ───────────────────────────── */
::-webkit-scrollbar        { width: 8px; }
::-webkit-scrollbar-track  { background: #E6E9EE; }
::-webkit-scrollbar-thumb  { background: #0A1A2F; border-radius: 8px; }

/* ── Hide scrollbar (category strip, etc.) ────────────────── */
.no-scrollbar::-webkit-scrollbar { display: none; }
.no-scrollbar { -ms-overflow-style: none; scrollbar-width: none; }

/* ── Entrance animation ────────────────────────────────────── */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.fade-in-up { animation: fadeInUp 0.4s ease forwards; }

/* ── Skeleton loader shimmer (CSV loading state) ───────────── */
.skeleton {
    background: linear-gradient(90deg, #E6E9EE 25%, #F4F6F8 50%, #E6E9EE 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 8px;
}
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ── Category Cards (job board index page) ─────────────────── */
.category-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid #E6E9EE;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-width: 140px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.category-card:hover,
.category-card.active {
    border-color: #257CFF;
    box-shadow: 0 8px 25px rgba(37, 124, 255, 0.1);
}
.category-card:hover .cat-icon,
.category-card.active .cat-icon { color: #257CFF; }
.cat-icon  { color: #0A1A2F; transition: color 0.2s; }
.cat-label { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 14px; color: #0A1A2F; }

/* ── Job Card ───────────────────────────────────────────────── */
.job-card {
    background: #FFFFFF;
    border: 1px solid #E6E9EE;
    border-radius: 8px;
    padding: 24px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}
.job-card:hover {
    border-color: #257CFF;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}
