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

body {
  font-family: 'Inter', sans-serif;
  -webkit-font-smoothing: antialiased;
  background-color: #FCFAF7;
  color: #1A1C1E;
  margin: 0;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

main {
  flex: 1;
}

h1, h2, h3, h4, .font-display {
  font-family: 'Space Grotesk', sans-serif;
}

.shadow-diffused {
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.04);
}

.shadow-diffused-lg {
  box-shadow: 0 30px 60px rgba(0, 49, 120, 0.08);
}

/* Custom subtle scrollbar */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background: #FCFAF7;
}
::-webkit-scrollbar-thumb {
  background: #E8E4DF;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #c3c6d4;
}
