/* ================================================================
   Me2You - Safe meet-up locations styles
   Moved out of the inline <style> block and inline style attributes
   on app/meetup/locations.php. Reuses shared design tokens from site.css.
   The Leaflet marker pin styling now lives in .meetup-marker-pin; the
   marker html in the page JS is still placed per map marker at runtime.
   ================================================================ */

/* Page shell */
.mu-page {
  max-width: 780px;
}
.mu-back {
  font-size: 13px;
}
.mu-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 26px;
  font-weight: 700;
  color: var(--ink-900);
  margin: 0 0 6px;
}
.mu-lead {
  font-size: 14px;
}

/* Trust banner */
.mu-trust {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 22px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #e8f5ed 0%, #d0ecd8 100%);
  border: 1px solid var(--success);
  color: #1E6E3E;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}
.mu-trust svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  stroke: #1E6E3E;
  margin-top: 1px;
}
.mu-trust strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
}

/* Map */
#meetup-map {
  height: 400px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--ink-100);
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
  overflow: hidden;
  z-index: 1;
}

/* Custom marker popup */
.mu-popup-type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 4px;
}
.mu-popup-type--police {
  background: #dbeafe;
  color: #1e40af;
}
.mu-popup-type--mall {
  background: var(--brand-orange-100);
  color: var(--brand-orange-700);
}
.mu-popup-name {
  font-weight: 700;
  font-size: 14px;
  color: var(--ink-900);
  margin: 2px 0;
}
.mu-popup-addr {
  font-size: 12px;
  color: var(--ink-500);
  margin-bottom: 2px;
}
.mu-popup-hours {
  font-size: 11px;
  color: var(--ink-500);
}

/* Location cards */
.mu-section-title {
  font-family: 'Quicksand', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--ink-700);
  margin: 32px 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--ink-100);
  display: flex;
  align-items: center;
  gap: 8px;
}
.mu-section-title svg {
  width: 20px;
  height: 20px;
  stroke: var(--brand-orange);
}

.mu-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
@media (max-width: 600px) {
  .mu-cards {
    grid-template-columns: 1fr;
  }
}

.mu-card {
  background: var(--paper);
  border: 1px solid var(--ink-100);
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.04);
}
.mu-card__type {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 2px 8px;
  border-radius: 999px;
  margin-bottom: 6px;
}
.mu-card__type--police {
  background: #dbeafe;
  color: #1e40af;
}
.mu-card__type--mall {
  background: var(--brand-orange-100);
  color: var(--brand-orange-700);
}
.mu-card__name {
  font-weight: 700;
  font-size: 15px;
  color: var(--ink-900);
  margin-bottom: 4px;
}
.mu-card__addr {
  font-size: 13px;
  color: var(--ink-600);
  margin-bottom: 2px;
}
.mu-card__hours {
  font-size: 12px;
  color: var(--ink-500);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 5px;
}
.mu-card__hours svg {
  width: 13px;
  height: 13px;
  stroke: var(--ink-400);
}
.mu-card__dir {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--brand-orange-700);
  text-decoration: none;
  transition: color 0.15s;
}
.mu-card__dir:hover {
  color: var(--brand-orange-600);
  text-decoration: underline;
}
.mu-card__dir svg {
  width: 14px;
  height: 14px;
}

/* Tips section */
.mu-tips {
  background: var(--brand-orange-50);
  border: 1px solid var(--brand-orange-100);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-top: 28px;
}
.mu-tips h3 {
  font-family: 'Quicksand', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink-700);
  margin: 0 0 10px;
}
.mu-tips ul {
  margin: 0;
  padding-left: 20px;
}
.mu-tips li {
  font-size: 13px;
  color: var(--ink-600);
  margin-bottom: 6px;
  line-height: 1.5;
}
.mu-tips li:last-child {
  margin-bottom: 0;
}

/* Leaflet custom marker pin (static styling; markers placed at runtime) */
.meetup-marker-pin {
  width: 30px;
  height: 30px;
  background: var(--brand-orange);
  border-radius: 50% 50% 50% 0;
  transform: rotate(-45deg);
  border: 3px solid #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}
