/* ============================================================
   ALP TAŞIMACILIK — Tasarım Sistemi / Design Tokens
   Tüm sayfalarda tutarlılık için renk, tipografi, boşluk ve
   gölge değerleri burada tek noktadan yönetilir.
   ============================================================ */

:root {
  /* ---- Marka Renkleri (logodaki kırmızı) ---- */
  --color-brand-red: #950708;
  --color-brand-red-dark: #6e0505;
  --color-brand-red-light: #c21f1f;
  --color-primary: var(--color-brand-red);
  --color-primary-dark: var(--color-brand-red-dark);
  --color-primary-light: var(--color-brand-red-light);
  --color-secondary: var(--color-brand-red-light);
  --color-accent: #c9a24b; /* premium detaylar için kısıtlı kullanılan altın vurgu */

  /* ---- Nötrler ---- */
  --color-white: #ffffff;
  --color-light: #f6f8f7;
  --color-light-2: #eef2f0;
  --color-border: #e2e8e4;
  --color-gray: #6b7570;
  --color-gray-dark: #3a4642;
  --color-dark: #10201a;
  --color-dark-2: #17281f;
  --color-text: #263531;
  --color-text-muted: #667169;

  /* ---- Yüzey / Gölge ---- */
  --shadow-sm: 0 2px 8px rgba(16, 32, 26, 0.06);
  --shadow-md: 0 8px 24px rgba(16, 32, 26, 0.08);
  --shadow-lg: 0 20px 48px rgba(16, 32, 26, 0.12);
  --shadow-primary: 0 12px 32px rgba(149, 7, 8, 0.24);
  --shadow-brand-red: 0 12px 32px rgba(149, 7, 8, 0.28);

  /* ---- Tipografi ---- */
  --font-heading: "Poppins", "Segoe UI", sans-serif;
  --font-body: "Inter", "Segoe UI", sans-serif;

  --fs-display: clamp(2.6rem, 4.4vw, 4.4rem);
  --fs-h1: clamp(2.2rem, 3.4vw, 3.2rem);
  --fs-h2: clamp(1.8rem, 2.6vw, 2.5rem);
  --fs-h3: clamp(1.3rem, 1.8vw, 1.6rem);
  --fs-h4: 1.15rem;
  --fs-body-lg: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;

  /* ---- Boşluk Ölçeği ---- */
  --space-3xs: 0.25rem;
  --space-2xs: 0.5rem;
  --space-xs: 0.75rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --section-padding: clamp(4rem, 8vw, 7rem);

  /* ---- Köşe Yuvarlama ---- */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-pill: 999px;

  /* ---- Geçişler ---- */
  --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: 0.2s var(--ease-standard);
  --transition-base: 0.35s var(--ease-standard);
  --transition-slow: 0.6s var(--ease-out);

  /* ---- Kapsayıcı ---- */
  --container-max: 1240px;
  --header-height: 100px;
  --header-height-scrolled: 80px;
}
