
/* Bee Underground – Parchment + Honey Theme
   Drop in at: reporting/assets/theme.css
   Link with: <link rel="stylesheet" href="theme.css">
*/

:root {
  --bg:#fffdf8;
  --panel:#fffaf0;
  --text:#2d240f;
  --muted:#7a6d56;
  --line:#f0e7d8;
  --brand:#ffb600;
  --chip-low-bg:#f1faee; --chip-low-fg:#0e4429;
  --chip-mod-bg:#fff4cc; --chip-mod-fg:#5a3a00;
  --chip-high-bg:#ffe0e6; --chip-high-fg:#6a0f22;
}

/* Base */

/* Spacing for detail rows (keeps things airy) */
.info-row { margin: 6px 0; }

/* Graceful "No Data" chip to match the palette */
.no-data {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  background: #f2eee6; /* softly neutral */
  color: var(--muted);
  font-size: 0.85em;
  font-weight: 600;
}

/* Make the grid consistent on all pages that omit inline styles */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 16px;
}

/* Accessible link colors that fit the scheme (in case links appear) */
a { color: #b37400; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Tiny mobile nudge */
@media (max-width: 480px) {
  body { padding: 24px 14px; }
  .label { width: 96px; }
}


html,body{margin:0;padding:0}
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Merriweather', Georgia, serif;
  padding: 40px 20px;
  max-width: 960px;
  margin: auto;
}
h1 {
  text-align: center;
  font-size: 2.5em;
  margin-bottom: 4px;
  color: var(--text);
}
p.subtitle {
  text-align: center;
  font-size: 1.1em;
  font-style: italic;
  margin-top: 6px;
  color: var(--muted);
}
hr.decorative {
  border: none;
  border-top: 2px solid var(--brand);
  width: 60%;
  margin: 20px auto 30px auto;
}
hr.grid {
  border: none;
  border-top: 2px solid var(--line);
  width: 100%;
  max-width: 960px;
  margin: 20px auto 30px auto;
}

/* Cards */
.zone-card {
  background: var(--panel);
  color: var(--text);
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  padding: 18px 22px;
  border: 1px solid var(--line);
  border-left: 6px solid var(--brand);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.zone-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}
.zone-title {
  font-size: 1.3em;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--brand);
}
.label {
  font-weight: 600;
  display: inline-block;
  width: 120px;
  color: var(--muted);
}

/* Chips / Badges */
.badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.85em;
  font-weight: 600;
}
.low { background: var(--chip-low-bg); color: var(--chip-low-fg); }
.moderate { background: var(--chip-mod-bg); color: var(--chip-mod-fg); }
.high { background: var(--chip-high-bg); color: var(--chip-high-fg); }

/* Legend */
#legend {
  margin: 16px 0;
  padding: 14px 16px;
  border-radius: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  box-shadow: 0 2px 6px rgba(0,0,0,0.04);
  font-size: 0.9rem;
}
#legend strong { color: var(--brand); }
#legend ul { margin: 6px 0 0 18px; padding: 0; }

/* Compatibility overrides for earlier bright styles */
.zone-card { background: var(--panel) !important; color: var(--text) !important; }
.low, .moderate, .high { background-image:none !important; }
