.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: white;
	height:100%;
}
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2); /* adjust opacity as needed */
  z-index: 0.5;
  pointer-events: none;
}
.acf-hero-block {
  position: relative;
}
.acf-hero-block h1 {
  font-family: 'trumpsoftpro', sans-serif;
  font-size: clamp(5rem, 8vw, 8rem);
  text-transform: uppercase;
  margin: 0;
  color: transparent;
  background-image: linear-gradient(60deg, #F36d24 40%, #d41c5a 50%, #692c8b 75%, #692c8b 100%);
  background-size: 300%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0;
  animation: slideInUp 0.6s ease-out forwards, gradientSlide 6s ease-in-out infinite alternate;
  animation-delay: 0.2s, 0s;
	    line-height: 1;
}
@keyframes gradientSlide {
  0% {
    background-position: 0% 50%;
  }
  100% {
    background-position: 100% 50%;
  }
}
.acf-hero-block p {
  	font-family: 'proxima-nova', sans-serif;
  	max-width: 800px;
  	margin: 0 auto;
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
	font-size: clamp(1.4rem, 6vw, 2.4rem);
}
.wp-site-blocks > .acf-hero-block {
  margin-block-start: 0;
}
