/* ==========================================================================
   GodWana Design System - CSS Variables
   ========================================================================== */

:root {
  /* ========================================================================
     COLORS
     ======================================================================== */

  /* Primary Colors */
  --color-forest: #1A3D2E;
  --color-sage: #7D9B8C;
  --color-cream: #F8F6F2;
  --color-moss: #2D5A45;
  --color-stone: #E8E4DE;
  --color-white: #FFFFFF;

  /* Functional Colors */
  --color-success: #3D8B5F;
  --color-warning: #D4A745;
  --color-error: #C45C5C;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #F8F6F2 0%, #E8E4DE 100%);
  --gradient-card-hover: linear-gradient(180deg, rgba(26,61,46,0.02) 0%, rgba(26,61,46,0.08) 100%);
  --gradient-cta: linear-gradient(135deg, #1A3D2E 0%, #2D5A45 100%);

  /* ========================================================================
     TYPOGRAPHY
     ======================================================================== */

  --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Font Sizes - Desktop */
  --text-hero: 4rem;        /* 64px */
  --text-h2: 3rem;          /* 48px */
  --text-h3: 1.75rem;       /* 28px */
  --text-subtitle: 1.5rem;  /* 24px */
  --text-body-lg: 1.25rem;  /* 20px */
  --text-body: 1.0625rem;   /* 17px */
  --text-body-sm: 0.9375rem;/* 15px */
  --text-caption: 0.8125rem;/* 13px */
  --text-button: 1rem;      /* 16px */
  --text-nav: 0.9375rem;    /* 15px */

  /* Font Weights */
  --weight-regular: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;

  /* Line Heights */
  --leading-tight: 1.1;
  --leading-snug: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.6;
  --leading-loose: 1.7;

  /* Letter Spacing */
  --tracking-tight: -0.02em;
  --tracking-normal: 0;
  --tracking-wide: 0.01em;
  --tracking-wider: 0.05em;
  --tracking-widest: 0.1em;

  /* ========================================================================
     SPACING
     ======================================================================== */

  --space-1: 0.25rem;   /* 4px */
  --space-2: 0.5rem;    /* 8px */
  --space-3: 0.75rem;   /* 12px */
  --space-4: 1rem;      /* 16px */
  --space-5: 1.5rem;    /* 24px */
  --space-6: 2rem;      /* 32px */
  --space-7: 3rem;      /* 48px */
  --space-8: 4rem;      /* 64px */
  --space-9: 6rem;      /* 96px */
  --space-10: 8rem;     /* 128px */
  --space-11: 10rem;    /* 160px */

  /* Section Spacing */
  --section-padding-desktop: 7.5rem;  /* 120px */
  --section-padding-mobile: 4rem;     /* 64px */

  /* Container */
  --container-max: 1200px;
  --container-padding: 1.5rem;  /* 24px */
  --container-padding-mobile: 1.25rem; /* 20px */

  /* ========================================================================
     BORDER RADIUS
     ======================================================================== */

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* ========================================================================
     SHADOWS
     ======================================================================== */

  --shadow-sm: 0 1px 2px rgba(26, 61, 46, 0.04);
  --shadow-md: 0 4px 12px rgba(26, 61, 46, 0.06);
  --shadow-lg: 0 8px 24px rgba(26, 61, 46, 0.08);
  --shadow-xl: 0 16px 48px rgba(26, 61, 46, 0.10);
  --shadow-card: 0 2px 8px rgba(26, 61, 46, 0.04), 0 8px 24px rgba(26, 61, 46, 0.06);
  --shadow-hover: 0 8px 32px rgba(26, 61, 46, 0.12);
  --shadow-glow: 0 0 40px rgba(45, 90, 69, 0.15);

  /* ========================================================================
     TRANSITIONS
     ======================================================================== */

  --transition-fast: 150ms ease-out;
  --transition-base: 200ms ease-out;
  --transition-slow: 300ms ease-out;
  --transition-slower: 600ms cubic-bezier(0.16, 1, 0.3, 1);

  /* ========================================================================
     Z-INDEX
     ======================================================================== */

  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal-backdrop: 400;
  --z-modal: 500;
  --z-tooltip: 600;
}

/* ==========================================================================
   RESPONSIVE OVERRIDES
   ========================================================================== */

@media (max-width: 1024px) {
  :root {
    --text-hero: 2.5rem;      /* 40px */
    --text-h2: 2rem;          /* 32px */
    --text-h3: 1.5rem;        /* 24px */
    --text-subtitle: 1.25rem; /* 20px */
    --text-body-lg: 1.125rem; /* 18px */
    --text-body: 1rem;        /* 16px */
    --text-body-sm: 0.875rem; /* 14px */
    --text-caption: 0.75rem;  /* 12px */
    --text-button: 0.9375rem; /* 15px */
    --text-nav: 1rem;         /* 16px */
  }
}
