/**
 * CSS Variables - Modern Tema
 */

:root {
    /* Renk Paleti */
    --primary-color: #1a237e;
    --primary-dark: #0d1a5a;
    --primary-light: #283593;
    --secondary-color: #fecb15;
    --secondary-dark: #e6b500;
    --secondary-light: #ffd84d;
    --accent-color: #1a237e;
    --accent-light: #283593;
    
    /* Metin Renkleri */
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-light: #6b6b6b;
    --text-white: #ffffff;
    
    /* Arka Plan Renkleri */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #e9ecef;
    --bg-dark: #1a1a1a;
    
    /* Gradient'ler */
    --gradient-primary: linear-gradient(135deg, #1a237e 0%, #0d1a5a 100%);
    --gradient-secondary: linear-gradient(135deg, #fecb15 0%, #e6b500 100%);
    --gradient-hero: linear-gradient(135deg, #1a237e 0%, #283593 50%, #fecb15 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(26, 35, 126, 0.3) 0%, rgba(40, 53, 147, 0.3) 100%);
    
    /* Gölgeler */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --shadow-primary: 0 10px 30px rgba(26, 35, 126, 0.3);
    --shadow-secondary: 0 10px 30px rgba(254, 203, 21, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;   /* 8px */
    --spacing-sm: 1rem;     /* 16px */
    --spacing-md: 1.5rem;   /* 24px */
    --spacing-lg: 2rem;     /* 32px */
    --spacing-xl: 3rem;     /* 48px */
    --spacing-xxl: 4rem;    /* 64px */
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Open Sans', sans-serif;
    
    --font-size-xs: 0.75rem;    /* 12px */
    --font-size-sm: 0.875rem;   /* 14px */
    --font-size-base: 1rem;     /* 16px */
    --font-size-lg: 1.125rem;   /* 18px */
    --font-size-xl: 1.25rem;    /* 20px */
    --font-size-2xl: 1.5rem;    /* 24px */
    --font-size-3xl: 1.875rem;  /* 30px */
    --font-size-4xl: 2.25rem;   /* 36px */
    --font-size-5xl: 3rem;      /* 48px */
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    
    /* Container */
    --container-max-width: 1200px;
    --container-padding: 1.5rem;
}

/* Dark Mode (Opsiyonel) */
@media (prefers-color-scheme: dark) {
    :root {
        --text-primary: #ffffff;
        --text-secondary: #b0b0b0;
        --bg-white: #1a1a1a;
        --bg-light: #2a2a2a;
    }
}

