/**
 * Geneser - CSS Variables
 * Varsayılan tema değişkenleri (JS ile override edilir)
 */

:root {
    /* Colors - Minimal Light (varsayılan) */
    --color-primary: #1a1a1a;
    --color-secondary: #6b6b6b;
    --color-accent: #b5876d;
    --color-accent-rgb: 181, 135, 109;
    --color-accent-hover: #a07660;
    --color-bg: #ffffff;
    --color-bg-alt: #f5f5f5;
    --color-bg-dark: #1a1a1a;
    --color-text: #1a1a1a;
    --color-text-light: #6b6b6b;
    --color-text-inverse: #ffffff;
    --color-border: #e5e5e5;
    --color-border-light: #f0f0f0;
    --color-success: #22c55e;
    --color-warning: #f59e0b;
    --color-danger: #ef4444;
    --color-info: #3b82f6;

    /* Typography */
    --font-primary: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Outfit', sans-serif;

    /* Sizing */
    --container-max: 1280px;
    --container-padding: 20px;
    --section-spacing: 80px;
    --section-spacing-sm: 48px;
    --header-height: 162px;

    /* Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-full: 9999px;

    /* Shadow */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);

    /* Transition */
    --transition: 0.3s ease;
    --transition-fast: 0.15s ease;
}