/* Alaska road-trip map styles. All rules scoped under #trip-map or .tm- prefix.
   Themed to match the field-guide site (paper chrome, Archivo/Fraunces type).
   Route/marker fill colors are set in map.js and stay bright for legibility. */

#trip-map {
  width: 100%;
  height: 60vh;
  min-height: 380px;
  border-radius: 0;
  overflow: hidden;
  background: #dfe6e3;
}

/* Day-colored numbered place markers. */
.tm-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid #f4f1ea;
  box-shadow: 0 1px 4px rgba(31, 51, 41, 0.45);
  color: #fff;
  font: 700 13px/1 'Archivo', system-ui, -apple-system, sans-serif;
  text-align: center;
}

/* Legend and toggle control panels. */
.tm-legend,
.tm-toggle {
  background: rgba(244, 241, 234, 0.96);
  padding: 10px 12px;
  border: 1px solid #ddd6c8;
  border-radius: 10px;
  box-shadow: 0 6px 20px rgba(31, 51, 41, 0.18);
  font: 12px/1.45 'Spline Sans', system-ui, -apple-system, sans-serif;
  color: #1c2620;
  max-width: 220px;
}

.tm-legend h4,
.tm-toggle h4 {
  margin: 0 0 7px;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: #1f3329;
}

/* Collapsible header (tap to hide/show the panel body). */
.tm-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
  font-family: 'Archivo', system-ui, sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #1f3329;
}
.tm-caret {
  flex: 0 0 auto;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid #9a6a44;
  transition: transform 0.15s ease;
}
.tm-collapsed .tm-caret { transform: rotate(-90deg); }
.tm-body { margin-top: 8px; }
.tm-collapsed .tm-body { display: none; }

.tm-legend-row {
  display: flex;
  align-items: center;
  margin: 4px 0;
}

.tm-legend-swatch {
  flex: 0 0 auto;
  width: 16px;
  height: 4px;
  border-radius: 2px;
  margin-right: 8px;
}

.tm-legend-swatch.tm-dashed {
  background-image: repeating-linear-gradient(
    to right,
    currentColor 0,
    currentColor 4px,
    transparent 4px,
    transparent 7px
  );
}

.tm-toggle label {
  display: flex;
  align-items: center;
  margin: 5px 0;
  cursor: pointer;
}

.tm-toggle input {
  margin: 0 7px 0 0;
  accent-color: #9a6a44;
}

/* Popup styling. */
#trip-map .leaflet-popup-content-wrapper {
  background: #f8f6f1;
  border: 1px solid #ddd6c8;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(31, 51, 41, 0.22);
}
#trip-map .leaflet-popup-tip { background: #f8f6f1; border: 1px solid #ddd6c8; }
#trip-map .leaflet-popup-content {
  font: 13px/1.5 'Spline Sans', system-ui, -apple-system, sans-serif;
  color: #42514a;
}

#trip-map .tm-popup-title {
  display: block;
  font-family: 'Fraunces', Georgia, serif;
  font-weight: 600;
  font-size: 15px;
  color: #1f3329;
  margin-bottom: 4px;
}

/* Mobile tweaks. */
@media (max-width: 600px) {
  .tm-legend,
  .tm-toggle {
    font-size: 11px;
    max-width: 160px;
    padding: 7px 9px;
  }
}
