/* ============================================================
   BRAND.CSS — Eco Pelouse Estrie
   Inspired by: gazonquebec.com | Brand colors: Xavier's green + yellow
   ============================================================ */

:root {
  /* ---- Brand Colors ---- */
  --color-primary:       #2E7D32;
  --color-primary-dark:  #1B5E20;
  --color-primary-light: #4CAF50;
  --color-accent:        #F9C418;
  --color-accent-dark:   #E6B000;

  /* ---- Backgrounds (LIGHT theme) ---- */
  --color-bg:            #FFFFFF;
  --color-bg-alt:        #F4F7F4;
  --color-bg-green:      #2E7D32;
  --color-bg-dark:       #0D1A0D;
  --color-bg-deep:       #060E06;

  /* ---- Text ---- */
  --color-text:          #1A1A1A;
  --color-text-muted:    #555F55;
  --color-text-white:    #FFFFFF;
  --color-text-light:    rgba(255,255,255,0.75);

  /* ---- Borders ---- */
  --color-border:        #E0E8E0;
  --color-border-dark:   rgba(255,255,255,0.12);

  /* ---- Typography ---- */
  --font-display: 'Roboto Slab', 'Georgia', 'Times New Roman', serif;
  --font-body:    'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  /* Display (hero/headings) */
  --text-display-xl: clamp(3rem,   8vw,  6rem);
  --text-display-lg: clamp(2.2rem, 5vw,  3.8rem);
  --text-display-md: clamp(1.8rem, 3.5vw,2.8rem);

  /* Body scale */
  --text-xs:   0.75rem;
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;

  /* ---- Spacing ---- */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* ---- Shape — SHARP like GazonQC ---- */
  --radius-none: 0px;
  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-full: 9999px;

  /* ---- Shadows ---- */
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg:  0 8px 40px rgba(0,0,0,0.18);

  /* ---- Transitions ---- */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;

  /* ---- Layout ---- */
  --container-max: 1200px;
  --container-pad: clamp(1rem, 5vw, 2.5rem);
  --nav-height: 68px;
}
