/**
 * CSS Variables - Renk Şeması ve Tema Değişkenleri
 * Av. Berfin Aksoy Hukuk ve Danışmanlık
 */

:root {
    /* Renk Paleti - Siyah, Beyaz, Gri Tonları */
    --color-black: #1a1a1a;
    --color-white: #ffffff;
    --color-gray-dark: #333333;
    --color-gray-medium: #666666;
    --color-gray-light: #999999;
    --color-gray-lighter: #e0e0e0;
    --color-gray-lightest: #f7f7f7;
    
    /* Vurgu Renkleri */
    --color-primary: #1a1a1a;
    --color-secondary: #333333;
    --color-accent: #666666;
    
    /* Arka Plan Renkleri */
    --bg-primary: #ffffff;
    --bg-secondary: #f7f7f7;
    --bg-dark: #1a1a1a;
    --bg-gray: #333333;
    
    /* Metin Renkleri */
    --text-primary: #333333;
    --text-secondary: #666666;
    --text-light: #999999;
    --text-white: #ffffff;
    --text-gray: #b0b0b0;
    
    /* Border Renkleri */
    --border-light: #e0e0e0;
    --border-medium: #cccccc;
    --border-dark: #333333;
    
    /* Gölge */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 10px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 15px 40px rgba(0, 0, 0, 0.15);
    
    /* Tipografi */
    --font-primary: 'Georgia', 'Times New Roman', serif;
    --font-size-xs: 0.7rem;
    --font-size-sm: 0.8rem;
    --font-size-base: 1rem;
    --font-size-md: 1.1rem;
    --font-size-lg: 1.2rem;
    --font-size-xl: 1.8rem;
    --font-size-2xl: 2.2rem;
    --font-size-3xl: 3rem;
    
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    --line-height-tight: 1.2;
    --line-height-normal: 1.6;
    --line-height-relaxed: 1.8;
    
    --letter-spacing-tight: 1px;
    --letter-spacing-normal: 2px;
    --letter-spacing-wide: 3px;
    --letter-spacing-wider: 5px;
    
    /* Spacing */
    --spacing-xs: 0.3rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 2.5rem;
    --spacing-3xl: 3rem;
    --spacing-4xl: 4rem;
    --spacing-6xl: 6rem;
    
    /* Border Radius */
    --radius-none: 0;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 20px;
    --radius-full: 50%;
    
    /* Transitions */
    --transition-fast: 0.2s;
    --transition-normal: 0.3s;
    --transition-slow: 0.5s;
    
    /* 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: 2rem;
    
    /* Header */
    --header-height: auto;
    --header-bg: var(--color-black);
    --header-text: var(--color-white);
    
    /* Footer */
    --footer-bg: var(--color-black);
    --footer-text: var(--color-gray-lighter);
    
    /* Hero */
    --hero-min-height: 550px;
    --hero-overlay: rgba(0, 0, 0, 0.4);
}

/* Dark mode desteği (gelecekte kullanılabilir) */
@media (prefers-color-scheme: dark) {
    :root {
        /* Dark mode değişkenleri buraya eklenebilir */
    }
}

