@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
  /* Central Theme Colors matching the Logo */
  --color-primary: #00a859;        /* Brand Roof Green */
  --color-primary-dark: #008a47;   /* Hover Dark Green */
  --color-primary-light: #e6f7ee;  /* Light Mint Highlight */
  --color-accent: #b45309;         /* Amber/Bronze Gold from Logo Text */
  --color-accent-light: #fef3c7;   /* Light Amber BG */
  --color-warning: #f59e0b;

  /* Sage Green — User's chosen complementary color */
  --color-sage: #d4e0a8;           /* Soft sage/olive green — section backgrounds */
  --color-sage-dark: #b8ca7e;      /* Darker sage for borders/accents */
  --color-sage-light: #f0f5df;     /* Very light sage for alternating rows */

  /* Neutral Palette (Light Theme according to Logo) */
  --color-bg: #f6f9ee;             /* Off-white sage background */
  --color-surface: #ffffff;        /* Pure White for cards */
  --color-surface-hover: #edf2d5;  /* Very soft sage hover */
  --color-border: #d5e8b0;         /* Soft sage-green border */
  --color-text: #334155;           /* Slate 700 for body text */
  --color-text-dark: #0f172a;      /* Slate 900 for headings */
  --color-text-muted: #64748b;     /* Slate 500 for muted labels */



  /* Premium Typography System */
  --font-base: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  
  /* Fluid Typography using clamp() */
  --fs-xs: clamp(0.75rem, 0.2vw + 0.7rem, 0.875rem);
  --fs-sm: clamp(0.875rem, 0.3vw + 0.8rem, 0.95rem);
  --fs-base: clamp(1rem, 0.4vw + 0.9rem, 1.0625rem);
  --fs-h4: clamp(1.125rem, 0.6vw + 1rem, 1.25rem);
  --fs-h3: clamp(1.25rem, 0.8vw + 1.1rem, 1.5rem);
  --fs-h2: clamp(1.75rem, 2vw + 1.3rem, 2.25rem);
  --fs-h1: clamp(2.5rem, 4vw + 1.8rem, 3.75rem);
  
  --lh-base: 1.6;
  --lh-heading: 1.25;

  /* Consistent Spacing Scale */
  --space-0: 0;
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 1rem;
  --space-4: 1.5rem;
  --space-5: 2rem;
  --space-6: 3rem;
  --space-7: 4.5rem;
  --space-8: 6rem;

  /* Modern Design Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  /* Premium Shadows & Blur */
  --shadow-sm: 0 2px 8px rgba(0, 168, 89, 0.03);
  --shadow-md: 0 10px 25px -5px rgba(0, 168, 89, 0.05), 0 8px 16px -6px rgba(0, 168, 89, 0.02);
  --shadow-lg: 0 20px 40px -15px rgba(15, 23, 42, 0.1);
  --shadow-glow: 0 4px 20px rgba(0, 168, 89, 0.25);
  
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  
  --glass-bg: rgba(255, 255, 255, 0.85);
  --glass-border: rgba(255, 255, 255, 0.5);
  

}

/* Global Reset & Base Layout Rules */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  font-family: var(--font-base);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  background: var(--color-bg);
  color: var(--color-text);
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  color: var(--color-text-dark);
  font-weight: 700;
  line-height: var(--lh-heading);
  letter-spacing: -0.02em;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition-fast);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--space-4);
  padding-right: var(--space-4);
}

.section {
  padding-top: var(--space-6);
  padding-bottom: var(--space-6);
}

@media (min-width: 768px) {
  .section {
    padding-top: var(--space-7);
    padding-bottom: var(--space-7);
  }
}
