/* ========================================================= */
/* CINEMATIC HEADER — A+ Version                              */
/* ========================================================= */

.hps-header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 0.8rem 0;
  background: rgba(10, 20, 40, 0.55);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}

/* Glow using global token */
.hps-header-glow {
  top: -40px;
}

/* Clarity frame */
.hps-header-frame {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;

  display: flex;
  justify-content: space-between;
  align-items: center;

  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  backdrop-filter: blur(14px) saturate(160%);
  border-radius: 18px;

  box-shadow:
    inset 0 0 12px rgba(255,255,255,0.06),
    0 12px 32px rgba(0,0,0,0.35);
}

/* Logo */
.hps-header-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.hps-header-logo img {
  height: 42px;
  width: auto;
  filter: drop-shadow(0px 2px 4px rgba(0,0,0,0.45));
}

.hps-header-logo span {
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #ffffff;
  text-shadow: 0px 2px 6px rgba(0,0,0,0.45);
}

/* Navigation */
.hps-header-nav {
  display: flex;
  gap: 2rem;
}

.hps-header-nav a {
  font-size: 1rem;
  font-weight: 500;
  color: #e8e8e8;
  text-decoration: none;
  letter-spacing: 0.4px;
  transition: all 0.25s ease;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.hps-header-nav a:hover {
  color: #ffd2a0;
  border-bottom: 2px solid #ffd2a0;
}

/* Mobile */
@media (max-width: 700px) {
  .hps-header-nav {
    gap: 1.2rem;
  }

  .hps-header-logo span {
    font-size: 1rem;
  }
}
