/**
 * Discrete Worlds - Shared Styles
 * 
 * Global design system for all three pages:
 * - Single-column reading flow
 * - Consistent typography
 * - Minimal navigation
 * - Measured, intentional, restrained
 */

/* ============================================================================
 * RESET & BASE
 * ============================================================================ */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-body);
  font-size: var(--font-size-base);
  line-height: var(--line-height-normal);
  color: var(--color-text);
  background: var(--color-bg);
  min-height: 100vh;
}

/* ============================================================================
 * THEME SYSTEM - Dark and Light modes
 * ============================================================================ */

/* Dark theme (default) */
:root[data-theme="dark"] {
  --color-bg: var(--color-bg-primary);
  --color-text: var(--color-text-primary);
  --color-border: var(--color-border-primary);
}

/* Light theme */
:root[data-theme="light"] {
  --color-bg: var(--color-bg-light-primary);
  --color-text: var(--color-text-light-primary);
  --color-border: var(--color-border-light-primary);
}

/* ============================================================================
 * SITE MAIN - Content area (Project-2 specific)
 * ============================================================================ */

.site-main {
  padding-top: var(--spacing-6);
}

