/* ============================================================
   MAP STYLES — Interactive Romania SVG Map
   ============================================================ */

.map-section {
  padding: 7rem 2rem;
}

.map-container {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}

/* Inline SVG map overrides */
#romania-svg-map {
  width: 100%;
  height: auto;
  display: block;
}

#romania-svg-map path {
  fill: rgba(10, 25, 65, 0.85) !important;
  stroke: rgba(74, 158, 255, 0.3) !important;
  stroke-width: 0.5 !important;
  transition: fill 0.3s ease;
}

/* City markers overlay */
.city-markers {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.city-marker {
  position: absolute;
  pointer-events: all;
  transform: translate(-50%, -50%);
}

.city-dot {
  width: 12px;
  height: 12px;
  background: var(--clr-gold);
  border-radius: 50%;
  box-shadow: 0 0 8px 2px rgba(201, 168, 76, 0.6);
  animation: cityGlow 2.5s ease-in-out infinite;
  position: relative;
  z-index: 2;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.city-dot:hover {
  transform: scale(1.6);
}

.city-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 168, 76, 0.35);
  animation: ringExpand 2.5s ease-in-out infinite;
}

.city-name {
  position: absolute;
  white-space: nowrap;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-gold-light);
  text-shadow: 0 0 10px rgba(0, 0, 0, 0.8);
  pointer-events: none;
  top: 50%;
  transform: translateY(-50%);
  left: 18px;
  background: rgba(6, 12, 30, 0.7);
  padding: 0.2rem 0.5rem;
  border-radius: 3px;
  backdrop-filter: blur(4px);
}

@keyframes cityGlow {
  0%, 100% {
    box-shadow: 0 0 6px 1px rgba(201, 168, 76, 0.5);
  }
  50% {
    box-shadow: 0 0 20px 6px rgba(201, 168, 76, 0.85);
  }
}

@keyframes ringExpand {
  0% {
    opacity: 1;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    transform: scale(2.5);
  }
}
