@font-face {
  font-family: 'ElmsSans';
  src: url('/assets/ElmsSans.ttf') format('truetype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

:root {
  --font-family: 'ElmsSans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --bg-gradient: linear-gradient(135deg, #f2ffec 0%, #ffffff 100%);
  --accent-mint: #f2ffec;
  --accent-mint-hover: #e0f9d4;
  --color-border: #000000;
  --border-width: 2.2px;
  --border-thick: 2.5px;
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 20px;
  --text-main: #000000;
  --text-muted: #4b5563;
  --text-light: #6b7280;
  
  /* Subject pastel colors matching mockups */
  --card-blue: #3ba4f6;
  --card-blue-bg: #3ba4f6;
  --card-green: #9ae659;
  --card-green-bg: #9ae659;
  --card-purple: #d985f5;
  --card-purple-bg: #d985f5;
  --card-gray: #d1d5db;
  --card-gray-bg: #d1d5db;
  --card-orange: #fb923c;
  --card-yellow: #fde047;
}

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

html, body {
  width: 100%;
  height: 100%;
  font-family: var(--font-family);
  background: var(--bg-gradient);
  background-attachment: fixed;
  color: var(--text-main);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Brand header with SVG logo */
.brand-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  user-select: none;
}

.brand-header .logo-svg {
  height: 32px;
  width: auto;
  display: block;
}

.brand-header .brand-divider {
  font-size: 28px;
  font-weight: 300;
  color: #000;
  line-height: 1;
}

.brand-header .brand-title {
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.5px;
  color: #000000;
}
