:root {
  /* Renk Paleti - arsemenerji.com'dan çıkarılan renkler */
  --color-primary: #6C2BD9;
  --color-text-dark: #333333;
  --color-text-light: #FFFFFF;
  --color-background-light: #FFFFFF;
  --color-background-dark: #000000;
  --color-border: #E0E0E0;
  --color-hover: #4B1D9D;
  
  /* Tipografi - Titillium Web font ailesi */
  --font-family-primary: "Titillium Web", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  
  /* Font Boyutları */
  --fontsize-h1: 38px;
  --fontsize-h2: 20px;
  --fontsize-h3: 18px;
  --fontsize-h4: 16px;
  --fontsize-p: 16px;
  --fontsize-small: 14px;
  
  /* Font Kalınlıkları */
  --fontweight-thin: 100;
  --fontweight-light: 300;
  --fontweight-regular: 400;
  --fontweight-medium: 500;
  --fontweight-bold: 700;
  
  /* Container ve Spacing */
  --container-width: 2000px;
  --container-padding: 20px;
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 32px;
  --spacing-xl: 48px;
  --spacing-xxl: 64px;
  
  /* Transition */
  --transition-fast: 0.2s ease;
  --transition-medium: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.2);
  
  /* Z-index */
  --z-dropdown: 1000;
  --z-header: 2000;
  --z-modal: 3000;

  /* Layout */
  --header-height: 80px;
}
