/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Roboto:wght@300;400;500;700&display=swap');

body {
  font-family: 'Roboto', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Custom Gradients defined in Design System */
.top-banner-gradient {
  background: linear-gradient(to right, #1C69D4, #1C1C3C, #E31E24);
}

.hero-overlay-gradient {
  background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

/* Utility to ensure footer stays at bottom if content is short */
body {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}
