/* =====================
   PROVERBS CLUB NAV
===================== */

/* HEADER */
.pc-header-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 40px;
  background: linear-gradient(to bottom, rgba(8,14,28,0.95), transparent);
  display: flex;
  align-items: center;
  transition: background 0.3s ease;
}

.pc-header-nav.scrolled {
  background: rgba(8,14,28,0.98);
  border-bottom: 1px solid rgba(201,168,76,0.1);
}

.pc-header-inner {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-header-logo img {
  width: 40px;
  height: 40px;
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.3s ease;
}

.pc-header-logo:hover img { opacity: 1; }

.pc-nav-list {
  list-style: none;
  display: flex;
  gap: 40px;
  margin: 0;
  padding: 0;
}

.pc-nav-list li a {
  font-family: 'Cinzel', serif;
  font-size: 9px;
  letter-spacing: 0.35em;
  color: rgba(240,230,204,0.7);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.pc-nav-list li a:hover {
  color: #C9A84C;
}

.pc-nav-list li.current-menu-item a {
  color: #C9A84C;
}

/* HAMBURGER */
.pc-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.pc-hamburger span {
  display: block;
  width: 24px;
  height: 1px;
  background: #C9A84C;
  transition: all 0.3s ease;
}

/* MOBILE NAV */
.pc-mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: rgba(8,14,28,0.98);
  border-left: 1px solid rgba(201,168,76,0.15);
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: right 0.4s ease;
}

.pc-mobile-nav.open { right: 0; }

.pc-mobile-list {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}

.pc-mobile-list li {
  padding: 20px 0;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}

.pc-mobile-list li:last-child { border-bottom: none; }

.pc-mobile-list li a {
  font-family: 'Cinzel', serif;
  font-size: 11px;
  letter-spacing: 0.4em;
  color: rgba(240,230,204,0.8);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.pc-mobile-list li a:hover { color: #C9A84C; }

/* FOOTER NAV */
.pc-footer-nav {
  margin-bottom: 32px;
}

.pc-footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.pc-footer-list li a {
  font-family: 'Cinzel', serif;
  font-size: 8px;
  letter-spacing: 0.35em;
  color: rgba(201,168,76,0.4);
  text-decoration: none;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.pc-footer-list li a:hover { color: rgba(201,168,76,0.8); }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
  .pc-header-nav { padding: 16px 24px; }
  .pc-header-menu { display: none; }
  .pc-hamburger { display: flex; }
  .pc-footer-list { gap: 20px; }
}

/* BODY PADDING FOR FIXED HEADER */
.pc-page-wrap { padding-top: 80px; }
