/* =============================================================================
   12-PAGEHERO.CSS — En-tête de page (bandeau) RÉUTILISABLE
   Bandeau bleu nuit affiché en haut des pages intérieures (Annuaire, La Rue,
   Blog, Galerie, Contact) : fil d'Ariane + titre + sous-titre.
   Chargé globalement via functions.php.
   ========================================================================== */
.rkt-pagehero {
  position: relative;
  overflow: hidden;
  background: var(--rkt-navy);
  color: #fff;
  padding-block: clamp(2.5rem, 6vw, 4.5rem);
}
/* Halo décoratif discret (or) — cohérent avec le Hero de l'accueil */
.rkt-pagehero::after {
  content: "";
  position: absolute;
  top: -30%;
  right: -8%;
  width: 40vw;
  max-width: 520px;
  aspect-ratio: 1;
  background: radial-gradient(circle, rgba(226, 169, 58, 0.16), transparent 68%);
  pointer-events: none;
}

.rkt-pagehero__inner { position: relative; z-index: 1; max-width: 760px; }

/* --- Fil d'Ariane ---------------------------------------------------------- */
.rkt-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}
.rkt-breadcrumb li { display: inline-flex; align-items: center; gap: 0.4rem; }
.rkt-breadcrumb li:not(:last-child)::after {
  content: "›";
  color: var(--rkt-gold-bright);
  margin-left: 0.4rem;
}
.rkt-breadcrumb a { color: rgba(255, 255, 255, 0.7); text-decoration: none; transition: color var(--rkt-t-fast); }
.rkt-breadcrumb a:hover { color: var(--rkt-gold-bright); }
.rkt-breadcrumb [aria-current="page"] { color: #fff; }

/* --- Titre & sous-titre ---------------------------------------------------- */
.rkt-pagehero__title {
  font-family: var(--rkt-font-title);
  font-weight: 800;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  color: #fff;
  margin: 0 0 0.75rem;
}
.rkt-pagehero__subtitle {
  font-size: var(--rkt-fs-lead);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}
