/* ==========================================
   PAGE BANNER — Sub-page hero header
   ========================================== */

.page-banner {
  position: relative;
  padding: 160px 0 80px;
  background: #040404;
  overflow: hidden;
  text-align: center;
}

/* Dark radial glow */
.page-banner-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 50% 0%, rgba(201,168,76,0.07) 0%, transparent 70%),
    radial-gradient(ellipse 40% 50% at 20% 100%, rgba(139,0,0,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* Top gold line */
.page-banner::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--secondary), var(--primary), var(--secondary), transparent);
}

/* Bottom separator */
.page-banner::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,168,76,0.2), transparent);
}

.page-banner-inner {
  position: relative;
  z-index: 1;
}

.page-banner-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(201,168,76,0.45);
  margin-bottom: 24px;
}

.page-banner-breadcrumb a {
  color: rgba(201,168,76,0.45);
  transition: color 0.2s;
}

.page-banner-breadcrumb a:hover {
  color: var(--primary);
}

.page-banner-breadcrumb i {
  font-size: 9px;
  color: rgba(201,168,76,0.3);
}

.page-banner-breadcrumb span {
  color: var(--primary);
}

.page-banner-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 900;
  color: var(--text-dark);
  line-height: 1.1;
  margin-bottom: 16px;
  font-family: 'Cinzel Decorative', serif;
}

.page-banner-subtitle {
  font-size: 16px;
  color: rgba(232,213,163,0.5);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* Banner with hero image */
.page-banner.has-hero-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 450px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-banner.has-hero-img .page-banner-bg {
  background: rgba(0, 0, 0, 0.6);
}

.page-banner.has-hero-img .page-banner-title {
  text-shadow: 0 2px 20px rgba(0,0,0,0.7);
}

.page-banner.has-hero-img .page-banner-subtitle {
  color: rgba(232,213,163,0.7);
  text-shadow: 0 1px 10px rgba(0,0,0,0.5);
}
