/**
 * @file
 * CSS Custom Properties (variables) for Patnis V3 theme.
 */

:root {
  /* Color Palette */
  --color-background: #FFF8EE;
  --color-main-accent: #2A5E4A;
  --color-text-primary: #000000;
  --color-accent-yellow: #F1B01D;
  --color-accent-orange: #FF9068;
  --color-accent-purple: #8E9DFF;
  
  /* Font Families */
  --font-family-serif: 'Source Serif Pro', serif;
  --font-family-sans: 'TT Norms Pro', sans-serif;
  
  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Line Heights */
  --line-height-body: 1.6;
  --line-height-heading: 1.2;
  
  /* Font Sizes */
  --font-size-base: 1rem;
  --font-size-lg: 1.125rem;
  --font-size-sm: 0.875rem;
  
  /* Typography Classes */
  --heading-font-family: var(--font-family-sans);
  --heading-font-weight: var(--font-weight-bold);
  --heading-line-height: var(--line-height-heading);
  
  --body-font-family: var(--font-family-serif);
  --body-font-weight: var(--font-weight-normal);
  --body-line-height: var(--line-height-body);
} 