/* ============================================================
   LMS Celebrity Autographs – HEADER STYLES (v1.3.4c)
   Unified across all pages
   ============================================================ */

:root {
  --brand-main: #2c146c;
  --brand-accent: #4932a3;
  --brand-gold: #d6b24a;
}

/* === HEADER WRAPPER === */
header.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  background-color: var(--brand-main);
  color: #fff;
  padding: 10px 20px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 1000;
  font-family: "Poppins", sans-serif;
}

/* === LEFT: LOGO BLOCK === */
header.site-header .logo-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
header.site-header .logo-title img {
  height: 60px;
  width: auto;
}
header.site-header .logo-title h1 {
  margin: 0;
  font-size: 1.6rem;
  color: #fff;
  font-weight: 700;
}

/* === RIGHT: NAVIGATION BUTTONS === */
header.site-header nav.main-nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}
header.site-header nav.main-nav button {
  background: var(--brand-gold);
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  padding: 8px 18px;
  line-height: 1.3em;
  cursor: pointer;
  transition: background 0.25s, transform 0.05s;
  font-family: "Poppins", sans-serif;
}
header.site-header nav.main-nav button:hover {
  background: #f1d77b;
}
header.site-header nav.main-nav button:active {
  transform: translateY(1px);
}

/* === GOLD UNDERLINE ACCENT === */
header.site-header::after {
  content: "";
  display: block;
  width: 100%;
  height: 3px;
  background-color: var(--brand-gold);
  position: absolute;
  bottom: 0;
  left: 0;
}

/* === RESPONSIVE === */
@media (max-width: 600px) {
  header.site-header {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }
  header.site-header .logo-title img {
    height: 50px;
  }
  header.site-header nav.main-nav button {
    padding: 8px 14px;
    font-size: 0.9em;
  }
}
