/* ==========================================
   🗺️ HERO MAP STYLES — hero.css
   Used for pages that only show the gold map
   between the header and footer.
========================================== */

/* ------------------------------
   🌍 FULLSCREEN MAP WRAPPER
---------------------------------*/
.hero-map-only {
  position: relative;
  width: 100%;
  height: calc(100vh - 8rem); /* Adjust if your header and footer height changes */
  overflow: hidden;
  z-index: 1;
}

/* ------------------------------
   🖼️ GOLD MAP BACKGROUND (STATIC)
---------------------------------*/
.map-background {
  background-image: url('../../assets/images/goldmap.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

/* ------------------------------
   🧭 HERO BLOCK (OPTIONAL OVERLAY)
---------------------------------*/
.hero {
  position: relative;
  width: 100%;
  height: 80vh; /* Adjust as needed */
  background-image: url('../../assets/images/goldmap.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
