/* The Study Spot — custom styles layered on top of Tailwind CDN */

/* Brand typography */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Lora:ital,wght@0,400;0,600;1,400;1,600&display=swap');

:root {
  --brand-blue: #0b57d0;
  --brand-dark: #1e293b;
  --brand-light: #f8fafc;
}

/* Apply brand fonts (sans = Inter, serif = Lora) */
body {
  font-family: 'Inter', ui-sans-serif, system-ui, -apple-system, 'Segoe UI', sans-serif;
}

.font-serif {
  font-family: 'Lora', ui-serif, Georgia, serif;
}

/* Respect users who prefer reduced motion */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

/* Offset anchor jumps so the sticky header doesn't cover section headings */
[id] {
  scroll-margin-top: 6rem;
}

/* Mobile menu transition */
#mobile-menu {
  transition: opacity 0.2s ease, transform 0.2s ease;
}

#mobile-menu.hidden {
  display: none;
}

#mobile-menu.is-closing {
  opacity: 0;
  transform: translateY(-0.5rem);
}
