:root {
  /* Modern Primary Colors */
  --primary-maroon: #8B0000;
  --primary-dark-red: #660000;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #F2CC54;
  --accent-glow: rgba(212, 175, 55, 0.4);
  
  /* Neutral Colors & Glass */
  --white: #FFFFFF;
  --white-glass: rgba(255, 255, 255, 0.85);
  --white-glass-strong: rgba(255, 255, 255, 0.95);
  --light-gray: #F4F5F7;
  --medium-gray: #D1D5DB;
  --dark-gray: #374151;
  --charcoal: #1F2937;
  --charcoal-glass: rgba(31, 41, 55, 0.85);
  --text-dark: #111827;
  --text-light: #F9FAFB;
  
  /* Semantic Colors */
  --success-green: #10B981;
  --warning-yellow: #F59E0B;
  --error-red: #EF4444;
  
  /* Typography */
  --font-heading: 'Poppins', 'Inter', sans-serif;
  --font-body: 'Inter', 'Roboto', sans-serif;
  --font-size-h1: 3rem;
  --font-size-h2: 2.25rem;
  --font-size-h3: 1.5rem;
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;
  --line-height-body: 1.6;
  --line-height-heading: 1.2;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 5rem;
  
  /* Container Width */
  --container-max-width: 1200px;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
  --shadow-glow: 0 0 15px var(--accent-glow);
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

@media (max-width: 768px) {
  :root {
    --font-size-h1: 2.25rem;
    --font-size-h2: 1.75rem;
    --font-size-h3: 1.25rem;
    --spacing-2xl: 3rem;
  }
}
