/* Stylesheet for the static, server-rendered /smoking-areas/* pages.
   Deliberately plain global CSS (not CSS Modules) — these pages are outside
   the React app's build, generated straight to HTML at build time. */

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: system-ui, "Segoe UI", Roboto, "Helvetica Neue", sans-serif;
  color: #1c1c1e;
  background: #ffffff;
  line-height: 1.5;
}

.header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 20px;
  border-bottom: 1px solid #ececec;
}

.header img {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.header a {
  color: #1c1c1e;
  font-weight: 700;
  text-decoration: none;
  font-size: 1.05rem;
}

.breadcrumb {
  padding: 12px 20px 0;
  font-size: 0.85rem;
  color: #6b6b6b;
}

.breadcrumb a {
  color: #6b6b6b;
}

.container {
  max-width: 720px;
  margin: 0 auto;
  padding: 12px 20px 100px;
}

h1 {
  font-size: 1.6rem;
  margin: 12px 0 8px;
}

.intro {
  color: #4a4a4c;
  margin: 0 0 20px;
}

.map-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 12px;
  background: #1c1c1e;
  color: #ffffff;
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 24px;
}

.map-cta-sticky {
  position: fixed;
  right: 16px;
  bottom: calc(16px + env(safe-area-inset-bottom, 0px));
  z-index: 100;
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 24px;
  background: #ff8a3d;
  color: #1c1c1e;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.rules {
  background: #f7f6f4;
  border-radius: 12px;
  padding: 16px 20px;
  margin: 0 0 24px;
  font-size: 0.9rem;
  color: #3a3a3c;
}

.rules h2 {
  font-size: 1rem;
  margin: 0 0 8px;
}

.ward-grid {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0 0 24px;
  list-style: none;
}

.ward-grid a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid #ececec;
  border-radius: 10px;
  color: #1c1c1e;
  text-decoration: none;
  font-weight: 600;
}

.ward-grid span {
  color: #8a8a8a;
  font-weight: 400;
  font-size: 0.85rem;
}

.place-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.place {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid #ececec;
}

.place img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 10px;
  flex-shrink: 0;
  background: #f0f0f0;
}

.place-name {
  font-weight: 700;
  margin: 0 0 4px;
}

.place-address {
  color: #4a4a4c;
  font-size: 0.9rem;
  margin: 0 0 4px;
}

.place-hours {
  color: #6b6b6b;
  font-size: 0.85rem;
  margin: 0 0 6px;
}

.place-directions {
  font-size: 0.85rem;
  font-weight: 600;
  color: #ff8a3d;
  text-decoration: none;
}

.footer-nav {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid #ececec;
  display: flex;
  gap: 16px;
  font-size: 0.9rem;
}
