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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 0 auto;
}

* {
  box-sizing: border-box;
}

:root {
  --color-navy: #001f3f;
  --color-steel-gray: #4a5568;
  --color-orange: #ff8c00;
}

#site-nav.scrolled {
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}
