/* ===== Static Hero Background ===== */

.hero {
  height: 100vh;
  background: url('../assets/asset-tower.png') center/cover no-repeat;
  position: relative;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 2;
}

/* Hide animated layer in static mode */
.hero-bg {
  display: none;
}

/* Force scroll indicator to use theme accent */
.scroll-indicator {
  border: 2px solid var(--accent) !important;
}

.scroll-indicator span {
  background: var(--accent) !important;
}


