/* ==========================================================
   Najmat Damietta Furniture — Design Tokens & Variables
   ========================================================== */

:root {
  /* Rich Wood & Royal Dark Palette */
  --bg-primary: #0d0a08;
  --bg-secondary: #16110c;
  --bg-tertiary: #201712;
  
  --card-bg: rgba(28, 20, 15, 0.75);
  --card-border: rgba(212, 175, 55, 0.15);
  --glass-bg: rgba(19, 14, 10, 0.85);
  --glass-border: rgba(212, 175, 55, 0.25);
  
  --text-primary: #fdfbf7;
  --text-secondary: #d1c5b8;
  --text-muted: #9e8f80;
  
  --royal-blue: #b38628;
  --royal-blue-hover: #c49632;
  --royal-blue-glow: rgba(179, 134, 40, 0.4);
  
  --gold-accent: #d4af37;
  --gold-hover: #e5be46;
  --gold-glow: rgba(212, 175, 55, 0.4);
  --wood-accent: #8b5a2b;
  --wood-glow: rgba(139, 90, 43, 0.3);
  
  --white: #ffffff;
  --black: #000000;
  
  /* Typography */
  --font-heading: 'Cairo', 'Outfit', sans-serif;
  --font-body: 'Cairo', 'Inter', sans-serif;
  
  /* Spacing */
  --section-padding: 90px 0;
  --container-max: 1320px;
  
  /* Shadows */
  --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 10px 25px rgba(0, 0, 0, 0.6);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.8);
  --shadow-glow: 0 0 30px var(--gold-glow);
  --shadow-blue-glow: 0 0 25px var(--royal-blue-glow);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  
  /* Border Radius */
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 28px;
  --radius-full: 9999px;
}

