/* Map Section Styles */
.ww-section-map {
  padding: 20px 20px; /* Padding around the map section */
  background-color: #f9f9f9; /* Light background color for contrast */
  text-align: center; /* Center-align the title */
  border-radius: 8px; /* Rounded corners for the section */
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
}

/* Map Title Styles */
.map-title {
  font-size: 24px; /* Font size for the title */
  font-family: 'Playfair', serif; /* Custom font */
  color: #333; /* Dark text color */
  margin-bottom: 20px; /* Space below the title */
}

/* Map Container Styles */
.map-container {
  position: relative; /* Relative positioning for inner elements */
  overflow: hidden; /* Ensure no overflow from the container */
  border-radius: 8px; /* Match the container's rounded corners */
}

/* Google Map Styles */
.google-map {
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  border: none; /* Remove default border */
}

/* Map Overlay Styles */
.map-overlay {
  position: relative; /* Positioning for marker */
  border-radius: 8px; /* Match the container's rounded corners */
}

/* Location Marker Styles */
.location-marker {
  position: absolute; /* Position relative to the map */
  top: 50%; /* Center vertically */
  left: 50%; /* Center horizontally */
  transform: translate(-50%, -100%); /* Adjust for marker size */
  width: 40px; /* Adjust width for your marker image */
  height: auto; /* Maintain aspect ratio */
  border-radius: 50%;
}

/* Responsive Map Styles */
@media (max-width: 600px) {
  .map-container {
    height: 200px; /* Reduce height for smaller screens */
  }

  .ww-section-map {
    padding: 10px 10px; /* Reduce padding for smaller screens */
  }
}
