/* =================================================================
   TOKENS.CSS — Design tokens / CSS variables
   Fame Sosyal Medya — Siyah / Gold Premium
   ================================================================= */

:root {
  /* ── Renkler: Arka Plan ────────────────────────────────────── */
  --color-bg:           #09090B;      /* Derin siyah */
  --color-bg-alt:       #111113;      /* Hafif açık katman */
  --color-surface:      #18181B;      /* Kart/bölüm yüzeyi */
  --color-surface-2:    #1F1F23;      /* Hover, ikincil yüzey */
  --color-surface-3:    #27272A;      /* Üçüncül yüzey */
  --color-border:       rgba(255, 255, 255, 0.07);
  --color-border-light: rgba(255, 255, 255, 0.12);
  --color-border-gold:  rgba(212, 175, 55, 0.25);

  /* ── Renkler: Gold Palette ──────────────────────────────────── */
  --color-gold:         #D4AF37;
  --color-gold-light:   #F0CC55;
  --color-gold-dark:    #9A7A1A;
  --color-gold-subtle:  #A8861E;
  --color-gold-glow:    rgba(212, 175, 55, 0.10);
  --color-gold-glow-md: rgba(212, 175, 55, 0.20);
  --color-gold-glow-lg: rgba(212, 175, 55, 0.35);

  /* ── Renkler: Metin ─────────────────────────────────────────── */
  --color-text:         #F4F4F5;
  --color-text-muted:   rgba(244, 244, 245, 0.60);
  --color-text-subtle:  rgba(244, 244, 245, 0.35);
  --color-text-inverse: #09090B;

  /* ── Renkler: Durum ─────────────────────────────────────────── */
  --color-success:      #22C55E;
  --color-error:        #EF4444;
  --color-warning:      #F59E0B;
  --color-info:         #3B82F6;

  /* ── Tipografi ──────────────────────────────────────────────── */
  --font-heading: 'Plus Jakarta Sans', 'DM Sans', system-ui, -apple-system, sans-serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --text-xs:   0.6875rem;  /* 11px */
  --text-sm:   0.8125rem;  /* 13px */
  --text-base: 0.9375rem;  /* 15px */
  --text-md:   1rem;       /* 16px */
  --text-lg:   1.125rem;   /* 18px */
  --text-xl:   1.25rem;    /* 20px */
  --text-2xl:  1.5rem;     /* 24px */
  --text-3xl:  1.875rem;   /* 30px */
  --text-4xl:  2.25rem;    /* 36px */
  --text-5xl:  3rem;       /* 48px */
  --text-6xl:  3.75rem;    /* 60px */
  --text-7xl:  4.5rem;     /* 72px */

  /* ── Layout ─────────────────────────────────────────────────── */
  --container-max: 1200px;
  --container-px:  24px;
  --header-h:      68px;
  --mobile-nav-h:  64px;

  /* ── Spacing ────────────────────────────────────────────────── */
  --space-1:  4px;
  --space-2:  8px;
  --space-3:  12px;
  --space-4:  16px;
  --space-5:  20px;
  --space-6:  24px;
  --space-8:  32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
  --space-section: 90px;

  /* ── Radius ─────────────────────────────────────────────────── */
  --radius-xs:  4px;
  --radius-sm:  8px;
  --radius-md:  12px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-2xl: 32px;
  --radius-pill: 999px;

  /* ── Shadows ────────────────────────────────────────────────── */
  --shadow-sm:   0 1px 4px rgba(0, 0, 0, 0.6);
  --shadow-md:   0 4px 16px rgba(0, 0, 0, 0.55);
  --shadow-lg:   0 8px 32px rgba(0, 0, 0, 0.60);
  --shadow-xl:   0 16px 48px rgba(0, 0, 0, 0.70);
  --shadow-gold: 0 4px 20px rgba(212, 175, 55, 0.30);
  --shadow-gold-lg: 0 8px 40px rgba(212, 175, 55, 0.40);

  /* ── Transitions ────────────────────────────────────────────── */
  --dur-fast:   120ms;
  --dur-base:   220ms;
  --dur-slow:   380ms;
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);
}
