/* ==========================================================================
   Design Tokens (CSS Custom Properties)
   Generated from /project/design-tokens.json
   
   To customize for a client:
   1. Update design-tokens.json with brand values
   2. Regenerate this file OR manually update values below
   ========================================================================== */

:root {
    /* ===== COLORS ===== */
    
    /* Primary */
    --color-primary: #1a365d;
    --color-primary-light: #2c5282;
    --color-primary-dark: #1a202c;
    --color-primary-contrast: #ffffff;
    
    /* Secondary */
    --color-secondary: #d69e2e;
    --color-secondary-light: #ecc94b;
    --color-secondary-dark: #b7791f;
    --color-secondary-contrast: #000000;
    
    /* Accent */
    --color-accent: #38a169;
    --color-accent-light: #48bb78;
    --color-accent-dark: #2f855a;
    --color-accent-contrast: #ffffff;
    
    /* Neutral */
    --color-white: #ffffff;
    --color-gray-50: #f7fafc;
    --color-gray-100: #edf2f7;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e0;
    --color-gray-400: #a0aec0;
    --color-gray-500: #718096;
    --color-gray-600: #4a5568;
    --color-gray-700: #2d3748;
    --color-gray-800: #1a202c;
    --color-gray-900: #171923;
    --color-black: #000000;

    /* Compatibility aliases (for module CSS) */
    --color-off-white: var(--color-gray-50);
    --color-light: var(--color-gray-100);
    --color-gray-light: var(--color-gray-200);
    --color-gray: var(--color-gray-500);
    --color-gray-dark: var(--color-gray-700);
    --color-dark: var(--color-gray-800);
    
    /* Semantic */
    --color-success: #38a169;
    --color-warning: #dd6b20;
    --color-error: #e53e3e;
    --color-info: #3182ce;
    
    /* ===== TYPOGRAPHY ===== */
    
    /* Font Families */
    --font-primary: 'Inter', system-ui, -apple-system, sans-serif;
    --font-secondary: 'Playfair Display', Georgia, Times, serif;

    /* Compatibility aliases (for module CSS) */
    --font-sans: var(--font-primary);
    --font-heading: var(--font-primary);
    
    /* Font Sizes */
    --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;
    
    /* Line Heights */
    --leading-tight: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;
    
    /* Letter Spacing */
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    
    /* Font Weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* ===== SPACING ===== */
    
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    
    /* Section Spacing */
    --section-sm: 3rem;
    --section-md: 5rem;
    --section-lg: 8rem;
    --section-xl: 10rem;
    
    /* ===== LAYOUT ===== */
    
    /* Containers */
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1536px;
    
    /* Grid */
    --grid-columns: 12;
    --grid-gutter: 1.5rem;
    
    /* ===== BORDERS ===== */
    
    /* Border Radius */
    --radius-none: 0;
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Border Width */
    --border-thin: 1px;
    --border-medium: 2px;
    --border-thick: 4px;
    
    /* ===== SHADOWS ===== */
    
    --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    --shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);
    --shadow-inner: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
    --shadow-none: none;
    
    /* ===== TRANSITIONS ===== */
    
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* ===== Z-INDEX ===== */
    
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;
    
    /* ===== COMPONENT TOKENS ===== */
    
    /* Buttons */
    --btn-padding-x: 1.5rem;
    --btn-padding-y: 0.75rem;
    --btn-font-size: 1rem;
    --btn-font-weight: 600;
    --btn-radius: var(--radius-md);
    
    /* Inputs */
    --input-padding-x: 1rem;
    --input-padding-y: 0.75rem;
    --input-font-size: 1rem;
    --input-radius: var(--radius-md);
    --input-border-color: var(--color-gray-300);
    --input-focus-border-color: var(--color-primary);
    
    /* Cards */
    --card-padding: 1.5rem;
    --card-radius: var(--radius-lg);
    --card-shadow: var(--shadow-md);
    
    /* Navigation */
    --nav-height: 80px;
    --nav-height-mobile: 64px;
    --nav-bg: var(--color-white);
    --nav-link-color: var(--color-gray-700);
    --nav-link-hover: var(--color-primary);
}

/* Dark Mode (optional - uncomment to enable) */
/*
@media (prefers-color-scheme: dark) {
    :root {
        --color-gray-50: #171923;
        --color-gray-100: #1a202c;
        --color-gray-200: #2d3748;
        --color-gray-300: #4a5568;
        --color-gray-400: #718096;
        --color-gray-500: #a0aec0;
        --color-gray-600: #cbd5e0;
        --color-gray-700: #e2e8f0;
        --color-gray-800: #edf2f7;
        --color-gray-900: #f7fafc;
    }
}
*/
