/**
 * Map page CSS — map.css
 * Place in public/css/map.css
 */
.map-page-wrapper {
  display: flex;
  flex-direction: column;
  height: calc(100vh - 64px); /* subtract nav height */
}

.map-header {
  padding: 1rem 1.5rem;
  background: #f9f7f2;
  border-bottom: 1px solid #e0d8cc;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.map-header h1 {
  font-family: "Uncial Antiqua", Georgia, serif;
  font-size: 1.3rem;
  color: #1a1a1a;
  margin: 0;
}

.map-header p {
  font-size: 0.85rem;
  color: #666;
  margin: 0;
}

.map-container {
  flex: 1;
  position: relative;
}

#map {
  width: 100%;
  height: 100%;
  min-height: 500px;
}

/* Leaflet popup override to match brand */
.leaflet-popup-content-wrapper {
  border-radius: 10px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Legend */
.info.legend {
  font-family: inherit;
  font-size: 0.8rem !important;
}

/* Mobile */
@media (max-width: 640px) {
  .map-page-wrapper {
    height: calc(100vh - 56px);
  }
  .map-header {
    padding: 0.75rem 1rem;
  }
  .map-header h1 { font-size: 1.1rem; }
}
