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

:root {
  /* Colors - Light Mode */
  --color-primary: #881337;
  --color-primary-hover: #9f1239;
  --color-accent: #b45309;
  --color-accent-hover: #92400e;
  --color-background: #fffbf7;
  --color-backgroundAlt: #fff1e6;
  --color-text: #44403c;
  --color-textMuted: #78716c;
  --color-textLight: #a8a29e;
  --color-border: #f5d0c5;
  --color-success: #059669;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 136 19 55;
  --color-accent-rgb: 180 83 9;

  /* Typography */
  --font-family: Lato, system-ui, sans-serif;
  --font-display: Bodoni Moda, Georgia, serif;
  --font-weight-heading: 500;
  --font-weight-body: 400;

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

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(136, 19, 55, 0.2);
  --shadow-button: 0 10px 30px -10px rgba(136, 19, 55, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(180, 83, 9, 0.25);

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

/* Colors - Dark Mode */
html.dark {
  --color-primary: #fb7185;
  --color-primary-hover: #fda4af;
  --color-accent: #f59e0b;
  --color-accent-hover: #fbbf24;
  --color-background: #1c1017;
  --color-backgroundAlt: #2d1f24;
  --color-text: #fef2f2;
  --color-textMuted: #fecdd3;
  --color-textLight: #e7e5e4;
  --color-border: #4c1d2f;
  --color-success: #34d399;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 251 113 133;
  --color-accent-rgb: 245 158 11;
}
