@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Syne:wght@600;700;800&display=swap');

:root {
  /* Color Palette */
  --bg-primary: #050505;
  --bg-secondary: #0c0c0e;
  --bg-tertiary: #141416;
  --bg-card: rgba(18, 18, 20, 0.7);
  --bg-glass: rgba(12, 12, 14, 0.65);
  
  --text-primary: #ffffff;
  --text-secondary: #a3a3a3;
  --text-muted: #666666;
  
  /* Gold Accents (Luxury Theme) */
  --gold-primary: #d4af37;
  --gold-hover: #e5c158;
  --gold-dark: #aa882c;
  --gold-light: #f3e5ab;
  --gold-gradient: linear-gradient(135deg, #d4af37 0%, #aa882c 50%, #f3e5ab 100%);
  --gold-glow: 0 0 20px rgba(212, 175, 55, 0.25);
  --gold-glow-intense: 0 0 35px rgba(212, 175, 55, 0.55);
  
  /* Dark Navy Accents */
  --navy-accent: #0f172a;
  --navy-light: #1e293b;
  
  /* UI Border & Shadows */
  --border-glass: rgba(212, 175, 55, 0.15);
  --border-light: rgba(255, 255, 255, 0.08);
  --border-active: rgba(212, 175, 55, 0.4);
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.7);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.85);
  --shadow-gold: 0 8px 30px rgba(212, 175, 55, 0.1);
  
  /* Typography */
  --font-headings: 'Syne', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  /* Layout Dimensions */
  --header-height: 80px;
  --max-width: 1400px;
  --border-radius-sm: 4px;
  --border-radius-md: 8px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Motion & Animations */
  --transition-fast: all 0.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-medium: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-slow: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
