/* ================================================
   FORGED ECU PERFORMANCE - CSS VARIABLES
   Agresif/Sportif Tasarim Sistemi
   ================================================ */

:root {
    /* ============================================
       PRIMARY COLORS - Kirmizi Tema
       ============================================ */
    --color-primary: #CC0000;
    --color-primary-dark: #990000;
    --color-primary-light: #FF0000;
    --color-primary-rgb: 204, 0, 0;

    /* ============================================
       SECONDARY COLORS - Siyah/Koyu Tema
       ============================================ */
    --color-secondary: #1A1A1A;
    --color-secondary-light: #2D2D2D;
    --color-secondary-dark: #0D0D0D;
    --color-secondary-rgb: 26, 26, 26;

    /* ============================================
       NEUTRAL COLORS - Griler
       ============================================ */
    --color-gray-900: #1F1F1F;
    --color-gray-800: #333333;
    --color-gray-700: #4A4A4A;
    --color-gray-600: #666666;
    --color-gray-500: #808080;
    --color-gray-400: #999999;
    --color-gray-300: #B3B3B3;
    --color-gray-200: #CCCCCC;
    --color-gray-100: #E6E6E6;

    /* ============================================
       TEXT COLORS
       ============================================ */
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #B3B3B3;
    --color-text-muted: #666666;
    --color-text-dark: #1A1A1A;

    /* ============================================
       ACCENT COLORS
       ============================================ */
    --color-accent-gold: #FFD700;
    --color-accent-green: #00C853;
    --color-accent-orange: #FF6B00;
    --color-accent-blue: #0066FF;

    /* ============================================
       STATUS COLORS
       ============================================ */
    --color-success: #00C853;
    --color-warning: #FF9800;
    --color-error: #F44336;
    --color-info: #2196F3;

    /* ============================================
       GRADIENTS
       ============================================ */
    --gradient-primary: linear-gradient(135deg, #CC0000 0%, #990000 100%);
    --gradient-dark: linear-gradient(180deg, #1A1A1A 0%, #0D0D0D 100%);
    --gradient-card: linear-gradient(180deg, #2D2D2D 0%, #1A1A1A 100%);
    --gradient-hero: linear-gradient(135deg, rgba(0,0,0,0.8) 0%, rgba(204,0,0,0.3) 100%);

    /* ============================================
       TYPOGRAPHY
       ============================================ */
    --font-primary: 'Rajdhani', 'Arial', sans-serif;
    --font-secondary: 'Barlow', 'Arial', sans-serif;
    --font-accent: 'Orbitron', 'Arial', sans-serif;

    /* Font Sizes */
    --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-6xl: 3.75rem;    /* 60px */
    --text-7xl: 4.5rem;     /* 72px */

    /* Font Weights */
    --font-light: 300;
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;

    /* Line Heights */
    --leading-tight: 1.1;
    --leading-snug: 1.25;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;

    /* Letter Spacing */
    --tracking-tight: -0.025em;
    --tracking-normal: 0;
    --tracking-wide: 0.025em;
    --tracking-wider: 0.05em;
    --tracking-widest: 0.1em;

    /* ============================================
       SPACING
       ============================================ */
    --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 */

    /* ============================================
       LAYOUT
       ============================================ */
    --container-max: 1400px;
    --container-padding: var(--space-6);
    --header-height: 120px;
    --section-padding: var(--space-20);

    /* ============================================
       BORDERS & RADIUS
       ============================================ */
    --border-width: 1px;
    --border-color: rgba(255, 255, 255, 0.1);
    --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.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    --shadow-glow: 0 0 20px rgba(204, 0, 0, 0.4);
    --shadow-glow-lg: 0 0 40px rgba(204, 0, 0, 0.6);

    /* ============================================
       TRANSITIONS
       ============================================ */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    --transition-bounce: 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);

    /* ============================================
       Z-INDEX
       ============================================ */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
}
