/* ============================================
   Theme: DigitalTwinPro
   
   Customize colors, typography, and spacing below.
   Changes here affect all pages automatically.
   ============================================ */

:root {
  /* Colors - Light Mode */
  --color-primary: #0e7490;
  --color-primary-hover: #155e75;
  --color-accent: #db2777;
  --color-accent-hover: #be185d;
  --color-background: #ffffff;
  --color-backgroundAlt: #f8fafc;
  --color-text: #0f172a;
  --color-textMuted: #475569;
  --color-textLight: #64748b;
  --color-border: #e2e8f0;
  --color-success: #059669;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 14 116 144;
  --color-accent-rgb: 219 39 119;

  /* Typography */
  --font-family: Rajdhani, system-ui, sans-serif;
  --font-display: Orbitron, system-ui, sans-serif;
  --font-weight-heading: 700;
  --font-weight-body: 500;

  /* Spacing */
  --radius: 0.25rem;
  --radius-small: 0.125rem;
  --radius-large: 0.5rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(6, 182, 212, 0.3);
  --shadow-button: 0 10px 30px -10px rgba(6, 182, 212, 0.6);
  --shadow-hover: 0 20px 50px -15px rgba(236, 72, 153, 0.4);

  /* Button Style */
  --button-radius: 0.5rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #22d3ee;
  --color-primary-hover: #67e8f9;
  --color-accent: #f472b6;
  --color-accent-hover: #f9a8d4;
  --color-background: #000000;
  --color-backgroundAlt: #0a0a0a;
  --color-text: #ffffff;
  --color-textMuted: #d1d5db;
  --color-textLight: #d1d5db;
  --color-border: #1f2937;
  --color-success: #34d399;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 34 211 238;
  --color-accent-rgb: 244 114 182;
}
