/* You can add global styles to this file, and also import other style files */


@import url('https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Outfit:wght@100..900&display=swap');

:root {
  /* Brand Colors */
  --color-primary: #c0562f;
  --color-primary-hover: #a04625;
  --color-primary-light: #fdf0ec;
  
  /* Neutral Colors */
  --color-text-main: #333333;
  --color-text-dark: #111111;
  --color-text-muted: #555555;
  --color-text-light: #666666;
  --color-bg-light: #f8fbff;
  --color-bg-card: #f8f9fa;
  --color-white: #ffffff;
  --color-black: #1a1a1a;
  
  --color-bg-main: #ffffff;
  --color-border: #eaeaea;
  --color-card-light: #f7f3ed;
  --color-card-secondary: #f7f3ed;
  --color-divider: #eeeeee;
  --color-bg-consultation: #f7f3ed;
  --color-bg-overlay: rgba(245, 245, 245, 0.95);
  --color-bg-badge: rgba(255, 255, 255, 0.9);
  --color-green: #7b947c;

[data-theme="dark"] .logo-image:not(footer .logo-image) {
  filter: brightness(0) invert(1);
}

  /* Typography */
  --font-family-base: 'Figtree', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-family-heading: 'Outfit', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-size-xs: 0.875rem;
  --font-size-sm: 1rem;
  --font-size-md: 1.1rem;
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2.5rem;
  --font-size-3xl: 3.5rem;
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 0.75rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  --spacing-4xl: 5rem;
  
  /* Components */
  --btn-radius: 6px;
  --btn-padding-y: var(--spacing-xs);
  --btn-padding-x: var(--spacing-md);
  --btn-padding-y-lg: var(--spacing-sm);
  --btn-padding-x-lg: var(--spacing-lg);
  
  --card-radius: 12px;
  --card-shadow-hover: 0 10px 20px rgba(0,0,0,0.05);
}

[data-theme="dark"] {
  --color-text-main: #e0e0e0;
  --color-text-dark: #ffffff;
  --color-text-muted: #aaaaaa;
  --color-text-light: #999999;
  --color-bg-light: #1e1e1e;
  --color-bg-card: #2a2a2a;
  --color-white: #121212;
  --color-black: #ffffff;
  
  --color-bg-main: #121212;
  --color-border: #333333;
  --color-card-light: #1e1e1e;
  --color-card-secondary: #1e1e1e;
  --color-divider: #333333;
  --color-bg-consultation: #1a1a1a;
  --color-bg-overlay: rgba(30, 30, 30, 0.95);
  --color-bg-badge: rgba(30, 30, 30, 0.9);
}

/* Reset default browser margins and padding */
html, body {
  margin: 0;
  padding: 0;
  width: 100%;
  /* Removing height: 100% and overflow-x: hidden as they can trap the scroll inside body instead of window, breaking HostListener('window:scroll') */
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-heading);
  font-weight: 500;
}

















