/* ===============================
   🌍 GOLDMAP SECTION STYLES — goldmap-section.css
   Applies to pages with a fantasy-style map background
================================ */

/* ---------------------------------
   🗺️ SECTION: Map Background
   Controls background image, layout, and stacking
---------------------------------- */
.colormap-section {
  position: relative;
  background-image: url('../../assets/images/goldmap.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 80vh;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  padding-top: 3rem;
  z-index: 0;
}

/* ---------------------------------
   🌫️ SECTION: Dark Overlay Layer
   Semi-transparent layer for contrast
---------------------------------- */
.colormap-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 13, 4, 0.7);
  z-index: 2;
}

/* ---------------------------------
   📜 SECTION: Overlay Text Content
   Text styles and layout positioning
---------------------------------- */
.colormap-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: #c9aa71;
  font-family: 'Cinzel', serif;
}

/* ---------------------------------
   🧭 SECTION: Realm Map Buttons
   Floating links and icon styling
---------------------------------- */
.map-link {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #c9aa71;
  font-family: 'Cinzel', serif;
  z-index: 3;
  transition: transform 0.3s ease;
}

.map-link img {
  width: 60px;
  height: auto;
  margin-bottom: 4px;
}

.map-link span {
  font-size: 0.9rem;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 8px;
  border-radius: 4px;
  text-align: center;
}

.map-link:hover {
  transform: scale(1.1);
}

/* ---------------------------------
   📌 SECTION: Map Link Placement
   Top and side-aligned icon positions
---------------------------------- */
.left-link.link-1  { top: 20%; left: 8%; }
.left-link.link-2  { top: 40%; left: 8%; }
.left-link.link-3  { top: 60%; left: 8%; }

.right-link.link-1 { top: 20%; right: 8%; }
.right-link.link-2 { top: 40%; right: 8%; }
.right-link.link-3 { top: 60%; right: 8%; }
