/* CSS Custom Properties - Fan Game Cube Theme */

:root {
  /* Colors - matching fangamecube.com dark theme */
  --color-primary: #ee7916;
  --color-secondary: #6600cc;
  --color-accent: #f0c417;
  --color-background: #0a0a0a;
  --color-surface: #1a1a1a;
  --color-text-primary: #ffffff;
  --color-text-secondary: #e5e7eb;
  --color-text-muted: #d1d5db;
  --color-border: #2d2d2d;

  /* Bootstrap overrides */
  --bs-body-bg: var(--color-background);
  --bs-body-color: var(--color-text-secondary);
  --bs-link-color: var(--color-accent);
  --bs-link-hover-color: var(--color-primary);

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 3rem;
  --spacing-2xl: 4rem;
  --spacing-3xl: 6rem;

  /* Typography - matching fangamecube.com */
  --font-family: 'Barlow', sans-serif;
  --heading-font-family: 'Barlow', sans-serif;
  --text-font-family: 'Barlow', sans-serif;

  /* Font sizes - desktop (1400px+) */
  --text-h0: 5rem;
  --text-h1: 3.75rem;
  --text-h2: 3rem;
  --text-h3: 2.25rem;
  --text-h4: 2rem;
  --text-h5: 1.5rem;
  --text-h6: 1.25rem;
  --text-base: 1rem;
  --text-lg: 1.25rem;
  --text-small: 0.875rem;
  --text-xs: 0.75rem;

  /* Letter spacing */
  --heading-letter-spacing: -0.02em;
  --body-letter-spacing: 0em;

  /* Font weights */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* Borders */
  --border-radius-sm: 0.25rem;
  --border-radius-md: 0.5rem;
  --border-radius-lg: 1rem;
  --border-radius-xl: 1.5rem;
  --border-radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1);

  /* Transitions */
  --transition-fast: 150ms ease-in-out;
  --transition-base: 300ms ease-in-out;
  --transition-slow: 500ms ease-in-out;

  /* Z-index */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
  --z-popover: 1060;
  --z-tooltip: 1070;
}

/* Responsive typography - matching fangamecube.com breakpoints */

/* Tablet (700px to 1399px) */
@media (min-width: 700px) and (max-width: 1399px) {
  :root {
    --text-h0: 4rem;
    --text-h1: 3rem;
    --text-h2: 2.5rem;
    --text-h3: 2rem;
    --text-h4: 1.625rem;
    --text-h5: 1.25rem;
    --text-h6: 1.125rem;
    --text-base: 0.875rem;
    --text-lg: 1.125rem;
  }
}

/* Mobile (below 700px) */
@media (max-width: 699px) {
  :root {
    --text-h0: 3rem;
    --text-h1: 2.5rem;
    --text-h2: 2rem;
    --text-h3: 1.5rem;
    --text-h4: 1.375rem;
    --text-h5: 1.125rem;
    --text-h6: 1rem;
    --text-base: 0.875rem;
    --text-lg: 1.125rem;
    --text-xs: 0.6875rem;
  }
}
