/* Shared header: variables and layout. Load before footer.css. */
:root {
  --asset-header-bg: none;
  --asset-header-bg-non: none;
  --asset-footer-bg: none;
}

header {
  transition: all 0.5s ease;
}

.fixed-header {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1230px;
  z-index: 1000;
}

.bg-on {
  background-image: var(--asset-header-bg-non);
  padding: 20px 5px 80px !important;
}

header .Head {
  display: flex;
  justify-content: space-between;
  padding: 20px 5px;
}

header .Head .Logo {
  width: 18%;
}

header .Head .Logo a {
}

header .Head .Logo a img {
  transition:
    transform 0.3s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
}

header .Head .Logo:hover img {
  transform: scale(1.01);
  opacity: 0.5;
  filter: brightness(1.1);
}

.holographic-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 45px;
  border-radius: 30px;
  background: #d0c3e8;
  cursor: pointer;
}

.holographic-card {
  height: 45px;
  background: #d0c3e8;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 2px 13px;
  transition: all 0.5s ease;
}

.holographic-card a {
  color: #fff;
  font-size: 0.975rem;
  position: relative;
  z-index: 2;
}

.holographic-card::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    0deg,
    transparent,
    transparent 30%,
    rgba(0, 255, 255, 0.3)
  );
  transform: rotate(-45deg);
  transition: all 0.5s ease;
  opacity: 0;
}

.holographic-card:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
}

.holographic-card:hover::before {
  opacity: 1;
  transform: rotate(-45deg) translateY(100%);
}

@media (max-width: 900px) {
  header {
    padding: 28px 12px 20px;
    background-image: var(--asset-header-bg-non);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
  }

  .fixed-header {
    width: 100%;
    max-width: none;
    left: 0;
    transform: none;
  }

  .bg-on {
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: top center;
  }

  header .Head {
    padding: 0;
    align-items: center;
  }

  header .Head .Logo {
    width: 22%;
    min-width: 120px;
  }

  header .Head .Logo a img {
    width: 100%;
    max-width: 160px;
  }

  .holographic-container {
    height: 38px;
  }

  .holographic-card {
    height: 38px;
    padding: 2px 10px;
  }
}
