/* ═══════════════════════════════════════
   LOCATION MAP - BD Jurkovičova v3
   ═══════════════════════════════════════ */

#location-map {
  width: 100%;
  height: 550px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.08);
}

/* BD Jurkovičova main marker */
.map-marker-bd {
  width: 52px;
  height: 52px;
  position: relative;
  cursor: pointer;
}
.map-marker-bd .marker-dot {
  width: 44px;
  height: 44px;
  background: #c9a17e;
  border: 4px solid #fff;
  border-radius: 50%;
  box-shadow: 0 3px 12px rgba(0,0,0,0.35);
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: 'Dosis', sans-serif;
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
}
.map-marker-bd .marker-pulse {
  width: 70px;
  height: 70px;
  background: rgba(201,161,126,0.25);
  border-radius: 50%;
  position: absolute;
  top: -9px;
  left: -9px;
  animation: pulse 2s ease-out infinite;
}
@keyframes pulse {
  0% { transform: scale(0.5); opacity: 1; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* POI markers */
.map-marker-poi {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s;
  border: 2px solid #fff;
}
.map-marker-poi:hover {
  transform: scale(1.2);
}

/* Popups */
.map-popup {
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  color: #444;
  line-height: 1.5;
  padding: 4px;
}
.map-popup strong {
  font-size: 15px;
  color: #333;
  display: block;
  margin-bottom: 2px;
}
.map-popup span {
  color: #c9a17e;
  font-weight: 600;
  font-size: 13px;
}
.map-popup-bd {
  font-family: 'Dosis', sans-serif;
  font-size: 15px;
  color: #333;
  padding: 6px;
  text-align: center;
}
.map-popup-bd strong {
  font-size: 17px;
  color: #c9a17e;
  display: block;
  margin-bottom: 4px;
}

.maplibregl-popup-content {
  border-radius: 8px !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
  padding: 10px 14px !important;
}

/* Filter buttons */
.map-filters {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
  flex-wrap: wrap;
  justify-content: center;
}
.map-filter-btn {
  padding: 8px 20px;
  border: 1px solid rgba(201,161,126,0.3);
  border-radius: 25px;
  background: transparent;
  color: #888;
  font-family: 'Dosis', sans-serif;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.2s;
}
.map-filter-btn:hover {
  border-color: #c9a17e;
  color: #c9a17e;
}
.map-filter-btn.active {
  background: #c9a17e;
  border-color: #c9a17e;
  color: #fff;
}

/* POI list below map */
.poi-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 40px;
}
.poi-category h3 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #c9a17e;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(201,161,126,0.2);
}
.poi-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  font-size: 15px;
  color: #555;
}
.poi-item .poi-dist {
  font-weight: 600;
  color: #c9a17e;
  white-space: nowrap;
  margin-left: 12px;
  font-size: 14px;
}

@media (max-width: 768px) {
  #location-map { height: 400px; }
  .poi-grid { grid-template-columns: 1fr; }
  .map-filters { gap: 6px; }
  .map-filter-btn { padding: 6px 14px; font-size: 13px; }
}
