﻿/* HERO: unified centering and spacing */
.breadcrumb-hero {
  position: relative;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 48px 16px 40px;          /* top/bottom balanced */
  color: #fff;
}

.breadcrumb-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.45), rgba(0,0,0,.15)); /* more contrast */
  pointer-events: none;
}

/* Single center container with column layout */
.breadcrumb-hero-inner {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;              /* centers both H1 and breadcrumb */
  justify-content: center;
  gap: 10px;                        /* tight, equal spacing */
  text-align: center;
}

/* Stronger, crisper title */
.page-title {
  margin: 0;
  font-size: 34px;                  /* bigger for presence */
  line-height: 1.2;
  font-weight: 800;                 /* bolder */
  letter-spacing: .2px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,.45); /* crisp over photos */
}

/* Breadcrumb: perfectly centered, on one line */
.breadcrumb {
  background: transparent;
  box-shadow: none;
  padding: 0;
  --separator-color: rgba(255,255,255,.9);
  --text-color: #fff;
  --link-color: #fff;
  --link-hover: #fff;
}

.breadcrumb ol {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;                /* stay horizontal */
  white-space: nowrap;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Breadcrumb items look sharper */
.breadcrumb ol > li { display: inline-flex; align-items: center; }
.breadcrumb a, .breadcrumb .current {
  color: #fff;
  font-weight: 600;                 /* stronger */
  font-size: 15px;                  /* slightly larger */
  text-decoration: none;
  background: transparent;
  padding: 0;
  text-shadow: 0 1px 4px rgba(0,0,0,.35);  /* improve readability */
}
.breadcrumb a:hover { color: #fff; }

.breadcrumb .separator {
  color: rgba(255,255,255,.9);
  display: inline-block;
  padding: 0 4px;
}

.breadcrumb .crumb-icon {
  font-size: 15px;
  line-height: 1;
  color: #fff;
}

/* Responsive tuning */
@media (max-width: 768px) {
  .breadcrumb-hero { padding: 36px 12px 28px; }
  .page-title { font-size: 28px; }
  .breadcrumb ol { gap: 8px; }
}
@media (max-width: 480px) {
  .breadcrumb-hero { padding: 28px 10px 22px; }
  .page-title { font-size: 24px; }
  .breadcrumb ol { gap: 6px; }
}
