/* =====================================================================
   Design-Tokens — Anwaltskanzlei Fatih Çıbık
   Verbindlich aus 02-Designsystem.md (Abschnitt 12)
   ===================================================================== */

:root {
  /* --- Markenfarben --- */
  --color-primary:        #0E2A47;  /* Mitternachtsblau */
  --color-primary-dark:   #081B30;  /* Tiefnacht */
  --color-primary-light:  #2C5378;  /* Schieferblau */
  --color-accent:         #C8841A;  /* Bernstein */
  --color-accent-dark:    #A66A0E;  /* Bernstein dunkel */
  --color-accent-tint:    #F6E9D2;  /* Bernstein-Tint */

  /* --- Neutrale Töne --- */
  --color-bg:             #FBFAF7;  /* Porzellan */
  --color-surface:        #FFFFFF;  /* Reinweiß */
  --color-bg-alt:         #F1EEE7;  /* Sandgrau */
  --color-border:         #E2DED5;  /* Nebelgrau */
  --color-ui-grey:        #B7B2A6;  /* Steingrau */

  /* --- Textfarben --- */
  --color-text:           #1B2733;  /* Text primär */
  --color-text-muted:     #52606D;  /* Text sekundär */
  --color-text-on-dark:   #F4F2EC;  /* Text auf Dunkel */
  --color-text-on-dark-muted: #AFC0D0;
  --color-link:           #A66A0E;  /* Link auf Hell */
  --color-link-on-dark:   #E0A23E;  /* Link auf Dunkel */

  /* --- Zustandsfarben --- */
  --color-success:        #1E7A4D;  --color-success-bg: #E4F2EA;
  --color-warning:        #B5710B;  --color-warning-bg: #FBEFD8;
  --color-error:          #B3261E;  --color-error-bg:   #FBE6E5;
  --color-info:           #1F5F8B;  --color-info-bg:    #E5EFF6;

  /* --- Schriften --- */
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body:    "Public Sans", system-ui, -apple-system, "Segoe UI", sans-serif;
  --font-mono:    "IBM Plex Mono", "SFMono-Regular", Consolas, monospace;

  /* --- Spacing (8-px-Basis) --- */
  --space-2xs: 4px;
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  24px;
  --space-lg:  32px;
  --space-xl:  48px;
  --space-2xl: 64px;
  --space-3xl: 96px;
  --space-4xl: 128px;

  /* --- Radius --- */
  --radius-sm:   8px;
  --radius-md:   12px;
  --radius-lg:   20px;
  --radius-avatar: 16px;
  --radius-pill: 9999px;

  /* --- Schatten --- */
  --shadow-sm: 0 1px 2px rgba(8,27,48,.06), 0 1px 1px rgba(8,27,48,.04);
  --shadow-md: 0 4px 16px rgba(8,27,48,.08);
  --shadow-lg: 0 16px 40px rgba(8,27,48,.14);

  /* --- Container --- */
  --container-xl:     1280px;
  --container-lg:     1080px;
  --container-text:   760px;
  --container-narrow: 560px;

  /* --- Bewegung --- */
  --ease-standard: cubic-bezier(0.2, 0, 0.2, 1);
  --duration-micro: 150ms;
  --duration-base:  240ms;

  /* --- Header-Höhen --- */
  --header-height:        80px;
  --header-height-shrink: 64px;
  --header-height-mobile: 64px;
  --sticky-bar-height:    64px;
}
