/* ============================================================
   RED ISLAND PADEL VILLAGE — Design Tokens
   ============================================================ */

:root {
  /* Palette */
  --c-white:       #FFFFFF;
  --c-off-white:   #F7F7F5;
  --c-gray-50:     #F2F2F0;
  --c-gray-100:    #E8E8E4;
  --c-gray-300:    #C0BFBA;
  --c-gray-500:    #8A8984;
  --c-gray-700:    #4A4947;
  --c-black:       #1A1917;

  --c-orange:      #E8500A;   /* énergie, CTA principal */
  --c-orange-dark: #C43E06;
  --c-orange-light:#FF6B2B;
  --c-yellow:      #F5C842;   /* accent balle de padel */
  --c-yellow-light:#FFF3C4;

  /* Typography */
  --font-display: 'Barlow Condensed', sans-serif;
  --font-body:    'Inter', sans-serif;

  /* Scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  1.875rem;
  --text-4xl:  2.25rem;
  --text-5xl:  3rem;
  --text-6xl:  3.75rem;
  --text-7xl:  4.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;
  --space-32: 8rem;

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

  /* Shadows */
  --shadow-sm:  0 1px 3px rgba(26,25,23,0.06), 0 1px 2px rgba(26,25,23,0.04);
  --shadow-md:  0 4px 16px rgba(26,25,23,0.08), 0 2px 6px rgba(26,25,23,0.05);
  --shadow-lg:  0 16px 48px rgba(26,25,23,0.12), 0 4px 16px rgba(26,25,23,0.06);
  --shadow-xl:  0 24px 64px rgba(26,25,23,0.16);

  /* Transitions */
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.45, 0, 0.55, 1);
  --duration-fast:   150ms;
  --duration-base:   250ms;
  --duration-slow:   400ms;

  /* Layout */
  --max-w-content: 1200px;
  --nav-height:    72px;
}
