/**
 * Adamo Careers - CSS Design Tokens
 *
 * Centralized design system variables for consistent styling.
 * Import this file first in all page stylesheets.
 */

:root {
    /* ========================================
       Brand Colors
       ======================================== */
    --brand-navy: #14264A;
    --brand-navy-light: #1e3a5f;
    --brand-navy-dark: #0d1b33;
    --brand-red: #e63946;
    --brand-red-light: #ef5350;
    --brand-red-dark: #c1121f;

    /* ========================================
       Text Colors
       ======================================== */
    --text-primary: #1a1a2e;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --text-inverse: #ffffff;

    /* ========================================
       Background Colors
       ======================================== */
    --bg-white: #ffffff;
    --bg-subtle: #f8fafc;
    --bg-muted: #f1f5f9;
    --bg-overlay: rgba(0, 0, 0, 0.5);

    /* ========================================
       Border Colors
       ======================================== */
    --border-color: #e2e8f0;
    --border-color-light: #f1f5f9;
    --border-color-dark: #cbd5e1;

    /* ========================================
       Status Colors - Semantic
       ======================================== */

    /* Neutral / Received / Pending */
    --status-neutral-bg: #f1f5f9;
    --status-neutral-text: #475569;
    --status-neutral-border: #e2e8f0;

    /* Info / In Review */
    --status-info-bg: #dbeafe;
    --status-info-text: #1e40af;
    --status-info-border: #bfdbfe;

    /* Progress / Interview */
    --status-progress-bg: #e0f2fe;
    --status-progress-text: #0369a1;
    --status-progress-border: #bae6fd;

    /* Success / Offered / Hired */
    --status-success-bg: #dcfce7;
    --status-success-text: #166534;
    --status-success-border: #bbf7d0;

    /* Success Strong / Hired */
    --status-success-strong-bg: #bbf7d0;
    --status-success-strong-text: #15803d;
    --status-success-strong-border: #86efac;

    /* Danger / Not Selected / Declined */
    --status-danger-bg: #fee2e2;
    --status-danger-text: #991b1b;
    --status-danger-border: #fecaca;

    /* Warning / Action Required */
    --status-warning-bg: #fef3c7;
    --status-warning-text: #92400e;
    --status-warning-border: #fde68a;

    /* ========================================
       Shadows
       ======================================== */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-card: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-card-hover: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-focus: 0 0 0 3px rgba(20, 38, 74, 0.15);
    --shadow-focus-red: 0 0 0 3px rgba(230, 57, 70, 0.15);

    /* ========================================
       Border Radius
       ======================================== */
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-full: 9999px;

    /* ========================================
       Spacing Scale (4px base)
       ======================================== */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.25rem;   /* 20px */
    --space-6: 1.5rem;    /* 24px */
    --space-8: 2rem;      /* 32px */
    --space-10: 2.5rem;   /* 40px */
    --space-12: 3rem;     /* 48px */
    --space-16: 4rem;     /* 64px */

    /* ========================================
       Typography Scale
       ======================================== */
    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 1.875rem;   /* 30px */
    --text-4xl: 2.25rem;    /* 36px */

    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    /* ========================================
       Transitions
       ======================================== */
    --transition-fast: 150ms ease;
    --transition-base: 200ms ease;
    --transition-slow: 300ms ease;

    /* ========================================
       Z-Index Scale
       ======================================== */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;

    /* ========================================
       Container Widths
       ======================================== */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1196px;
}
