/*
=============================================
  CONFIG.CSS - THE KEY FILE FOR AI HANDOFF
=============================================

To customize this template for a new client:
1. Change the brand colors below
2. Adjust typography if needed
3. Modify spacing for different "feels"

All sections reference these variables, so changes here apply site-wide!
*/

:root {
    /* ================================
       BRAND COLORS
       ================================ 
       Matched to Auto Elite Customz Logo (Deep Red & Gold)
    */
    --primary: #c62828;        /* Deep Red */
    --primary-dark: #b71c1c;   /* Darker Red */
    --primary-light: #e53935;  /* Lighter Red */
    --primary-glow: rgba(198, 40, 40, 0.5);

    --secondary: #ffc107;      /* Amber/Gold */
    --secondary-dark: #ffb300;
    --secondary-light: #ffca28;

    /* ================================
       NEUTRAL COLORS
       ================================ */
    --dark: #0f172a;           /* Deep Slate Black */
    --dark-soft: #1e293b;
    --gray-900: #0f172a;
    --gray-800: #1e293b;
    --gray-700: #334155;
    --gray-600: #475569;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --white: #ffffff;

    /* ================================
       SEMANTIC COLORS
       ================================ */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;

    /* ================================
       TYPOGRAPHY
       ================================ */
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes - Using clamp for fluid typography */
    --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 */
    --text-5xl: 3rem;
    /* 48px */
    --text-hero: clamp(2.5rem, 5vw + 1rem, 4.5rem);
    /* Responsive hero text */

    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --leading-tight: 1.2;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    /* ================================
       SPACING
       ================================ */
    --space-xs: 0.25rem;
    /* 4px */
    --space-sm: 0.5rem;
    /* 8px */
    --space-md: 1rem;
    /* 16px */
    --space-lg: 1.5rem;
    /* 24px */
    --space-xl: 2rem;
    /* 32px */
    --space-2xl: 3rem;
    /* 48px */
    --space-3xl: 4rem;
    /* 64px */
    --space-4xl: 6rem;
    /* 96px */
    --space-5xl: 8rem;
    /* 128px */

    /* Section Spacing */
    --section-padding-y: clamp(4rem, 8vw, 8rem);
    --section-padding-x: clamp(1rem, 5vw, 2rem);

    /* ================================
       LAYOUT
       ================================ */
    --container-max: 1280px;
    --container-narrow: 800px;
    --container-wide: 1400px;

    /* ================================
       BORDERS & RADIUS
       ================================ */
    --radius-sm: 0.25rem;
    /* 4px */
    --radius-md: 0.5rem;
    /* 8px */
    --radius-lg: 0.75rem;
    /* 12px */
    --radius-xl: 1rem;
    /* 16px */
    --radius-2xl: 1.5rem;
    /* 24px */
    --radius-full: 9999px;
    /* Pill shape */

    /* ================================
       SHADOWS
       ================================ */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --shadow-glow: 0 0 40px var(--primary-glow);

    /* ================================
       TRANSITIONS
       ================================ */
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    --transition-bounce: 500ms cubic-bezier(0.34, 1.56, 0.64, 1);

    /* ================================
       Z-INDEX SCALE
       ================================ */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;

    /* ================================
       GLASSMORPHISM
       ================================ */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-bg-light: rgba(255, 255, 255, 0.8);
    --glass-blur: blur(12px);
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Dark mode overrides (optional) */
@media (prefers-color-scheme: dark) {
    :root {
        /* Uncomment to enable dark mode
        --dark: #f8fafc;
        --gray-100: #0f172a;
        --white: #1e293b;
        */
    }
}