/* Civar — lib/app/theme/app_colors.dart ile birebir (light theme) ve 21. yy modern eklemeleri */
:root {
  color-scheme: light;

  /* App colors */
  --brand-teal: #0f4c5c;
  --brand-teal-light: #1d7b90;
  --brand-teal-deep: #061f26;
  --brand-teal-glow: #21a5c1;

  --brand-primary: var(--brand-teal);
  --brand-primary-light: var(--brand-teal-light);
  --brand-secondary: #e36414;
  --brand-secondary-light: #f49355;
  --brand-accent: #fb8b24;

  --cream: #fbf8f3;
  --cream-surface: #ffffff;
  --cream-muted: #f3edd9;

  --brand-surface: var(--cream-surface);
  --bg: var(--cream);
  --bg-elevated: var(--cream-surface);
  --bg-muted: #f6f1e8;

  --ink: #0d1216;
  --ink-secondary: #3b4b52;
  --ink-muted: #748993;

  --border: rgba(15, 76, 92, 0.08);
  --border-strong: rgba(15, 76, 92, 0.16);

  --primary-container: rgba(29, 123, 144, 0.08);
  --secondary-container: rgba(244, 147, 85, 0.12);
  --accent-container: rgba(251, 139, 36, 0.12);

  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --info: #3b82f6;

  /* Design additions */
  --glow-teal: 0 0 30px rgba(29, 123, 144, 0.25);
  --glow-orange: 0 0 30px rgba(227, 100, 20, 0.2);
  --gradient-primary: linear-gradient(135deg, var(--brand-teal-deep) 0%, var(--brand-teal) 50%, var(--brand-teal-light) 100%);
  --gradient-accent: linear-gradient(135deg, var(--brand-secondary) 0%, var(--brand-accent) 100%);
  --gradient-dark: linear-gradient(180deg, #051418 0%, #0c2b33 100%);
  --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0.3) 100%);
  --border-glass: rgba(255, 255, 255, 0.4);

  --shadow-sm: 0 2px 8px rgba(13, 18, 22, 0.04);
  --shadow-md: 0 12px 32px rgba(15, 76, 92, 0.08);
  --shadow-lg: 0 24px 64px rgba(15, 76, 92, 0.14);

  --font-display: "Bricolage Grotesque", system-ui, sans-serif;
  --font-body: "Plus Jakarta Sans", system-ui, sans-serif;

  --space-xxs: 4px;
  --space-xs: 8px;
  --space-sm: 12px;
  --space-md: 16px;
  --space-lg: 20px;
  --space-xl: 24px;
  --space-xxl: 32px;
  --space-huge: 56px;
  --space-section: 96px;

  --radius-xs: 8px;
  --radius-sm: 12px;
  --radius-md: 18px;
  --radius-lg: 24px;
  --radius-xl: 36px;
  --radius-full: 9999px;

  --header-h: 80px;
  --content-max: 1160px;
  --prose-max: 70ch;

  --transition: 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
