/* ===============
 * OLD CSS from other files
 * */

/* Page banner */
#page-banner {
  display: block;
  color: white;
  padding: 0;
  text-align: center;
  opacity: 1;
  transition: opacity 1s ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  /* padding-right: 25px; */
  width: auto;
  height: 50px;
}

#page-banner.hide {
  display: none;
  opacity: 0;
}

#page-banner.show {
  display: block;
  opacity: 1;
  animation: fadeIn 1s ease forwards;
  padding-bottom: 0;
}

.banner-content {
  display: flex;
  align-items: center;
  justify-content: left;
  line-height: 1.6;
  height: 50px;
  overflow-y: clip;
}

/* ============================================
   DEFAULT: Smallest Device (240px+)
   Allow quirks, just don't break
   ============================================ */

#page-banner {
  display: none;
}

.site-nav {
  background: transparent;
  border-bottom: 1px solid var(--border);
  padding: 0 16px;
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
  position: relative;
  top: 0;
  z-index: 10;
  align-content: center;
}

.site-nav a.nav-link {
  text-decoration: none;
  padding: 3px 14px;
  border-bottom: 2px solid transparent;
  opacity: 0.55;
  cursor: pointer;
  white-space: nowrap;
  transition:
    opacity 0.15s,
    border-color 0.15s;
  color: white;
}

.site-nav a.nav-link h2 {
  font-family: "Dosis", sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 12px 0;
}

.site-nav a.nav-link.active {
  border-bottom-color: var(--buttonPrimary);
  opacity: 1;
}

.site-nav a.nav-link.active h2 {
  font-weight: bold;
}
.site-nav a.nav-link:hover {
  opacity: 1;
  border-bottom-color: var(--buttonPrimary);
}

.home-icon {
  display: flex;
  align-items: center;
}

/* ============================================
   PERFECT MOBILE (360px+)
   ============================================ */
@media (min-width: 360px) {
}

/* ============================================
   PERFECT MOBILE TALL (360px × 540px+)
   ============================================ */
@media (min-width: 360px) and (min-height: 540px) {
}

/* ============================================
   TABLET (768px+)
   ============================================ */
@media (min-width: 768px) {
  body {
    padding-top: 50px; /*pushes body content below the header*/
  }
  #page-banner {
    display: flex;
    opacity: 1;
    /* position: relative; */
  }

  .site-nav a.nav-link h2 {
    color: white;
  }
}

/* ============================================
   DESKTOP (1280px+)
   ============================================ */
@media (min-width: 1280px) {
}
