:root {
    /* Colors */
    --primary-color: #d9001d;
    --primary-dark: #b30018;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-white: #ffffff;
    --bg-light: #f9fafb;
    --accent-yellow: #eab308;
    
    /* Typography */
    --font-primary: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 24px;
    --font-size-2xl: 32px;
    --font-size-3xl: 48px;
    --font-size-4xl: 64px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Top bar (navbar üstü) */
    --topbar-height: 44px;
    /* Navbar */
    --navbar-height: 72px;
    --navbar-height-scrolled: 72px;
    
    /* Z-index */
    --z-navbar: 999;
    --z-slider: 100;
    --z-slider-overlay: 1;
    --z-scroll-top: 900;
}

