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

:root {
  /* Colors - Light Mode */
  --color-primary: #18181b;
  --color-primary-hover: #27272a;
  --color-accent: #e11d48;
  --color-accent-hover: #be123c;
  --color-background: #fafafa;
  --color-backgroundAlt: #ffffff;
  --color-text: #09090b;
  --color-textMuted: #52525b;
  --color-textLight: #71717a;
  --color-border: #e4e4e7;
  --color-success: #16a34a;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 24 24 27;
  --color-accent-rgb: 225 29 72;

  /* Typography */
  --font-family: DM Sans, system-ui, sans-serif;
  --font-display: Playfair Display, Georgia, serif;
  --font-weight-heading: 500;
  --font-weight-body: 400;

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

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(0, 0, 0, 0.12);
  --shadow-button: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 20px 50px -15px rgba(0, 0, 0, 0.2);

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

/* Colors - Dark Mode */
html.dark {
  --color-primary: #fafafa;
  --color-primary-hover: #e4e4e7;
  --color-accent: #fb7185;
  --color-accent-hover: #fda4af;
  --color-background: #09090b;
  --color-backgroundAlt: #18181b;
  --color-text: #fafafa;
  --color-textMuted: #a1a1aa;
  --color-textLight: #71717a;
  --color-border: #27272a;
  --color-success: #4ade80;
  --color-error: #f87171;

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