/* Tour Locations Map Styles */

.tour-locations-section {
  padding: 5rem 0;
  background: #ffffff;
}

.tour-map-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem 1rem;
}

.us-map {
  width: 100%;
  height: auto;
  max-height: 600px;
  display: block;
  margin: 0 auto;
}

/* State styling */
.us-map .state {
  fill: #f8f9fa;
  stroke: #dee2e6;
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.us-map .state:hover {
  fill: #e9ecef;
  stroke: #003466;
  stroke-width: 2;
}

/* Tour location stars */
.tour-location {
  cursor: pointer;
  transition: transform 0.3s ease;
}

.tour-location:hover {
  transform: scale(1.2);
}

.tour-location circle {
  fill: #ffe803;
  stroke: #ffffff;
  stroke-width: 2;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
  animation: pulse 2s ease-in-out infinite;
}

.tour-location path {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* City labels */
.city-label {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  fill: #003466;
  pointer-events: none;
  text-shadow: 0 1px 2px rgba(255, 255, 255, 0.8);
}

/* Pulse animation for stars */
@keyframes pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.05);
  }
}

.tour-location:hover circle {
  animation: none;
  fill: #ffd700;
  transform: scale(1.1);
}

.tour-locations-info {
  margin-top: 2rem;
  padding: 0 1rem;
}

.tour-locations-description {
  font-size: 1.125rem;
  color: #666;
  line-height: 1.7;
  max-width: 800px;
  margin: 0 auto;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
  .tour-map-container {
    padding: 1.5rem 1rem;
  }
  
  .city-label {
    font-size: 12px;
  }
}

@media (max-width: 767.98px) {
  .tour-locations-section {
    padding: 3rem 0;
  }
  
  .tour-map-container {
    padding: 1rem 0.5rem;
  }
  
  .city-label {
    font-size: 10px;
  }
  
  .tour-locations-description {
    font-size: 1rem;
  }
}

