body {
  font-family: sans-serif;
  margin: 0;
  padding: 0;
  text-align: center;
}

#journey-map {
  height: 500px;
  margin: 20px;
  border-radius: 12px;
}

.controls {
  display:flex;
  gap:8px;
  flex-wrap:wrap;
  margin:12px 0;
  justify-content:center;
}

.btn {
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:10px;
  border:1px solid #26303a;
  background:rgba(15,15,15,0.6);
  color:#fff;
  cursor:pointer;
}
.btn.active { outline:2px solid #3b82f6; outline-offset:2px }

.btn::before {
  content:"";
  display:inline-block;
  width:10px;
  height:10px;
  border-radius:999px;
  background:#8b98a5;
}
.btn--lived::before   { background:#22c55e; } 
.btn--visited::before { background:#3b82f6; } 

/* Hero Journey section с фоном */
.journey-section {
  position: relative;
  min-height: 60vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #fff;
  background: url("./images/iceland.webp") no-repeat center/cover;
  margin: 0;
  border-radius: 0;
  padding: 40px 20px;
}

/* overlay затемняет фото */
.journey-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
  pointer-events: none; /* важно, кнопки кликабельны */
}

/* контент поверх overlay */
.journey-section > * {
  position: relative;
  z-index: 1;
}
