/* Override font-face declerations */
@font-face {
  font-display: swap;
  font-family: Family;
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/Family-Light.woff2') format("woff2");
}

@font-face {
  font-display: swap;
  font-family: Family;
  font-style: normal;
  font-weight: 500;
  src: url('../fonts/Family-Medium.woff2') format("woff2");
}

@font-face {
  font-display: swap;
  font-family: National;
  font-style: normal;
  font-weight: 300;
  src: url('../fonts/National-Light.woff2') format("woff2");
}

@font-face {
  font-display: swap;
  font-family: National;
  font-style: normal;
  font-weight: 400;
  src: url('../fonts/National-Regular.woff2') format("woff2");
}

@font-face {
  font-display: swap;
  font-family: National;
  font-style: normal;
  font-weight: 700;
  src: url('../fonts/National-Bold.woff2') format("woff2");
}

:root {
  --promo-banner-height: 70px;
}

#site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 25px 0;
  width: 100vw;
  z-index: 100;
  background-color: white;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  transition: transform 0.5s ease-in-out;
}

#site-header.header-hidden {
  transform: translateY(-100%);
}

#header-logo {
  width: 180px;
  height: auto;
}

#confetti-canvas {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 9999;
}

.promo-banner-spacer {
  margin-bottom: var(--promo-banner-height);
}

.hero-banner {
  margin-top: 80px;
}

.hero-banner .hero-banner-height {
  height: 70dvh;
}

/*@media (min-width: 768px) {*/
/*  .hero-banner .hero-banner-height {*/
/*    height: 80dvh;*/
/*  }*/
/*}*/
