/* ============================================
   工程查驗 APP - Design Tokens
   ============================================ */

:root {
    /* === Color Palette === */
    /* Primary: Engineering Blue */
    --primary-50: #e3f2fd;
    --primary-100: #bbdefb;
    --primary-200: #90caf9;
    --primary-300: #64b5f6;
    --primary-400: #42a5f5;
    --primary-500: #1e88e5;
    --primary-600: #1976d2;
    --primary-700: #1565c0;
    --primary-800: #0d47a1;
    --primary-900: #0a2463;

    /* Accent: Construction Orange */
    --accent-50: #fff3e0;
    --accent-100: #ffe0b2;
    --accent-200: #ffcc80;
    --accent-300: #ffb74d;
    --accent-400: #ffa726;
    --accent-500: #ff9800;
    --accent-600: #fb8c00;
    --accent-700: #f57c00;
    --accent-800: #ef6c00;
    --accent-900: #e65100;

    /* Status Colors */
    --status-pending: #ef4444;
    --status-pending-bg: rgba(239, 68, 68, 0.15);
    --status-in-progress: #f59e0b;
    --status-in-progress-bg: rgba(245, 158, 11, 0.15);
    --status-completed: #22c55e;
    --status-completed-bg: rgba(34, 197, 94, 0.15);
    --status-overdue: #dc2626;

    /* Dark Theme (default) */
    --bg-primary: #0f1724;
    --bg-secondary: #1a2332;
    --bg-tertiary: #243044;
    --bg-card: #1e2b3d;
    --bg-card-hover: #253549;
    --bg-overlay: rgba(0, 0, 0, 0.6);
    --bg-input: #1a2332;

    --text-primary: #f1f5f9;
    --text-secondary: #94a3b8;
    --text-tertiary: #64748b;
    --text-inverse: #0f172a;

    --border-color: #2d3e54;
    --border-light: #1e2d42;
    --divider: rgba(148, 163, 184, 0.12);

    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 12px 40px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(30, 136, 229, 0.3);

    /* Typography */
    --font-family: 'Noto Sans TC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-size-xs: 0.6875rem;   /* 11px */
    --font-size-sm: 0.8125rem;   /* 13px */
    --font-size-base: 0.9375rem; /* 15px */
    --font-size-md: 1rem;        /* 16px */
    --font-size-lg: 1.125rem;    /* 18px */
    --font-size-xl: 1.375rem;    /* 22px */
    --font-size-2xl: 1.75rem;    /* 28px */
    --font-size-3xl: 2.25rem;    /* 36px */

    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;

    /* Spacing */
    --space-xs: 4px;
    --space-sm: 8px;
    --space-md: 12px;
    --space-lg: 16px;
    --space-xl: 24px;
    --space-2xl: 32px;
    --space-3xl: 48px;

    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 14px;
    --radius-xl: 20px;
    --radius-full: 50%;

    /* Layout */
    --header-height: 56px;
    --bottom-nav-height: 64px;
    --safe-area-bottom: env(safe-area-inset-bottom, 0px);
    --fab-size: 56px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 400ms cubic-bezier(0.4, 0, 0.2, 1);

    /* Z-Index Scale */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-overlay: 300;
    --z-modal: 400;
    --z-toast: 500;
    --z-max: 999;
}
