/* =========================
   HERO HOME LAYOUT
========================= */

.hero-home {
  height: 100vh;
  width: 100%;
  background: var(--bone-off);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url("https://www.transparenttextures.com/patterns/asfalt-dark.png");
}

.hero-home img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1200px) {
  .hero-home img {
    width: 220%;
    margin-left: -60%;
    margin-top: 20%;
    margin-bottom: 10%;
    height: auto;
    object-fit: cover;
  }
}

@media (max-width: 800px) {
  .hero-home img {
    margin-bottom: 25%;
  }
}

/* =========================
   MIST / FOG LAYER (STATIC)
========================= */

.mist-layer {
  position: absolute;
  inset: 0;
  pointer-events: none;

  background:
    radial-gradient(circle at 20% 30%, rgba(223,223,198,0.10), transparent 45%),
    radial-gradient(circle at 80% 60%, rgba(159,16,16,0.06), transparent 50%),
    radial-gradient(circle at 50% 100%, rgba(223,223,198,0.08), transparent 55%);
}

/* =========================
   LOGO WRAPPER
========================= */

.logo-wrap {
  text-align: center;
}


.hero-logo {
  width: 100vw;
  height: auto;
  max-height: 90vh;
  object-fit: contain;

  opacity: 1;
  transform: none;

}


/* mobile */
@media (max-width: 800px) {
  .hero-logo {
    width: 80vw;
  }
}
