:root { --banner-h: 80px; }

/* Banner itself */
#top-banner {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 2147483647;
  background: #eb6150 !important;
  color: #ffffff !important;
  text-align: center;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  padding: 26px 10px;
}
#top-banner a {
  color: #ffffff !important;     /* make clickable text white */
  text-decoration: underline;
  font-weight: 700;
}
#top-banner a:hover,
#top-banner a:focus {
  color: #ffffff !important;
  text-decoration: underline;
  font-weight: bold;
}


/* Push site header up directly under banner */
.navbar.navbar-fixed-top,
.nav-type-1,
.navigation-overlay {
  top: var(--banner-h) !important;
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Also reset any default spacing on the main wrapper or header */
header#home,
.main-wrapper-onepage {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* Force the image to be 50px tall */
#top-banner .banner-logo {
  height: 30px;
  width: auto;
  vertical-align: middle;
  margin-right: 10px;
}

/* Optional: align text vertically with the image */
#top-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}



/* Tablet font size */
@media (max-width: 1024px) and (min-width: 601px) {
  #top-banner {
    font-size: 12pt;
  }
}

/* Phone font size */
@media (max-width: 600px) {
  #top-banner {
    font-size: 8pt;
  }
}