/* ═══════════════════════════════════════════════
   CSS Custom Properties / Design Tokens
   Taxi Amadeus Schurz - Dresden
   ═══════════════════════════════════════════════ */

:root {
    /* ── Brand Colors ── */
    --color-primary: #fecb18;
    --color-primary-light: #ffe066;
    --color-primary-dark: #d4a800;
    --color-primary-rgb: 254, 203, 24;

    --color-dark: #171717;
    --color-dark-rgb: 23, 23, 23;

    /* ── Neutral Colors ── */
    --color-bg: #0a0a0a;
    --color-bg-secondary: #111111;
    --color-bg-tertiary: #1a1a1a;
    --color-bg-card: rgba(255, 255, 255, 0.03);
    --color-bg-glass: rgba(255, 255, 255, 0.05);

    --color-surface: #1e1e1e;
    --color-surface-hover: #2a2a2a;
    --color-border: rgba(255, 255, 255, 0.08);
    --color-border-light: rgba(255, 255, 255, 0.12);

    /* ── Text Colors ── */
    --color-text: #f5f5f5;
    --color-text-secondary: #a0a0a0;
    --color-text-muted: #666666;
    --color-text-on-primary: #171717;

    /* ── Semantic Colors ── */
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;

    /* ── Typography ── */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Space Grotesk', 'Inter', sans-serif;

    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    --text-7xl: 4.5rem;

    /* ── Spacing ── */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;

    /* ── Border Radius ── */
    --radius-sm: 0.375rem;
    --radius-md: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-2xl: 2rem;
    --radius-full: 9999px;

    /* ── Shadows ── */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 40px rgba(var(--color-primary-rgb), 0.15);
    --shadow-glow-strong: 0 0 60px rgba(var(--color-primary-rgb), 0.25);

    /* ── Transitions ── */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-spring: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ── Layout ── */
    --container-width: 1200px;
    --container-padding: 1.5rem;
    --nav-height: 80px;
}
