/* Lumaps Haupt-Website - Pointer/Marker + Vorschau-Karte (Design-Kit) */

.pointer-marker {
  width: 28px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.pointer-marker-dot {
  width: 16px;
  height: 16px;
  background: #0B0B0B;
  border: 3px solid #FDFCF8;
  border-radius: 50%;
  box-shadow: 0 1px 5px rgba(11, 11, 11, 0.45);
  transition: transform 0.15s, background 0.15s;
}

.pointer-marker:hover .pointer-marker-dot {
  transform: scale(1.2);
  background: #C8B6E2;
}

.maplibregl-popup-content {
  padding: 0;
  border-radius: 12px;
  font-family: "Quicksand", sans-serif;
  box-shadow: 0 4px 18px rgba(11, 11, 11, 0.28);
  background: #FDFCF8;
  border: 2px solid #9FD8C4;
  overflow: hidden;
}

.maplibregl-popup-close-button {
  display: none;
}

.maplibregl-popup-tip {
  display: none;
}

.pointer-card {
  width: 240px;
  background: #FDFCF8;
  overflow: hidden;
}

.pointer-card-img {
  position: relative;
  width: 100%;
  height: 150px;
  background: #EDEBE6;
  background-image:
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 14px,
      rgba(11, 11, 11, 0.08) 14px,
      rgba(11, 11, 11, 0.08) 15px
    );
  overflow: hidden;
}

.pointer-card-plus {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 32px;
  height: 32px;
  background: #0B0B0B;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.pointer-card-plus:hover {
  background: #C8B6E2;
}

.pointer-card-plus svg {
  width: 18px;
  height: 18px;
  fill: #FDFCF8;
}

.pointer-card-body {
  padding: 12px 14px;
}

.pointer-card-title {
  font-size: 18px;
  font-weight: 700;
  color: #0B0B0B;
  margin-bottom: 8px;
  line-height: 1.2;
  font-family: "Playfair Display", serif;
}

.pointer-card-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pointer-card-tag {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  color: #0B0B0B;
  background: rgba(159, 216, 196, 0.35);
  padding: 4px 10px;
  border-radius: 6px;
}

.pointer-card-tag-icon {
  font-size: 14px;
}
