/* Minimal site styles + mobile responsiveness */

:root{
  --bg:#111;
  --surface:#1f1f1f;
  --text:#e9e9e9;
  --accent:#ff6f3c;
  --muted:#bdbdbd;
}

html,body{height:100%;margin:0;background:var(--bg);color:var(--text);font-family:system-ui,Arial,Helvetica,sans-serif}
a{color:var(--accent);text-decoration:none}
.container{max-width:1100px;margin:0 auto;padding:20px}

/* Header */
header{display:flex;justify-content:space-between;align-items:center;gap:12px}
header h1{margin:0;font-size:2rem}
.subtitle{color:var(--muted);margin-top:4px}

/* County cards grid (desktop) */
#countyGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:14px;margin-top:18px}
.county-card{background:var(--surface);padding:14px;border-radius:10px;min-height:120px;box-shadow:0 1px 0 rgba(0,0,0,0.5)}
.county-card h3{margin:0 0 8px 0;font-size:1.05rem}
.county-card .small{color:var(--muted);font-size:0.95rem}

/* Map */
#map{width:100%;height:420px;border-radius:10px;overflow:hidden;margin-top:18px}

/* Buttons and controls */
button, .link-btn{background:transparent;color:var(--text);border:1px solid rgba(255,255,255,0.06);padding:8px 12px;border-radius:8px}

/* Mobile adjustments */
@media (max-width:768px){
  header{flex-direction:column;align-items:flex-start}
  header h1{font-size:1.5rem}
  #countyGrid{grid-template-columns:1fr}
  .county-card{min-height:100px;padding:12px}
  #map{height:320px}
  .container{padding:12px}
}
