/* Global app styles */

:root {
  color-scheme: light;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: 'Public Sans', sans-serif;
}

.cta-target {
  position: relative;
}

.cta-target::after {
  content: "";
  position: absolute;
  inset: -10px;
  border: 4px solid rgba(0, 30, 64, 0.45);
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.94);
  animation: form-attention 1.2s ease-out forwards;
}

@keyframes form-attention {
  0% {
    opacity: 0;
    transform: scale(0.94);
  }
  30% {
    opacity: 1;
    transform: scale(1.04);
  }
  100% {
    opacity: 0;
    transform: scale(1.08);
  }
}

.cta-button {
  display: inline-block;
  border-radius: 0.5rem;
  background-color: #001e40;
  font-weight: 700;
  color: white;
  transition: all 300ms;
  text-decoration: none;
}

.cta-button:hover {
  background-color: #003366;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px -5px rgba(0, 30, 64, 0.3);
}

.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  display: inline-block;
  width: 1em;
  height: 1em;
  line-height: 1;
  overflow: hidden;
  text-align: center;
  text-transform: none;
  letter-spacing: normal;
  word-wrap: normal;
  white-space: nowrap;
  direction: ltr;
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
}

.font-headline {
  font-family: 'Manrope', sans-serif;
}

.font-body {
  font-family: 'Public Sans', sans-serif;
}
