/* Hermet — iç sayfa banner: arka plan görseli + şeffaf mavi + ortalı metin */
.hermet-page-banner {
  position: relative;
  z-index: 1;
  overflow: hidden;
  width: 100%;
}

.hermet-page-banner__media {
  position: absolute;
  inset: 0;
  background-image: var(--hermet-banner-bg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  transform: scale(1.02);
}

.hermet-page-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(1, 43, 110, 0.72) 0%,
    rgba(1, 43, 110, 0.58) 50%,
    rgba(1, 43, 110, 0.68) 100%
  );
  pointer-events: none;
}

.hermet-page-banner__inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(120px, 16vw, 180px);
  padding: clamp(20px, 3vw, 32px) 15px;
  text-align: center;
}

.hermet-page-banner__copy {
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
}

.hermet-page-banner__title {
  margin: 0 0 12px;
  font-weight: 700;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.15;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.25);
}

.hermet-page-banner__crumbs.bultax-breadcrumb {
  justify-content: center;
  width: 100%;
  margin: 0 auto;
}

.hermet-page-banner__crumbs.bultax-breadcrumb li,
.hermet-page-banner__crumbs.bultax-breadcrumb li a {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(14px, 1.25vw, 16px);
}

.hermet-page-banner__crumbs.bultax-breadcrumb li a:hover {
  color: #fff;
}

.hermet-page-banner__crumbs.bultax-breadcrumb li span {
  color: #fff;
  font-weight: 600;
}

@media (max-width: 767px) {
  .hermet-page-banner__inner {
    min-height: clamp(100px, 22vw, 150px);
    padding-top: clamp(18px, 4vw, 28px);
    padding-bottom: clamp(18px, 4vw, 28px);
  }

  .hermet-page-banner__title {
    font-size: clamp(22px, 6vw, 32px);
  }
}
