/* ==========================================================================
   Galerie Mueller -- About Hero Widget Styles
   Widget: gm_about_hero
   File:   assets/css/about-hero-widget.css
   ========================================================================== */

/* --- Google Fonts (ensure loaded at page level by plugin) --- */
/* @import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600&display=swap'); */

/* =============================================
   SECTION WRAPPER
   ============================================= */
.gm-about-hero {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 50vh;
  overflow: hidden;
  box-sizing: border-box;
}

@media (min-width: 1280px) {
  .gm-about-hero {
    min-height: 60vh;
  }
}

/* =============================================
   BACKGROUND IMAGE CONTAINER
   ============================================= */
.gm-about-hero__bg-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 0;
}

/* =============================================
   BACKGROUND IMAGE
   ============================================= */
.gm-about-hero .gm-about-hero__bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* object-fit and object-position set via inline style from widget controls */
  z-index: 0;
}

/* =============================================
   DARK OVERLAY
   ============================================= */
.gm-about-hero__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 1;
}

/* =============================================
   CONTENT CONTAINER
   ============================================= */
.gm-about-hero__content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding-left: 16px;
  padding-right: 16px;
  margin-top: 64px;
  margin-left: auto;
  margin-right: auto;
  max-width: 896px;
  box-sizing: border-box;
}

/* =============================================
   ACCENT LINE
   ============================================= */
.gm-about-hero__accent-line {
  width: 40px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
  border: none;
}

/* =============================================
   SUBTITLE
   ============================================= */
.gm-about-hero__subtitle {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: rgba(255, 255, 255, 0.8);
  margin: 0 0 24px 0;
  padding: 0;
  line-height: 1.5;
}

/* =============================================
   TITLE
   ============================================= */
.gm-about-hero__title {
  font-family: 'Playfair Display', ui-serif, Georgia, serif;
  font-size: 2.25rem;        /* 36px -- mobile */
  line-height: 1.1;
  font-weight: 500;
  color: #FFFFFF;
  margin: 0 0 16px 0;
  padding: 0;
}

/* md breakpoint (768px+) */
@media (min-width: 768px) {
  .gm-about-hero__title {
    font-size: 3rem;          /* 48px */
    line-height: 1;
  }
}

/* lg breakpoint (1024px+) */
@media (min-width: 1024px) {
  .gm-about-hero__title {
    font-size: 56px;
    line-height: 1;
  }
}

/* =============================================
   TAGLINE
   ============================================= */
.gm-about-hero__tagline {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 48px 0;
  padding: 0;
  line-height: 1.5;
}

/* =============================================
   BREADCRUMB NAVIGATION
   ============================================= */
.gm-about-hero__breadcrumb {
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 0.025em;
  margin: auto 0 0 0;
  padding: 0;
  line-height: 1.4;
}

/* =============================================
   BREADCRUMB LINK
   ============================================= */
.gm-about-hero__breadcrumb-link {
  color: inherit;
  text-decoration: none;
  transition-property: color;
  transition-duration: 150ms;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.gm-about-hero__breadcrumb-link:hover,
.gm-about-hero__breadcrumb-link:focus {
  color: #FFFFFF;
}

.gm-about-hero__breadcrumb-link:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

/* =============================================
   BREADCRUMB SEPARATOR
   ============================================= */
.gm-about-hero__breadcrumb-separator {
  margin-left: 8px;
  margin-right: 8px;
  color: inherit;
  display: inline;
}

/* =============================================
   BREADCRUMB CURRENT PAGE
   ============================================= */
.gm-about-hero__breadcrumb-current {
  color: inherit;
  display: inline;
}
