:root { --bar-h: 56px; }

* { box-sizing: border-box; font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif; }

body { margin: 0; }

.topbar{
  height: var(--bar-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 14px;
  border-bottom: 1px solid #e6e6e6;
}

.topbar h1{
  margin: 0;
  font-size: 16px;
  font-weight: 650;
}

.topbar a{
  text-decoration: none;
  font-size: 14px;
}

#map{
  height: calc(100vh - var(--bar-h) - 36px);
  width: 100%;
}

.footer{
  height: 36px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-top: 1px solid #e6e6e6;
  font-size: 12px;
  color: #444;
}


.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.menu-card {
  display: block;
  padding: 18px;
  border-radius: 14px;
  background: #f5f7f6;
  text-decoration: none;
  color: inherit;
  border: 1px solid #e0e6e3;
}

.menu-card:hover {
  background: #eef3f1;
}

.menu-emoji {
  font-size: 28px;
  margin-bottom: 8px;
}

.menu-title {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 4px;
}

.menu-desc {
  font-size: 14px;
  color: #444;
}


.topbar nav {
  display: flex;
  gap: 24px;
}

.topbar nav a {
  padding: 6px 10px;
  border-radius: 10px;
  background: #19af46;
  border: 1px solid #f3f8f5;
}
