/* Basic reset */
* { box-sizing: border-box; }
html, body { height: 100%; margin: 0; font-family: "Trebuchet MS", "Lucida Grande", "Lucida Sans Unicode",
               "Lucida Sans", Arial, sans-serif; }

.map { position: absolute; top: 64px; bottom: 0; width: 100%; }

/* Top bar */
.topbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 10px 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(0,0,0,0.08);
  z-index: 10;
}

.brand__title { font-weight: 700; }
.brand__tagline { font-size: 12px; opacity: 0.75; max-width: 760px; }

.actions { display: flex; gap: 10px; align-items: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 12px;
  border-radius: 10px;
  border: 1px solid rgba(0,0,0,0.15);
  text-decoration: none;
  color: inherit;
  background: white;
  font-size: 14px;
}
.btn--primary {
  border-color: rgba(0,0,0,0.0);
  background: black;
  color: white;
}

/* Popup */
.popup h3 { margin: 0 0 6px 0; font-size: 15px; }
.popup .meta { font-size: 12px; opacity: 0.75; margin-bottom: 8px; }
.popup .notes { font-size: 13px; line-height: 1.35; margin: 8px 0; }
.popup .row { font-size: 12px; display: flex; gap: 8px; flex-wrap: wrap; opacity: 0.85; }
.popup a { color: inherit; text-decoration: underline; }

.form-page {
  max-width: 720px;
  margin: 2rem auto;
  padding: 0 1rem;
}

.form-intro {
  margin-bottom: 2rem;
  color: #444;
}

.location-form fieldset {
  border: none;
  padding: 0;
  margin-bottom: 2rem;
}

.location-form legend {
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.location-form label {
  display: flex;
  flex-direction: column;
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.location-form input,
.location-form textarea,
.location-form select {
  padding: 0.6rem;
  font-size: 1rem;
  margin-top: 0.25rem;
}

.checkbox {
  flex-direction: row;
  align-items: center;
  gap: 0.5rem;
}

.tip-jar {
  position: fixed;
  right: 16px;
  bottom: 16px;
  z-index: 1000;

  padding: 10px 14px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;

  backdrop-filter: blur(6px);
  transition: background 0.2s ease, transform 0.2s ease;
}

.tip-jar:hover {
  background: rgba(0, 0, 0, 0.75);
  transform: translateY(-1px);
}

.tip-jar-disclaimer {
  position: fixed;
  right: 16px;
  bottom: 56px;
  font-size: 11px;
  color: rgba(255,255,255,0.7);
}