/* calendar-standalone/public/css/styles.local.css */
/**
 * Local customization stylesheet for calendar-standalone
 * 
 * This file is NOT tracked by git and allows per-site customization.
 * Only contains CSS variables for fonts, colors, and sizes.
 * 
 * Current configuration: orlplus.ro styling
 */

:root {
  /* Font Family - System font stack matching orlplus.ro */
  --font-family: -apple-system, "system-ui", "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol";
  
  /* Font Sizes */
  --font-size-base: 16px;
  --font-size-small: 14px;
  --font-size-label: 0.9rem;
  --line-height: 1.65;
  
  /* Colors - orlplus.ro palette */
  --color-text: #355575;              /* Body text - rgb(53, 85, 117) */
  --color-heading: #24417c;           /* Headings - rgb(36, 65, 124) */
  --color-link: #3a5da5;              /* Links - rgb(58, 93, 165) */
  --color-muted: #6c8399;             /* Muted/secondary text */
  --color-placeholder: #8ba1b5;       /* Placeholder text */
  
  /* Primary brand color */
  --color-primary: #24417c;
  --color-primary-hover: #1a3160;
  --color-primary-light: rgba(36, 65, 124, 0.1);
  --color-primary-lighter: rgba(36, 65, 124, 0.05);
}
