/*
   GO USA - DESIGN SYSTEM TOKENS
   Fonts: Barlow Condensed (Display), DM Mono (Codes/Stats), Plus Jakarta Sans (Body)
   Colors: Navy (#002868), Red (#bf0a30), Slate (#64748b)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800;900&family=DM+Mono:wght@400;500&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette */
    --gc-navy: #002868;
    --gc-red: #bf0a30;
    --gc-navy-dark: #001a44;
    --gc-slate: #64748b;
    --gc-slate-light: #94a3b8;
    --gc-bg: #f8fafc;
    --gc-border: #e2e8f0;

    /* Typography */
    --font-display: 'Barlow Condensed', sans-serif;
    --font-mono: 'DM Mono', monospace;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0,0,0,0.1);
}

body {
    font-family: var(--font-body);
    background-color: #fff;
    color: #1e293b;
    margin: 0;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .display-font {
    font-family: var(--font-display);
    text-transform: uppercase;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.mono-font {
    font-family: var(--font-mono);
}

.text-red { color: var(--gc-red); }
.text-navy { color: var(--gc-navy); }

/* Reusable Components */
.gc-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5%;
}

.btn-primary {
    background: var(--gc-red);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 800;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-primary:hover {
    background: #a50828;
    transform: translateY(-1px);
}

/* Admin Layout Tokens */
.admin-layout {
    display: flex;
    min-height: 100vh;
    background: #f8fafc;
}

.admin-sidebar {
    width: 260px;
    background: #002868;
    color: #fff;
    display: flex;
    flex-direction: column;
    position: sticky;
    top: 0;
    height: 100vh;
    transition: width 0.3s;
    flex-shrink: 0;
}

.admin-sidebar.collapsed {
    width: 80px;
}

.sidebar-logo {
    padding: 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 24px;
    letter-spacing: -0.02em;
}

.sidebar-nav {
    flex: 1;
    padding: 20px 12px;
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 8px;
    color: #94a3b8;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 4px;
    transition: all 0.2s;
}

.nav-item:hover, .nav-item.active {
    background: rgba(255,255,255,0.1);
    color: #fff;
}

.admin-main {
    flex: 1;
    padding: 30px 40px;
    overflow-y: auto;
}

.admin-card {
    background: #fff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    box-shadow: var(--shadow-sm);
    padding: 24px;
    margin-bottom: 24px;
}

.kpi-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.kpi-card {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.kpi-val {
    font-size: 28px;
    font-weight: 800;
    font-family: var(--font-display);
    color: var(--gc-navy);
}

.status-pill {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.status-open { background: #dcfce7; color: #166534; }
.status-closed { background: #fee2e2; color: #991b1b; }
.status-draft { background: #f1f5f9; color: #475569; }
