/* ============================================
   DAKHLA INVEST AGENCY - CSS VARIABLES
   Palette "Sahara Lagune Luxe"
   ============================================ */

:root {
  /* Primary Palette */
  --bleu-marine: #1A1A2E;
  --bleu-marine-light: #2A2A3E;
  --bleu-marine-dark: #0F0F1E;
  --or-saharien: #C9A96E;
  --or-saharien-light: #D4AF37;
  --or-saharien-dark: #A88B5A;
  --vert-lagon: #2A9D8F;
  --vert-lagon-light: #3CB3A5;
  --vert-lagon-dark: #1F7A70;

  /* Neutrals */
  --blanc-casse: #F5F0E8;
  --blanc-pur: #FFFFFF;
  --gris-texte: #4A5568;
  --gris-leger: #E5E0D8;
  --gris-moyen: #94A3B8;
  --gris-fonce: #2D3748;
  --noir: #1A1A2E;

  /* Semantic Colors */
  --succes: var(--vert-lagon);
  --succes-light: #e6f5f0;
  --erreur: #dc3545;
  --erreur-light: #f8d7da;
  --attention: var(--or-saharien);
  --attention-light: #fff3cd;
  --info: #17a2b8;
  --info-light: #d1ecf1;

  /* Status Colors */
  --status-nouveau: #28a745;
  --status-exclusif: var(--or-saharien);
  --status-offplan: var(--bleu-marine);
  --status-vendu: #dc3545;
  --status-reserve: #fd7e14;

  /* Typography */
  --font-titre: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-corps: 'Inter', 'Montserrat', Arial, sans-serif;

  /* Font Sizes */
  --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;

  /* Line Heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --leading-loose: 2;

  /* 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;

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

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
  --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.05);
  --shadow-lg: 0 10px 25px rgba(0,0,0,0.1), 0 6px 10px rgba(0,0,0,0.08);
  --shadow-xl: 0 20px 40px rgba(0,0,0,0.15), 0 10px 20px rgba(0,0,0,0.1);
  --shadow-gold: 0 4px 20px rgba(201,169,110,0.3);
  --shadow-bleu: 0 4px 20px rgba(26,26,46,0.3);

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;

  /* Z-Index Scale */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-tooltip: 400;
  --z-toast: 500;

  /* Container */
  --container-max: 1280px;
  --container-padding: 1.5rem;
}

/* RTL Support */
[dir="rtl"] {
  --text-start: right;
  --text-end: left;
  --flex-reverse: row-reverse;
}

[dir="ltr"] {
  --text-start: left;
  --text-end: right;
  --flex-reverse: row;
}

/* Site is light-theme only (reference: demoh.max125.com/dakhla2) */
