/* ==========================================================================
   DERELİOĞLU OTOMOTİV — DESIGN TOKENS
   Tüm renk, tipografi, spacing ve efekt değerleri burada tanımlanır.
   Laravel/Blade'e geçişte bu dosya aynen taşınabilir (tek kaynak / single
   source of truth). Yeni bir renk / değer eklemek gerekirse SADECE burayı
   değiştirin, başka hiçbir dosyada renk hex kodu hardcode edilmemelidir.
   ========================================================================== */

:root {
  /* ---- Marka Renkleri ---- */
  --color-primary: #0f172a;        /* Ana lacivert */
  --color-primary-rgb: 15, 23, 42;
  --color-secondary: #1e3a5f;      /* Koyu mavi */
  --color-secondary-rgb: 30, 58, 95;
  --color-accent: #e5e7eb;         /* Açık gri / accent metin */
  --color-accent-rgb: 229, 231, 235;
  --color-hover: #2563eb;          /* Hover / interaktif mavi */
  --color-hover-rgb: 37, 99, 235;

  /* ---- Türetilmiş Nötrler ---- */
  --color-bg: var(--color-primary);
  --color-bg-void: #070c18;        /* platform/spotlight gibi en derin katmanlar için */
  --color-bg-elevated: #131f38;
  --color-bg-elevated-2: #172544;
  --color-text: #f6f4ef;           /* hafif sıcak beyaz — soğuk #fff yerine premium okunabilirlik */
  --color-text-muted: #9aa5b8;
  --color-text-dim: #6b7686;
  --color-border: rgba(229, 231, 235, 0.1);
  --color-border-strong: rgba(229, 231, 235, 0.18);
  --color-hairline: rgba(201, 168, 105, 0.22); /* altın tonlu ince ayraç çizgisi */
  --color-success: #22c55e;
  --color-danger: #ef4444;
  --color-gold: #c9a869; /* premium detay vurgusu (fiyat, rozet) — KISITLI kullanım */
  --color-gold-bright: #f0d9a3;

  /* ---- Gradientler ---- */
  --gradient-navy: linear-gradient(135deg, #0f172a 0%, #1e3a5f 100%);
  --gradient-navy-reverse: linear-gradient(315deg, #0f172a 0%, #1e3a5f 100%);
  --gradient-void: linear-gradient(180deg, #070c18 0%, #0f172a 70%, #13203d 100%);
  --gradient-radial-spot: radial-gradient(circle at 50% 30%, rgba(37, 99, 235, 0.18), transparent 60%);
  --gradient-spotlight-beam: conic-gradient(from 180deg at 50% 0%, transparent 34%, rgba(240, 217, 163, 0.16) 50%, transparent 66%);
  --gradient-hero-overlay: linear-gradient(180deg, rgba(7,12,24,0.35) 0%, rgba(7,12,24,0.6) 55%, rgba(7,12,24,0.98) 100%);
  --gradient-fade-bottom: linear-gradient(180deg, transparent 0%, var(--color-bg) 100%);
  --gradient-gold: linear-gradient(120deg, #e9d6a8, #c9a869 45%, #a9873f);
  --gradient-gold-text: linear-gradient(100deg, #f0d9a3 0%, #c9a869 55%, #e9d6a8 100%);

  /* ---- Glassmorphism ---- */
  --glass-bg: rgba(255, 255, 255, 0.04);
  --glass-bg-strong: rgba(255, 255, 255, 0.07);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(18px);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);

  /* ---- Tipografi ---- */
  --font-heading: "Poppins", "Manrope", sans-serif;
  --font-body: "Manrope", "Poppins", sans-serif;
  --fs-display: clamp(2.75rem, 5.2vw, 5.25rem);
  --fs-h1: clamp(2.25rem, 4.2vw, 3.75rem);
  --fs-h2: clamp(1.85rem, 3.2vw, 2.9rem);
  --fs-h3: clamp(1.25rem, 2vw, 1.75rem);
  --fs-body-lg: 1.125rem;
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --fs-micro: 0.6875rem;
  --lh-tight: 1.04;
  --lh-normal: 1.6;
  --ls-display: -0.035em;
  --ls-label: 0.22em;

  /* ---- Spacing (8px ölçek) ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;

  /* ---- Radius ---- */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 999px;

  /* ---- Gölgeler ---- */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.28);
  --shadow-lg: 0 24px 64px rgba(0, 0, 0, 0.4);
  --shadow-glow-hover: 0 0 0 1px rgba(37, 99, 235, 0.4), 0 12px 40px rgba(37, 99, 235, 0.25);
  --shadow-glow-gold: 0 0 0 1px rgba(201, 168, 105, 0.4), 0 12px 40px rgba(201, 168, 105, 0.18);

  /* ---- Geçişler ---- */
  --ease-premium: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-soft: cubic-bezier(0.22, 0.61, 0.36, 1);
  --transition-fast: 0.2s var(--ease-soft);
  --transition-base: 0.4s var(--ease-premium);
  --transition-slow: 0.8s var(--ease-premium);

  /* ---- Katmanlar ---- */
  --z-header: 100;
  --z-mega-menu: 90;
  --z-modal: 200;
  --z-toast: 210;
  --z-loader: 300;

  /* ---- Layout ---- */
  --container-max: 1440px;
  --container-pad: clamp(1.25rem, 4vw, 4rem);
  --header-h: 84px;
}
