/**
 * PhotoEZ Theme — Static page hero sections (Gallery, About, Contact).
 */

.pez-page-hero.elementor-section {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: calc(100vh - var(--pez-header-height)) !important;
  padding-top: var(--pez-header-height) !important;
  padding-bottom: 0 !important;
  box-sizing: border-box;
  position: relative;
  overflow: hidden;
  background-position: center center !important;
  background-size: cover !important;
  background-repeat: no-repeat !important;
}

.pez-page-hero > .elementor-background-overlay {
  z-index: 2 !important;
  opacity: var(--pez-hero-overlay-opacity, 0.52) !important;
  pointer-events: none;
}

.pez-page-hero > .elementor-container {
  position: relative;
  z-index: 4;
}

.pez-page-hero--captions > .elementor-container {
  display: none !important;
}

.pez-page-hero__captions {
  position: relative;
  z-index: 4;
  width: 100%;
  max-width: var(--pez-container-xl);
  margin: 0 auto;
  padding: 0 40px;
  min-height: calc(100vh - var(--pez-header-height) * 2);
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.pez-page-hero--gallery .pez-page-hero__captions,
.pez-page-hero--contact .pez-page-hero__captions {
  justify-content: center;
  text-align: center;
}

.pez-page-hero__caption {
  width: 100%;
  max-width: 720px;
}

.pez-page-hero--gallery .pez-page-hero__caption,
.pez-page-hero--contact .pez-page-hero__caption {
  margin: 0 auto;
}

.pez-page-hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--pez-font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pez-primary);
  margin: 0 0 0.75rem;
}

.pez-page-hero--gallery .pez-page-hero__eyebrow,
.pez-page-hero--contact .pez-page-hero__eyebrow {
  justify-content: center;
}

.pez-page-hero__eyebrow-line {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--pez-primary);
  flex-shrink: 0;
}

.pez-page-hero__title {
  font-family: var(--pez-font-heading);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #ffffff;
  margin: 0 0 1rem;
}

.pez-page-hero__subtitle {
  font-family: var(--pez-font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
  margin: 0;
  max-width: 540px;
}

.pez-page-hero--gallery .pez-page-hero__subtitle,
.pez-page-hero--contact .pez-page-hero__subtitle {
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  .pez-page-hero__captions {
    padding: 0 24px;
    min-height: calc(70vh - var(--pez-header-height));
  }
}
