/* Design tokens extracted from Figma design */

/* Sentient font family */
@font-face {
  font-family: "Sentient";
  src: url("/fonts/Sentient-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Sentient";
  src: url("/fonts/Sentient-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  /* Colors from Figma design */
  --color-bg: #EEE7D4;
  --color-text: #693000;
  --color-accent: #4f3b2a;
  
  /* Typography - Sentient as primary */
  --font-family-primary: "Sentient", Georgia, "Times New Roman", serif;
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1.125rem; /* 18px default */
  --font-size-lg: 1.25rem; /* 20px */
  --font-size-xl: 1.375rem; /* 22px */
  --font-size-2xl: 1.5rem; /* 24px */
  --font-size-3xl: 1.875rem; /* 30px */
  --font-size-4xl: 2.25rem; /* 36px */
  --font-size-hero: 3rem; /* 48px */
  
  /* Logo size: ~24-28px */
  --font-size-logo: 1.75rem; /* 28px */
  
  /* Navigation size: ~18-20px */
  --font-size-nav: 1.125rem; /* 18px */
  
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.6; /* Generous for body text */
  
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  
  /* Spacing - 24px base padding */
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 20px;
  --space-6: 24px;
  --space-8: 32px;
  --space-10: 40px;
  --space-12: 48px;
  --space-16: 64px;
  --space-20: 80px;
  --space-24: 96px;
}
