/* ======= Base ======= */
body {
  margin: 0;
  font-family: Arial, sans-serif;
  background: #f5f8fa;
  color: #0f172a;
  -webkit-font-smoothing: antialiased;
}

/* ======= Header ======= */
.site-header {
  background: #0e3b3a;
  color: #fff;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 10;
}

.site-header h1 {
  margin: 0;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.site-header nav a {
  color: #fff;
  margin-left: 18px;
  text-decoration: none;
  font-weight: bold;
  padding: 6px 10px;
  border-radius: 6px;
  transition: background .2s;
}
.site-header nav a:hover,
.site-header nav a.active {
  background: rgba(255,255,255,.15);
}

/* ======= Hero ======= */
.hero {
  padding: 40px 20px;
  text-align: center;
  background: linear-gradient(to right, #0e3b3a, #13a39b);
  color: #fff;
}

.hero h2 {
  font-size: 32px;
  margin-bottom: 12px;
}
.hero .lead {
  max-width: 680px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.5;
}

#searchForm {
  display: flex;
  justify-content: center;
  gap: 10px;
}
#searchForm input {
  padding: 12px;
  width: 300px;
  border-radius: 8px;
  border: 1px solid #ccc;
}
#searchForm button {
  padding: 12px 20px;
  border: none;
  border-radius: 8px;
  background: #13a39b;
  color: #fff;
  font-weight: bold;
  cursor: pointer;
}
#searchForm button:hover {
  background: #0e3b3a;
}










/* ======= Map ======= */
.map-section {
  display: flex;
  justify-content: center;   /* horizontal center */
  margin: 30px auto;
}

#map {
  width: 100%;
  max-width: 1000px;         /* cap width */
  height: 600px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid #ddd;
  overflow: hidden;
}

/* center the results panel as well */
.results-panel {
  max-width: 1000px;
  margin: 20px auto;
  padding: 15px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}


















.results-panel h3 {
  margin-top: 0;
  font-size: 20px;
  color: #0e3b3a;
}

/* ======= Footer ======= */
.site-footer {
  background: #0e3b3a;
  color: #fff;
  text-align: center;
  padding: 14px;
  font-size: 14px;
  margin-top: 30px;
}

/* —— Map popup buttons —— */
.popup-title{
  font-weight: 800;
  margin-bottom: 6px;
}
.popup-actions{
  display: flex;
  gap: 8px;
}
.btn{
  display:inline-block;
  padding: 8px 10px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  color: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.12);
  white-space: nowrap;
}
.btn-google{ background: #1a73e8; }
.btn-google:hover{ filter: brightness(1.05); }
.btn-apple{ background: #111; }
.btn-apple:hover{ filter: brightness(1.05); }

/* —— Result card buttons —— */
.result-actions{
  margin-top: 10px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}





