/* Design Tokens - And Succulents */

:root {
  /* Colors - Nature Inspired Palette */
  --color-primary: #2D5F4C;      /* Sage green */
  --color-primary-dark: #234a39;  /* Darker green for hover */
  --color-secondary: #8B7355;    /* Wood brown */
  --color-accent: #D4A373;       /* Soft gold */
  --color-text: #2C2C2C;         /* Near black */
  --color-text-light: #6B6B6B;   /* Medium gray */
  --color-background: #FAFAFA;   /* Off-white */
  --color-white: #FFFFFF;
  --color-border: #E5E5E5;       /* Light gray */

  /* Typography */
  --font-display: 'Playfair Display', serif;
  --font-body: 'Inter', sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;    /* 12px */
  --text-sm: 0.875rem;   /* 14px */
  --text-base: 1rem;     /* 16px */
  --text-lg: 1.125rem;   /* 18px */
  --text-xl: 1.25rem;    /* 20px */
  --text-2xl: 1.5rem;    /* 24px */
  --text-3xl: 1.875rem;  /* 30px */
  --text-4xl: 2.25rem;   /* 36px */
  --text-5xl: 3rem;      /* 48px */

  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;

  /* Spacing */
  --spacing-xs: 0.5rem;   /* 8px */
  --spacing-sm: 1rem;     /* 16px */
  --spacing-md: 1.5rem;   /* 24px */
  --spacing-lg: 2rem;     /* 32px */
  --spacing-xl: 3rem;     /* 48px */
  --spacing-2xl: 4rem;    /* 64px */
  --spacing-3xl: 6rem;    /* 96px */

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.16);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;

  /* Container */
  --container-max: 1280px;
  --container-padding: var(--spacing-sm);

  /* Grid */
  --grid-gap: var(--spacing-md);
}

/* Responsive Container Padding */
@media (min-width: 768px) {
  :root {
    --container-padding: var(--spacing-lg);
  }
}

@media (min-width: 1024px) {
  :root {
    --container-padding: var(--spacing-xl);
    --grid-gap: var(--spacing-lg);
  }
}
