/* variables.css - FonScoop | Koyu Gri + Açık Fıstık Yeşili Tema */

:root {
    /* Primary - Açık Fıstık Yeşili */
    --primary-color: #93c572;
    --primary-dark: #7cb342;
    --primary-light: #a8d08d;

    /* Secondary - Fıstık tonları */
    --secondary-color: #9ccc65;
    --secondary-dark: #7cb342;
    --secondary-light: #c5e1a5;

    /* Danger / Warning / Success */
    --danger-color: #e57373;
    --warning-color: #ffb74d;
    --success-color: #81c784;

    /* Koyu Gri palet */
    --dark-color: #1e272e;
    --dark-soft: #2d3436;
    --dark-muted: #636e72;

    /* Açık nötrler (light theme arka plan) */
    --light-color: #f8f9fa;
    --gray-50: #f1f3f5;
    --gray-100: #e9ecef;
    --gray-200: #dee2e6;
    --gray-300: #ced4da;
    --gray-400: #adb5bd;
    --gray-500: #868e96;
    --gray-600: #495057;
    --gray-700: #343a40;
    --gray-800: #212529;
    --gray-900: #1e272e;

    /* Semantic - light theme */
    --card-bg: #ffffff;
    --card-border: #e0e0e0;
    --text-primary: #1e272e;
    --text-secondary: #495057;
    --text-muted: #868e96;
    --background-color: #f1f3f5;
    --surface-color: #ffffff;
    --border-color: #dee2e6;
    --bg-secondary: #f8f9fa;
    --bg-muted: #e9ecef;

    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
    --font-mono: 'Roboto Mono', 'Courier New', monospace;

    /* Font Sizes */
    --text-xss: 0.20rem;
    --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;

    /* 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-28: 7rem;
    --space-32: 8rem;
    --space-36: 9rem;
    --space-40: 10rem;

    /* Borders - sade çizgiler */
    --border-radius-sm: 4px;
    --border-radius: 6px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    --border-width: 1px;

    /* Shadows - minimal */
    --shadow-sm: 0 1px 2px rgba(30, 39, 46, 0.06);
    --shadow: 0 2px 6px rgba(30, 39, 46, 0.08);
    --shadow-md: 0 4px 12px rgba(30, 39, 46, 0.1);
    --shadow-lg: 0 8px 24px rgba(30, 39, 46, 0.12);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 250ms ease;
    --transition-slow: 350ms ease;

    /* Layout */
    --header-height: 56px;
    --sidebar-width: 260px;
    --container-max-width: 1280px;
}

/* Dark Theme */
[data-theme="dark"] {
    --dark-color: #e9ecef;
    --light-color: #1e272e;

    --gray-50: #1e272e;
    --gray-100: #2d3436;
    --gray-200: #37474f;
    --gray-300: #455a64;
    --gray-400: #607d8b;
    --gray-500: #90a4ae;
    --gray-600: #b0bec5;
    --gray-700: #cfd8dc;
    --gray-800: #eceff1;
    --gray-900: #f8f9fa;

    --card-bg: #2d3436;
    --card-border: #37474f;
    --text-primary: #eceff1;
    --text-secondary: #b0bec5;
    --text-muted: #90a4ae;
    --background-color: #1e272e;
    --surface-color: #2d3436;
    --border-color: #37474f;
    --bg-secondary: #2d3436;
    --bg-muted: #37474f;

    --primary-color: #a8d08d;
    --primary-dark: #93c572;
    --primary-light: #c5e1a5;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.3);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.45);
    --shadow-lg: 0 8px 28px rgba(0, 0, 0, 0.5);
}