/* ================================
   DESIGN TOKENS - Coruja Academy
   ================================ */

:root {
  /* === COLORS === */
  --color-primary: #00695C;
  --color-primary-dark: #004D40;
  --color-primary-medium: #00897B;
  --color-secondary: #FDD835;
  --color-secondary-dark: #F9A825;
  --color-bg-light: #F0FAF9;
  --color-bg-dark: #004D40;
  --color-text-main: #1A2E2C;
  --color-text-secondary: #4A6360;
  --color-success: #00BFA5;
  --color-white: #FFFFFF;
  --color-border: #B2DFDB;

  /* === TYPOGRAPHY === */
  --font-display: 'Fraunces', Georgia, serif;
  --font-heading: 'DM Sans', system-ui, sans-serif;
  --font-body: 'DM Sans', system-ui, sans-serif;

  /* Font Sizes */
  --text-xs: 0.75rem;     /* 12px */
  --text-sm: 0.875rem;    /* 14px */
  --text-base: 1.0625rem; /* 17px */
  --text-lg: 1.125rem;    /* 18px */
  --text-xl: 1.25rem;     /* 20px */
  --text-2xl: 1.5rem;     /* 24px */
  --text-3xl: 1.75rem;    /* 28px */
  --text-4xl: 2.5rem;     /* 40px */
  --text-5xl: 3.5rem;     /* 56px */
  --text-6xl: 4.5rem;     /* 72px */

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

  /* === 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;
  --space-32: 8rem;

  /* === BORDERS === */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 9999px;

  /* === SHADOWS === */
  --shadow-sm: 0 2px 8px rgba(0, 105, 92, 0.06);
  --shadow-md: 0 8px 40px rgba(0, 105, 92, 0.08);
  --shadow-lg: 0 16px 60px rgba(0, 105, 92, 0.12);
  --shadow-xl: 0 24px 80px rgba(0, 105, 92, 0.15);
  --shadow-amber: 0 8px 32px rgba(253, 216, 53, 0.25);

  /* === TRANSITIONS === */
  --transition-fast: 0.15s ease;
  --transition-base: 0.25s ease;
  --transition-slow: 0.4s ease;
  --transition-spring: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* === LAYOUT === */
  --container-max: 1200px;
  --container-wide: 1400px;
  --navbar-height: 80px;

  /* === GRADIENTS === */
  --gradient-primary: linear-gradient(135deg, #00695C 0%, #00897B 100%);
  --gradient-primary-dark: linear-gradient(135deg, #004D40 0%, #00695C 100%);
  --gradient-hero: linear-gradient(135deg, #004D40 0%, #00695C 100%);
}
