.map-main-container {
  position: relative;
  width: 100%;
  height: 600px;
  /* Adjust as needed */
  overflow: hidden;
  border: unset;
  border-radius: unset;
  background-color: transparent;
  /* Default background */
}
/* Pink skewed overlay */
.pink-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #F29FC5;
  /* Pink background */
  /* Same skewed shape as the map cutout */
  clip-path: polygon(0% 15%, 100% 5%, 100% 95%, 0% 85%);
}
.map-wrapper {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  /* Same clip path as the pink overlay */
  clip-path: polygon(0% 15%, 100% 5%, 100% 95%, 0% 85%);
  z-index: 2;
  /* Ensures map is above pink background */
}
#map {
  position: absolute;
  width: 150%;
  /* Make map wider than container */
  height: 100%;
  left: -35%;
  /* Move map left */
}
.map-locations-panel {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 40%;
  z-index: 3;
  /* Places labels above everything */
}
.map-title {
  background-color: #e05d5d;
  color: white;
  padding: 5px 15px;
  display: inline-block;
  margin-bottom: 20px;
  font-weight: bold;
  font-family: sans-serif;
}
.map-location-list {
  display: flex;
  justify-content: space-between;
}
.map-location-column {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 48%;
}
.map-location-item {
  background-color: white;
  color: #F04E5B;
  padding: 5px 10px;
  text-align: center;
  font-weight: bold;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Reso";
  font-size: 22px;
  width: max-content;
}
.map-location-item:hover, .map-location-item.active {
  background-color: #F04E5B;
  color: white;
}
/* Responsive adjustments */
@media (max-width: 768px) {
  .map-locations-panel {
    position: relative;
    width: 100%;
    transform: none;
    top: auto;
    right: auto;
    padding: 20px;
  }
  .map-location-list {
    flex-direction: column;
  }
  .map-location-column {
    width: 100%;
  }
}
/* Main pin container */
#location-pin {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
  transform-origin: center bottom;
  pointer-events: none;
  /* Allow click-through to elements below */
  z-index: 9999;
  /* Keep on top of other map elements */
}
/* Animation for pin appearance */
@keyframes pinDrop {
  0% {
    transform: translateY(-20px) scale(0.8);
    opacity: 0;
  }
  50% {
    transform: translateY(5px) scale(1.05);
    opacity: 1;
  }
  75% {
    transform: translateY(-3px) scale(0.95);
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}
/* Apply animation - we'll do this with JS now for better control */
.pin-animate {
  animation: pinDrop 0.5s ease-out forwards;
}
/* Image container within the pin */
#img-2 {
  /* This might be needed to ensure the image container in the pin is properly filled */
  overflow: hidden;
}
/* Make sure SVG patterns display correctly */
pattern image {
  object-fit: cover;
  /* Ensures the image covers the area */
  width: 100%;
  height: 100%;
}
/* Mobile-specific map layout */
@media (max-width: 768px) {
  /* Ensure map container is properly sized */
  /* Keep the pink overlay visible but behind the map */
  /* Ensure map wrapper stays above the overlay */
  /* Hide only the interactive elements of the map */
  /* Keep the map image visible */
  /* Reposition locations panel to be above everything */
  /* Keep two columns but make them more compact */
  /* Make columns more narrow */
  /* Make location buttons smaller and more compact */
  /* Additional smaller screen adjustment */
  .amsterdammap .map-main-container {
    height: auto;
    min-height: 600px;
    position: relative;
  }
  .amsterdammap .pink-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: #F29FC5;
    clip-path: polygon(0% 15%, 100% 5%, 100% 95%, 0% 85%);
    z-index: 1;
  }
  .amsterdammap .map-wrapper {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    clip-path: polygon(0% 15%, 100% 5%, 100% 95%, 0% 85%);
    z-index: 2;
    /* Ensure this is higher than the overlay */
  }
  .amsterdammap .map-wrapper .dynamicmap svg g#markers-layer {
    display: none;
  }
  .amsterdammap #map {
    position: absolute;
    width: 135%;
    height: 100%;
    left: -35%;
    z-index: 2;
  }
  .amsterdammap .map-locations-panel {
    position: absolute;
    width: 90%;
    left: 5%;
    bottom: 5%;
    right: auto;
    top: auto;
    transform: none;
    z-index: 3;
    /* Higher than map and overlay */
  }
  .amsterdammap .map-location-list {
    display: flex;
    flex-direction: row;
    gap: 10px;
  }
  .amsterdammap .map-location-column {
    width: 48%;
  }
  .amsterdammap .map-location-item {
    background-color: white;
    color: #F04E5B;
    padding: 5px 8px;
    margin: 3px 0;
    text-align: center;
    font-weight: bold;
    font-family: "Reso", sans-serif;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
}
@media (max-width: 768px) and (max-width: 480px) {
  .amsterdammap .map-location-item {
    font-size: 10px;
    padding: 4px 6px;
  }
}

/*******************************************************************/
/* ftrtch dino */
/* [type: CSS] [file:hub-mapsterdam] [7.1538] DESIGN*/
/*******************************************************************/
/* 0.7 P>P */
/* db 104 */
/* packed 04/06/2025 13:06:42 **/