@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

:root {
  --primary: #3b82f6; /* Blue 500 default */
  --secondary: #1e3a8a; /* Blue 900 */
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #f9fafb;
}

/* Custom styles for Tailwind override if needed */
.glass {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  overflow: visible !important; /* CRITICAL: allow nav dropdowns to overflow */
}

#main-header {
  position: sticky;
  top: 0;
  z-index: 9990; /* High enough for dropdown z-index: 9999 to work */
  min-height: 64px;
  overflow: visible !important; /* CRITICAL: don't clip the dropdown */
}

.loader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

[v-cloak] {
  display: none;
}
