/* ⭐ MANORELI HELP CENTRE — DESIGN TOKENS. Change these values to update the entire site design. */
:root {
  /* ==========================================================================
     COLORS
     ========================================================================== */
  /* Backgrounds */
  --color-bg-primary: #FFFFFF; /* Main background color */
  --color-bg-secondary: #F3EFE9; /* Warm cream/beige for secondary sections */
  --color-surface: #FFFFFF; /* Card/surface backgrounds */
  
  /* Brand Accents */
  --color-accent: #596B57; /* Primary/CTA - Olive/sage green */
  --color-accent-hover: #485646; /* Darker shade for hover states */
  --color-accent-2: #A86F58; /* Secondary - Warm brown/terracotta */
  --color-accent-2-hover: #8A5B47; /* Darker secondary for hover states */
  
  /* Text */
  --color-text-main: #1A1A1A; /* Near black for main text */
  --color-text-muted: #555555; /* Secondary text, descriptions */
  --color-text-inverse: #FFFFFF; /* Text on dark/accent backgrounds */
  
  /* Interactive */
  --color-link: var(--color-accent); /* Text links */
  --color-link-hover: var(--color-accent-hover);
  --color-border: #E5E0DA; /* Default border color */
  --color-border-hover: var(--color-accent);
  
  /* Status */
  --color-success: #4CAF50;
  --color-error: #D32F2F;
  --color-warning: #F57C00;
  --color-info: #1976D2;

  /* ==========================================================================
     TYPOGRAPHY
     ========================================================================== */
  /* Font Families */
  --font-family-heading: 'Lora', serif;
  --font-family-body: 'Questrial', sans-serif;
  
  /* Font Sizes */
  --font-size-xs: 0.75rem;     /* 12px */
  --font-size-sm: 0.875rem;    /* 14px */
  --font-size-base: 1rem;      /* 16px */
  --font-size-lg: 1.125rem;    /* 18px */
  --font-size-xl: 1.25rem;     /* 20px */
  --font-size-2xl: 1.5rem;     /* 24px */
  --font-size-3xl: 2rem;       /* 32px */
  --font-size-4xl: 2.5rem;     /* 40px */
  --font-size-5xl: 3rem;       /* 48px */
  --font-size-display: 4rem;   /* 64px - Max for display */
  
  /* Line Heights */
  --line-height-tight: 1.2;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.7;
  
  /* Font Weights */
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* ==========================================================================
     SPACING
     ========================================================================== */
  --spacing-xs: 0.25rem;       /* 4px */
  --spacing-sm: 0.5rem;        /* 8px */
  --spacing-md: 1rem;          /* 16px */
  --spacing-lg: 1.5rem;        /* 24px */
  --spacing-xl: 2rem;          /* 32px */
  --spacing-2xl: 3rem;         /* 48px */
  --spacing-3xl: 4rem;         /* 64px */
  --spacing-4xl: 6rem;         /* 96px */
  
  /* ==========================================================================
     LAYOUT
     ========================================================================== */
  /* Container Widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1200px;
  
  /* ==========================================================================
     BORDERS & SHADOWS
     ========================================================================== */
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-subtle: 0 2px 8px rgba(26, 26, 26, 0.04);
  --shadow-medium: 0 4px 16px rgba(26, 26, 26, 0.08);
  --shadow-elevated: 0 12px 32px rgba(26, 26, 26, 0.12);
  
  /* ==========================================================================
     TRANSITIONS
     ========================================================================== */
  --transition-fast: 150ms ease-in-out;
  --transition-normal: 250ms ease-in-out;
  --transition-slow: 400ms ease-in-out;
  
  /* ==========================================================================
     Z-INDEX
     ========================================================================== */
  --z-base: 0;
  --z-elevated: 10;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;
  --z-toast: 500;
}
