/* ==========================================================================
   FUEGUARD Design System - CSS Variables
   ========================================================================== */

:root {
    /* Colors - Primary */
    --color-primary: #C41E3A;
    --color-primary-dark: #9A1829;
    --color-primary-light: #E63950;

    /* Colors - Neutral */
    --color-white: #FFFFFF;
    --color-charcoal: #2D2D2D;
    --color-grey-dark: #4A4A4A;
    --color-grey-medium: #6B6B6B;
    --color-grey-light: #F5F5F5;
    --color-grey-lighter: #FAFAFA;
    --color-grey-border: #E0E0E0;

    /* Colors - Semantic */
    --color-success: #28A745;
    --color-warning: #FFC107;
    --color-error: #DC3545;

    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;

    /* Font Sizes - Mobile First */
    --fs-xs: 0.75rem;
    /* 12px */
    --fs-sm: 0.875rem;
    /* 14px */
    --fs-base: 1rem;
    /* 16px */
    --fs-md: 1.125rem;
    /* 18px */
    --fs-lg: 1.25rem;
    /* 20px */
    --fs-xl: 1.5rem;
    /* 24px */
    --fs-2xl: 1.875rem;
    /* 30px */
    --fs-3xl: 2.25rem;
    /* 36px */
    --fs-4xl: 3rem;
    /* 48px */
    --fs-5xl: 3.75rem;
    /* 60px */

    /* Line Heights */
    --lh-tight: 1.2;
    --lh-base: 1.5;
    --lh-relaxed: 1.75;

    /* Spacing Scale */
    --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 */
    --space-20: 5rem;
    /* 80px */
    --space-24: 6rem;
    /* 96px */

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;

    /* Container */
    --container-max: 1200px;
    --container-padding: var(--space-4);

    /* Header */
    --header-height: 80px;
}

/* Tablet and up */
@media (min-width: 768px) {
    :root {
        --container-padding: var(--space-6);
        --header-height: 90px;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    :root {
        --container-padding: var(--space-8);
    }
}