/*
  Self-hosted styling helpers for the new landing layout (st_new).
  Fonts are expected at /media/fonts/* (served by your CDN/Caddy).
*/

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('/media/fonts/Inter-Variable.woff2') format('woff2');
}

@font-face {
  font-family: 'Manrope';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url('/media/fonts/Manrope-Variable.woff2') format('woff2');
}

/* Minimal baseline */
body {
  background: #0b1326;
  color: #dae2fd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  min-height: max(884px, 100dvh);
}

h1, h2, h3, h4 {
  font-family: Manrope, Inter, ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

.glass-panel {
  background: rgba(45, 52, 73, 0.6);
  backdrop-filter: blur(24px);
}

.indigo-gradient {
  background: linear-gradient(135deg, #4b4dd8 0%, #c0c1ff 100%);
}

/* Simple mobile menu animation (used by NiceGUI class toggles) */
#mobile-menu {
  transition: transform 0.3s ease-in-out;
  transform: translateY(-100%);
}

#mobile-menu.active {
  transform: translateY(0);
}
