/* ============================================
   GLOBAL FIXED HEADER — PKChristianMusic
   ============================================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px; /* stays the same */
    background-color: #D2BFA9;
    background-image: url('../img/parchment-header.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    z-index: 9999;
    border-bottom: 1px solid rgba(0,0,0,0.10);
}

/* ============================================
   LEFT SIDE — LOGO + TITLE
   ============================================ */
.header-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

/* LOGO WRAPPER */
.logo-wrap {
  position: relative;
  height: 100%;           /* fills the 90px header */
  width: auto;            /* let image define width */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
}

/* Glow behind logo (keeps inside wrapper) */
.logo-wrap::before {
  content: "";
  position: absolute;
  inset: 6%;              /* keeps glow inside the wrapper */
  border-radius: 50%;
  background: rgba(255,255,255,0.22);
  filter: blur(3px);
  z-index: 1;
}

/* LOGO IMAGE — constrained and responsive */
.site-logo {
  height: auto;
  max-height: 80%;      /* reduce from 96% → 92% to shrink a bit */
  max-width: 130px;     /* cap horizontal size so it never dominates */
  width: auto;
  display: block;
  object-fit: contain;
  border-radius: 50%;
  position: relative;
  z-index: 2;
  filter: contrast(1.35) brightness(1.15) saturate(1.25);
}



.site-title {
    font-size: 22px;
    font-weight: 700;
    font-family: "Georgia", serif;
    color: #4A3F35;
    line-height: 1;
}

/* ============================================
   NAVIGATION MENU — CENTERED
   ============================================ */
.main-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 28px;
}

.main-nav a {
    font-size: 18px;
    font-family: "Georgia", serif;
    color: #4A3F35;
    text-decoration: none;
    transition: opacity 0.2s ease;
}

.main-nav a:hover {
    opacity: 0.65;
}

/* ============================================
   THEME OVERRIDE — PREVENT INTERFERENCE
   ============================================ */
.site-header,
.site-header * {
    box-shadow: none !important;
}
/* FORCE logo size to fit 90px header */
.logo-wrap { height: 100%; width: auto; padding: 0 6px; display:flex; align-items:center; justify-content:center; }

.site-logo {
  height: 87px !important;       /* exact pixel height that fits the 90px header */
  max-height: 87px !important;
  width: auto !important;        /* preserve aspect ratio */
  max-width: 120px !important;   /* prevents it from getting wide */
  display: block !important;
  object-fit: contain !important;
  border-radius: 50% !important;
  z-index: 2 !important;
  filter: contrast(1.35) brightness(1.15) saturate(1.25) !important;
}

/* Mobile safety */
@media (max-width: 600px) {
  .site-logo { height: 56px !important; max-height: 56px !important; max-width: 96px !important; }
}
