/* Minuciosa Theme - Warm Beige/Cream */
:root {
  /* Primary Brand Colors */
  --theme-primary: #2C2C2C;
  --theme-primary-hover: #1a1a1a;
  --theme-primary-light: #444444;
  --theme-primary-dark: #000000;
  
  /* Secondary Colors */
  --theme-secondary: #6b7280;
  --theme-secondary-light: #9ca3af;
  --theme-secondary-dark: #4b5563;
  
  /* Neutral Colors */
  --theme-white: #ffffff;
  --theme-gray-50: #FAF9F7;
  --theme-gray-100: #F7F5F3;
  --theme-gray-200: #F5F0E8;
  --theme-gray-300: #E8DCC6;
  --theme-gray-400: #D4C5A9;
  --theme-gray-500: #777777;
  --theme-gray-600: #666666;
  --theme-gray-700: #4a5568;
  --theme-gray-800: #333333;
  --theme-gray-900: #2C2C2C;
  
  /* Status Colors */
  --theme-success: #10b981;
  --theme-warning: #f59e0b;
  --theme-error: #ef4444;
  --theme-info: #3b82f6;
  
  /* Header Colors */
  --theme-header-bg: #F7F5F3;
  --theme-header-text: #2C2C2C;
  --theme-header-border: #E8DCC6;
  
  /* Menu Colors */
  --theme-menu-bg: #E8DCC6;
  --theme-menu-text: #2C2C2C;
  
  /* Transparency Values */
  --theme-overlay: rgba(0, 0, 0, 0.5);
  --theme-shadow-light: rgba(0, 0, 0, 0.05);
  --theme-shadow-medium: rgba(0, 0, 0, 0.1);
  --theme-shadow-dark: rgba(0, 0, 0, 0.15);
  --theme-shadow-modal: rgba(0, 0, 0, 0.25);
  
  /* Semi-transparent whites for overlays */
  --theme-white-10: rgba(255, 255, 255, 0.1);
  --theme-white-20: rgba(255, 255, 255, 0.2);
  --theme-white-30: rgba(255, 255, 255, 0.3);
  --theme-white-50: rgba(255, 255, 255, 0.5);
}
