/* style.css sets body { overflow:hidden; height:100% } for the fixed-canvas
   screens (index/mapselect). This page scrolls, so override both here. */
body.home-page {
  margin: 0;
  background: #171717;
  min-height: 100vh;
  height: auto;
  overflow-y: auto;
  overflow-x: hidden;
}

.home-header-bar {
  position: sticky;
  top: 0;
  height: 90px;
  background: #151515;
  display: flex;
  align-items: center;
  padding-left: 57px;
  z-index: 5;
}
.home-header-title {
  font-family: "Kenyan Coffee", system-ui, sans-serif;
  font-size: 24px;
  color: #fff;
}

.home-content {
  padding: 40px 64px 80px;
}

.home-section-title {
  margin: 0 0 24px;
  font-family: "Kenyan Coffee", system-ui, sans-serif;
  font-style: italic;
  font-size: 48px;
  color: #fff;
}

.map-mode-section { margin-bottom: 40px; }
.map-mode-heading {
  margin: 0 0 16px;
  font-family: system-ui, sans-serif;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-dim, #8b96a5);
}

.map-card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.map-card {
  position: relative;
  width: 382px;
  height: 215px;
  border-radius: 12px;
  overflow: hidden;
  display: block;
  text-decoration: none;
  background-color: #b1b2b5;
  background-size: cover;
  background-position: center;
}
.map-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  transition: background 0.15s ease;
}
.map-card:hover::before { background: rgba(0, 0, 0, 0.4); }

.map-card-empty {
  background-color: #2a2a2a;
  cursor: default;
}
.map-card-empty::before { background: rgba(0, 0, 0, 0.35); }
.map-card-empty:hover::before { background: rgba(0, 0, 0, 0.35); }

.map-card-label {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  font-family: "Kenyan Coffee", system-ui, sans-serif;
  font-style: italic;
  font-size: 28px;
  line-height: 1.2;
  color: #fff;
  z-index: 1;
}
