/* =============================================
   Legal & Consulting - Global CSS Variables
   ============================================= */

:root {
  /* === Ana Renkler === */
  --primary-color: #015854;
  --secondary-color: #AF9F77;
   --gray-900: #707070;
  --bg-color: #FCF8EA;
  --white: #ffffff;
  --black: #000000;
  
  /* === Hover & Active States === */
  --primary-hover: #013f3c;
  --secondary-hover: #8f7f57;
  
  /* === Gri Tonları === */
  --gray-100: #f8f9fa;
  --gray-200: #e9ecef;
  --gray-300: #dee2e6;
  --gray-400: #ced4da;
  --gray-500: #adb5bd;
  --gray-600: #6c757d;
  --gray-700: #495057;
  --gray-800: #343a40;
  --gray-900: #3b3b3b;
  
  /* === Border & Shadow === */
  --border-radius: 8px;
  --border-radius-lg: 12px;
  --border-radius-sm: 4px;
  --box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --box-shadow-lg: 0 4px 16px rgba(0, 0, 0, 0.15);
  
  /* === Typography === */
  --font-family: 'Montserrat', sans-serif;
  --font-size-base: 16px;
  --font-size-sm: 14px;
  --font-size-lg: 18px;
  --font-size-xl: 24px;
  --font-size-xxl: 32px;
  
  --font-weight-light: 300;
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;
  --font-weight-black: 900;
  
  --line-height-base: 1.6;
  --line-height-heading: 1.3;
  
  /* === Spacing === */
  --spacing-xs: 4px;
  --spacing-sm: 8px;
  --spacing-md: 16px;
  --spacing-lg: 24px;
  --spacing-xl: 32px;
  --spacing-xxl: 48px;
  --spacing-xxxl: 64px;
  
  /* === Container === */
  --container-max-width: 1320px;
  --container-padding: 15px;
  
  /* === Header === */
  --header-height: 90px;
  --header-bg: rgba(1, 88, 84, 0.95);
  --header-bg-scrolled: rgba(1, 88, 84, 0.98);
  
  /* === Mega Menu === */
  --mega-menu-bg: #AF9F77;
  --mega-menu-text: #ffffff;
  
  /* === Transitions === */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* === Z-index === */
  --z-header: 1000;
  --z-dropdown: 1010;
  --z-modal: 1050;
  --z-tooltip: 1060;
  
  /* === Breakpoints (referans için) === */
  --breakpoint-xs: 0;
  --breakpoint-sm: 576px;
  --breakpoint-md: 768px;
  --breakpoint-lg: 992px;
  --breakpoint-xl: 1200px;
  --breakpoint-xxl: 1400px;
}

/* === Dark Mode Support (opsiyonel) === */
@media (prefers-color-scheme: dark) {
  :root {
    /* Dark mode renkleri gerekirse buraya eklenebilir */
  }
}