/* HERO IMAGE OVERRIDE */



/* .hero-with-image {
  background-image: url("../images/CruzGod1.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 120px 90px;
}

.header.hero-with-image .h1 {
  background-position: center;

} */

.hero-with-image {
    position: relative;
    background-image: url("../images/CruzGod1.png");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    padding: 60px 40px;
    min-height: 360px;
    display: flex;
    align-items: center;
    box-sizing: border-box;
}

.hero-with-image .header-left {
  align-items: center;
}

.hero-with-image .header-row {
    z-index: 1;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;

  text-align: center;
}

/* Larger screens get a bit more height */
@media (min-width: 1200px) {
    .hero-with-image {
        min-height: 420px;
        padding: 80px 60px;
    }
}

/* Tablet */
@media (max-width: 900px) {
    .hero-with-image {
        padding: 50px 30px;
        min-height: 300px;
    }
}

/* Mobile */
@media (max-width: 600px) {
    .hero-with-image {
        padding: 160px 50px;
        min-height: 220px;
        background-position: center top;
    }
}

.hero-with-image {
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { background-size: 100%; }
  to { background-size: 110%; }
}

/* Text update h1*/

.hero-with-image h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(1.84rem, 2.5vw, 2.5rem);
  letter-spacing: 0.01em;
  font-weight: 600;

  color: #f5e6b3;

  text-shadow:
    0 2px 10px rgba(0,0,0,0.8),
    0 0 25px rgba(255,215,120,0.2);

  margin-bottom: 10px;
}
/* Subtitle styling */

.hero-with-image .sub {
  font-family: 'Libre Baskerville', serif;
  letter-spacing: 0.08em;
  color: rgba(20, 20, 20, 0.9);
}

.hero-with-image h1 {
  animation: titleFade 1.5s ease;
}

@keyframes titleFade {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}