/* ============================================
   DESIGN TOKENS — ALEX Realitná kancelária
   ============================================ */

:root {
  /* Brand Colors */
  --color-red:        #C41E3A;
  --color-red-dark:   #9B1B30;
  --color-red-light:  #E8364F;
  --color-red-glass:  rgba(196, 30, 58, 0.12);
  --color-red-glow:   rgba(196, 30, 58, 0.25);

  /* Blue accent */
  --color-blue:       #1B4F8A;
  --color-blue-dark:  #153D6B;
  --color-blue-light: #2E6DB4;
  --color-blue-glass: rgba(27, 79, 138, 0.12);
  --color-blue-glow:  rgba(27, 79, 138, 0.25);

  /* Neutrals */
  --color-dark:       #111111;
  --color-dark-2:     #1e1e1e;
  --color-dark-3:     #2a2a2a;
  --color-gray:       #6b7280;
  --color-gray-light: #9ca3af;
  --color-border:     #e5e7eb;
  --color-bg:         #fafafa;
  --color-white:      #ffffff;

  /* Typography */
  --font-display: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', 'Inter', sans-serif;

  --text-xs:   0.72rem;
  --text-sm:   0.85rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.35rem;
  --text-2xl:  1.75rem;
  --text-3xl:  2.25rem;
  --text-4xl:  3rem;
  --text-5xl:  4rem;
  --text-hero: clamp(3rem, 7vw, 5.5rem);

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container-max: 1200px;
  --container-wide: 1400px;

  /* Borders */
  --radius-sm:  6px;
  --radius-md:  10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm:  0 1px 8px rgba(0,0,0,0.06);
  --shadow-md:  0 4px 24px rgba(0,0,0,0.10);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.15);
  --shadow-red: 0 8px 32px rgba(196,30,58,0.20);
  --shadow-blue: 0 8px 32px rgba(27,79,138,0.20);

  /* Transitions */
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0, 0, 0.2, 1);
  --duration:   0.3s;
  --duration-slow: 0.6s;
}
