/* ============================================================
   ADFC WordPress Theme — Inner Page Banner Styles
   Blue brand gradient with breadcrumb, Elementor shortcode friendly
   ============================================================ */

/* ── Page Banner Section ─────────────────────────────────── */
.adfc-page-banner {
  position: relative;
  background: linear-gradient(135deg, #1971B9 0%, #11538A 60%, #0D4470 100%);
  color: #FFFFFF;
  padding-top: 130px;
  padding-bottom: 3.5rem;
  text-align: center;
  overflow: hidden;
}

/* Decorative grid mesh overlay */
.adfc-page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(to right, #FFFFFF 1px, transparent 1px),
    linear-gradient(to bottom, #FFFFFF 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

/* Decorative bottom accent strip */
.adfc-page-banner::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--adfc-gold) 0%, rgba(253, 192, 16, 0.2) 100%);
}

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

/* Breadcrumb trail */
.adfc-page-banner__breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--adfc-gold);
  margin-bottom: 0.75rem;
}

.adfc-page-banner__breadcrumb a {
  color: var(--adfc-gold);
  transition: opacity var(--transition-fast);
}

.adfc-page-banner__breadcrumb a:hover {
  opacity: 0.7;
}

.adfc-page-banner__breadcrumb .separator {
  opacity: 0.5;
  font-size: 0.75rem;
}

/* Eyebrow label */
.adfc-page-banner__label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--adfc-gold);
  background: rgba(253, 192, 16, 0.1);
  border: 1px solid rgba(253, 192, 16, 0.25);
  border-radius: var(--radius-pill);
  padding: 0.3rem 1rem;
  margin-bottom: 1rem;
}

.adfc-page-banner__label::before {
  content: '';
  width: 5px;
  height: 5px;
  background: var(--adfc-gold);
  border-radius: 50%;
}

/* Main title */
.adfc-page-banner__title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #FFFFFF;
  margin-bottom: 0.5rem;
  line-height: 1.15;
}

/* Subtitle / description */
.adfc-page-banner__subtitle {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.8);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.6;
}

/* ── Default page hero (when no shortcode used) ──────────── */
.page-hero--blue {
  position: relative;
  background: linear-gradient(135deg, #1971B9 0%, #11538A 60%, #0D4470 100%);
  color: #FFFFFF;
  padding-top: 130px;
  padding-bottom: 3.5rem;
  text-align: center;
  overflow: hidden;
}

.page-hero--blue::before {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(to right, #FFFFFF 1px, transparent 1px),
    linear-gradient(to bottom, #FFFFFF 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}

.page-hero--blue::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--adfc-gold) 0%, rgba(253, 192, 16, 0.2) 100%);
}

/* Left-aligned variant */
.adfc-page-banner--left {
  text-align: left;
}

.adfc-page-banner--left .adfc-page-banner__subtitle {
  margin-inline: 0;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .adfc-page-banner {
    padding-top: 100px;
    padding-bottom: 2.5rem;
  }

  .page-hero--blue {
    padding-top: 100px;
    padding-bottom: 2.5rem;
  }
}

@media (max-width: 480px) {
  .adfc-page-banner {
    padding-top: 85px;
    padding-bottom: 2rem;
  }

  .page-hero--blue {
    padding-top: 85px;
    padding-bottom: 2rem;
  }
}
