/* ===================================================================
   SMART POOL & PERGOLA — DESIGN TOKENS
   Locked to approved Brand Guidelines (2026). Do not introduce new
   colors, fonts, radii or spacing values outside this file.
=================================================================== */

:root {
  /* ---- Brand Colors (from official Brand Guidelines) ---- */
  --color-primary:      #0C2A3B; /* Navy — structure, headers, buttons */
  --color-secondary:    #C3D8E4; /* Light blue — alternating sections */
  --color-accent:       #67AAE3; /* Sky blue — interactive/hover states */
  --color-bg-light:     #E5E6E7; /* Neutral light background */
  --color-white:        #FFFFFF;
  --color-black:        #000000;

  /* Derived tints/shades (generated FROM brand colors only) */
  --color-primary-08:   rgba(12, 42, 59, 0.08);
  --color-primary-60:   rgba(12, 42, 59, 0.6);
  --color-primary-85:   rgba(12, 42, 59, 0.88);
  --color-accent-15:    rgba(103, 170, 227, 0.15);
  --color-white-70:     rgba(255, 255, 255, 0.7);

  /* ---- Typography ---- */
  --font-en: 'Outfit', sans-serif;
  --font-ar: 'Tajawal', sans-serif;

  /* ---- Spacing System (8px base — no arbitrary values) ---- */
  --space-1: 8px;
  --space-2: 16px;
  --space-3: 24px;
  --space-4: 32px;
  --space-5: 48px;
  --space-6: 64px;
  --space-7: 96px;
  --space-8: 128px;

  /* ---- Radii (soft, never fully round — luxury restraint) ---- */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;

  /* ---- Shadows (barely-there, never heavy) ---- */
  --shadow-sm: 0 2px 12px rgba(12, 42, 59, 0.06);
  --shadow-md: 0 8px 32px rgba(12, 42, 59, 0.10);
  --shadow-lg: 0 20px 60px rgba(12, 42, 59, 0.16);

  /* ---- Layout ---- */
  --container-max: 1400px;
  --header-height: 92px;

  /* ---- Motion ---- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-fast: 0.25s;
  --dur-base: 0.5s;
  --dur-slow: 0.9s;
}
