/*
 Theme Name: Inspiro Child
 Template: inspiro
 Version: 1.0
*/

/* simple full-bleed hero that sits below the normal Inspiro header */
.tpl-hero {
  position: relative;
  min-height: 62vh;
  display: grid;
  place-items: end start;
  isolation: isolate;
  color: #fff;
}

/* background image via CSS variable from inline style */
.tpl-hero__bg {
  position: absolute;
  inset: 0;
  background-image: var(--hero);
  background-size: cover;
  background-position: center;
  z-index: -2;
}

/* soft dark overlay so white text reads on any photo */
.tpl-hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.55) 100%);
  z-index: -1;
}

.tpl-hero__inner {
  width: min(1200px, 92%);
  margin: 0 auto 2.5rem;
}

.tpl-hero__title {
  font-size: clamp(2rem, 4vw + 1rem, 3.25rem);
  line-height: 1.1;
  margin: 0;
  font-weight: 700;
}

/* optional: give the first content block a little top space */
.tpl-hero__content {
  padding-top: 2rem;
}


.site-header, #site-header {
  background: transparent;
  position: absolute;
  width: 100%;
  z-index: 20;
}
body.admin-bar .site-header {
  top: 32px; 
}

