/* Illinois Valley Food -- edit freely, it is plain CSS */
:root {
  --ink: #1a1a1a;
  --muted: #6a6a6a;
  --rule: #e0e0e0;
  --bg: #f5f5f5;
  --card: #ffffff;
  --accent: #d32323;
  --accent-hover: #af1c1c;
  --accent-ink: #ffffff;
  --accent-soft: #fbe7e7;
  --accent-soft-ink: #af1c1c;
  --focus: #1a5fb4;
  --shadow: 0 1px 2px rgba(0, 0, 0, .06), 0 2px 8px rgba(0, 0, 0, .08);
  --page-bg: radial-gradient(ellipse at center, #ffffff 0%, #ffffff 30%, #f6d6d6 65%, #dfa0a0 100%);
  --open: #1a7f37;
}
* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--page-bg);
  background-attachment: fixed;
  color: var(--ink);
  font: 17px/1.6 -apple-system, BlinkMacSystemFont, "Helvetica Neue",
        Helvetica, Arial, sans-serif;
}
.wrap { max-width: 46rem; margin: 0 auto; padding: 0 1.25rem; }

a { color: var(--accent); text-decoration-thickness: 1px; text-underline-offset: 2px; }
a:hover { color: var(--accent-hover); text-decoration-thickness: 2px; }
:focus-visible { outline: 3px solid var(--focus); outline-offset: 2px; border-radius: 2px; }

.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--ink); color: #fff; padding: .75rem 1rem; z-index: 10;
  border-radius: 0 0 6px 0;
}
.skip-link:focus { left: 0; }

.site-header {
  background: var(--card); border-bottom: 1px solid var(--rule);
  box-shadow: var(--shadow);
}
.site-header .wrap {
  display: flex; flex-wrap: wrap; gap: .5rem 1.5rem;
  align-items: center; justify-content: space-between;
  padding-top: 1rem; padding-bottom: 1rem;
}
.brand { margin: 0; font-size: 1.3rem; font-weight: 800; letter-spacing: -.01em; }
.brand a { color: var(--accent); text-decoration: none; }
.brand-logo { display: flex; align-items: center; gap: .6rem; }
.brand-logo-icon { height: 62px; width: 62px; flex: none; }
.brand-logo-text { height: 39px; width: auto; }
.site-header nav ul {
  list-style: none; display: flex; gap: .25rem; margin: 0; padding: 0;
}
.site-header nav a {
  display: inline-block; color: var(--ink); text-decoration: none;
  font-weight: 600; padding: .5rem .8rem; border-radius: 999px;
}
.site-header nav a:hover { background: var(--accent-soft); color: var(--accent-hover); }

.theme-toggle {
  display: inline-flex; align-items: center; justify-content: center;
  width: 2.75rem; height: 2.75rem; padding: 0; margin-left: .25rem;
  border: 1px solid var(--rule); border-radius: 999px; background: var(--bg);
  cursor: pointer;
}
.theme-toggle:hover { background: var(--accent-soft); }
.theme-toggle .icon { color: var(--ink); width: 1.3rem; height: 1.3rem; }
.theme-toggle-icon-moon { display: none; }
[data-theme="dark"] .theme-toggle-icon-sun { display: none; }
[data-theme="dark"] .theme-toggle-icon-moon { display: block; }

/* #main (not .main) so this reliably wins over .wrap's own padding/margin
   on the same element -- turns the content column into a raised panel
   against the page background, which .wrap's max-width/centering already
   confines to the middle, leaving the page background visible as "side
   panels" either side. Nothing about the width or centering changes. */
#main {
  padding: 2rem 1.25rem 3rem; margin: 1.5rem auto;
  background: var(--card); border-radius: 16px; box-shadow: var(--shadow);
}
h1 { font-size: 2.1rem; font-weight: 800; line-height: 1.2; letter-spacing: -.02em; margin: 0 0 .35rem; }
h2 { font-size: 1.35rem; font-weight: 700; margin: 2.25rem 0 .85rem; letter-spacing: -.01em; }
.lede { font-size: 1.15rem; color: var(--muted); margin-top: 0; }
.meta { color: var(--muted); margin: 0 0 1.5rem; }
.small { font-size: .875rem; color: var(--muted); }
.empty {
  background: var(--card); border: 1px dashed var(--rule); border-radius: 12px;
  padding: 1.25rem;
}

.hero { margin: 0 0 1.5rem; }
.hero h1 { font-size: 1.4rem; margin: 0 0 .2rem; }
.hero .lede { font-size: .95rem; margin: 0; }
.section-label { margin-top: 0; }

.town-grid {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 1rem; grid-template-columns: repeat(auto-fill, minmax(11rem, 1fr));
}
.town-card {
  display: flex; flex-direction: column; gap: .3rem;
  background: var(--card); border: 1px solid var(--rule); border-radius: 14px;
  padding: 1.25rem 1.1rem; text-decoration: none; box-shadow: var(--shadow);
  transition: transform .12s ease, box-shadow .12s ease;
}
.town-card:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(0,0,0,.08), 0 8px 20px rgba(0,0,0,.12); }
.town-card-name { font-size: 1.2rem; font-weight: 700; color: var(--ink); }
.town-card-count { color: var(--muted); font-size: .9rem; }
.cuisine-card { align-items: center; text-align: center; }
.cuisine-icon {
  width: 4.375rem; height: 4.375rem; margin-bottom: .5rem; color: var(--accent);
  fill: none; stroke: currentColor; stroke-width: 1.6;
  stroke-linecap: round; stroke-linejoin: round; object-fit: contain;
}
.cuisine-icon-inline {
  width: 1.1rem; height: 1.1rem; vertical-align: -3px; margin-right: .3rem;
  object-fit: contain;
}

/* collapsible per-restaurant groups: cuisine pages and item search results */
.result-group {
  background: var(--card); border: 1px solid var(--rule); border-radius: 12px;
  margin-bottom: .75rem; box-shadow: var(--shadow); overflow: hidden;
}
.result-group summary {
  list-style: none; cursor: pointer; padding: 1rem 1.15rem;
  display: flex; flex-wrap: wrap; gap: .25rem 1rem;
  align-items: baseline; justify-content: space-between;
}
.result-group summary::-webkit-details-marker { display: none; }
.result-group summary::marker { content: ""; }
.result-group summary::before {
  content: ""; display: inline-block; margin-right: .6rem;
  width: 0; height: 0; flex: none;
  border-top: 5px solid transparent; border-bottom: 5px solid transparent;
  border-left: 6px solid var(--accent); transition: transform .1s ease;
}
.result-group[open] summary::before { transform: rotate(90deg); }
.result-group-name { font-weight: 700; font-size: 1.05rem; }
.result-group-body { padding: 0 1.15rem 1.15rem; border-top: 1px solid var(--rule); }
.result-group-body > p:first-child { margin-top: 1rem; }
.result-section-name { font-size: 1rem; margin: 1.25rem 0 .5rem; }
.result-group-body .items .item { padding: .5rem 0; }

.crumbs ol { list-style: none; display: flex; flex-wrap: wrap; gap: .5rem;
  margin: 0 0 1.25rem; padding: 0; font-size: .9rem; color: var(--muted); }
.crumbs li + li::before { content: "/"; margin-right: .5rem; color: var(--rule); }

.btn {
  display: inline-block; background: var(--accent); color: var(--accent-ink);
  padding: .7rem 1.3rem; border-radius: 999px; text-decoration: none; font-weight: 700;
  box-shadow: var(--shadow);
}
.btn:hover { background: var(--accent-hover); color: var(--accent-ink); text-decoration: none; }

.cards { list-style: none; margin: 0 0 1rem; padding: 0; display: grid; gap: .65rem; }
.cards li {
  background: var(--card); border: 1px solid var(--rule);
  padding: 1rem 1.15rem; border-radius: 12px; box-shadow: var(--shadow);
  display: flex; flex-wrap: wrap; gap: .25rem 1rem;
  align-items: baseline; justify-content: space-between;
  transition: transform .12s ease, box-shadow .12s ease;
}
.cards li:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(0,0,0,.08), 0 8px 20px rgba(0,0,0,.12); }
.cards li a { font-weight: 700; font-size: 1.05rem; text-decoration: none; }
.cards li a:hover { text-decoration: underline; }
.closed-today { color: var(--accent-hover); font-weight: 600; font-size: .875rem; }
.open-status { font-weight: 600; font-size: .875rem; margin-left: .3rem; }
.open-status.is-open { color: var(--open); }
.open-status.is-closed { color: var(--accent-hover); }

/* restaurant info card: address / phone / hours / website / ordering / facebook */
.info-card {
  background: var(--card); border: 1px solid var(--rule); border-radius: 14px;
  padding: 1.1rem 1.3rem; margin: 1.25rem 0; box-shadow: var(--shadow);
}
.info-card-grid { display: grid; gap: 1.1rem; }
.info-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .7rem;
  align-content: start; }
.info-list li { display: flex; align-items: center; gap: .7rem; }
.info-list a { font-weight: 600; text-decoration: none; }
.info-list a:hover { text-decoration: underline; }
.info-map {
  width: 100%; height: 220px; border: 0; border-radius: 10px;
  border: 1px solid var(--rule);
}
@media (min-width: 640px) {
  .info-card-grid { grid-template-columns: 1fr 1fr; }
  .info-map { height: 100%; min-height: 200px; }
}
.site-map {
  width: 100%; height: 65vh; min-height: 24rem; margin: 1rem 0;
  border-radius: 14px; border: 1px solid var(--rule); box-shadow: var(--shadow);
}
.icon {
  flex: none; width: 1.3rem; height: 1.3rem; color: var(--accent);
  fill: none; stroke: currentColor; stroke-width: 1.7;
  stroke-linecap: round; stroke-linejoin: round;
}

/* "Good to know" restaurant policies */
.policies {
  background: var(--accent-soft); border: 1px solid var(--rule); border-radius: 14px;
  padding: 1.1rem 1.3rem; margin: 1.5rem 0;
}
.policies h2 { margin-top: 0; color: var(--accent-soft-ink); }
.policies ul { margin: 0; padding-left: 1.25rem; }
.policies li { margin-bottom: .35rem; }
.policies li:last-child { margin-bottom: 0; }

.menu-heading { border-bottom: 2px solid var(--rule); padding-bottom: .5rem; }
.menu-jump ul { list-style: none; margin: 0 0 1.5rem; padding: 0;
  display: flex; flex-wrap: wrap; gap: .5rem; }
.menu-jump a {
  display: inline-block; background: var(--accent-soft); color: var(--accent-soft-ink);
  padding: .4rem .9rem; border-radius: 999px; text-decoration: none; font-weight: 600;
  font-size: .9rem;
}
.menu-jump a:hover { background: var(--accent); color: var(--accent-ink); }

.menu-section { margin-bottom: 1rem; }
.section-note { margin: -.25rem 0 .85rem; color: var(--muted); font-size: .9rem;
  font-style: italic; }
.items { list-style: none; margin: 0; padding: 0; }
.item { border-bottom: 1px solid var(--rule); padding: .8rem 0; }
.item:last-child { border-bottom: 0; }
.item-head { display: flex; gap: 1rem; align-items: baseline; justify-content: space-between; }
.item-name { font-weight: 600; }
.item-price { font-variant-numeric: tabular-nums; white-space: nowrap; color: var(--accent); font-weight: 600; }
.item-desc { margin: .3rem 0 0; color: var(--muted); }
.item-notes { margin: .3rem 0 0; font-size: .85rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .04em; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0;
}

.site-search { background: var(--card); border-bottom: 1px solid var(--rule); }
.site-search .wrap { padding: .9rem 1.25rem; }
.search-box { margin: 0; }
.search-row { display: flex; flex-wrap: wrap; gap: .6rem; }
.search-row input, .search-row select {
  padding: .7rem .9rem; font-size: 1rem; border: 2px solid var(--rule);
  border-radius: 10px; background: var(--bg); color: var(--ink);
}
.search-row input { flex: 1 1 14rem; }
.search-row select { flex: 0 0 auto; font-weight: 600; }
.search-row input:focus-visible, .search-row select:focus-visible { border-color: var(--focus); }
.search-submit {
  flex: 0 0 auto; display: inline-flex; align-items: center; justify-content: center;
  width: 2.9rem; padding: 0; border: none; border-radius: 10px;
  background: var(--accent); color: var(--accent-ink); cursor: pointer;
}
.search-submit:hover { background: var(--accent-hover); }
.search-submit .icon { color: var(--accent-ink); width: 1.2rem; height: 1.2rem; }
.site-search #status { margin: .6rem 0 0; }
.site-search #results:not(:empty) { margin-top: .25rem; }
.results { list-style: none; margin: 0; padding: 0; }
.results li { padding: .7rem 0; border-bottom: 1px solid var(--rule); }

.ad { margin: 2rem auto; }
.ad-label { font-size: .7rem; text-transform: uppercase; letter-spacing: .08em;
  color: var(--muted); margin: 0 0 .35rem; }

.site-footer { border-top: 1px solid var(--rule); background: var(--card);
  padding: 1.75rem 0; margin-top: 2rem; }
.site-footer p { margin: 0 0 .5rem; }

/* Dark mode is opt-in only, via the toggle button in the header -- not tied
   to the OS/browser color-scheme setting. Yelp itself doesn't have a dark
   theme to imitate, so the light palette above is the default for everyone;
   this is just an option for people who want it. */
:root[data-theme="dark"] {
  --ink: #f0f0f0;
  --muted: #a8a8a8;
  --rule: #3a3a3a;
  --bg: #1c1c1c;
  --card: #262626;
  --accent: #ff5c5c;
  --accent-hover: #ff8a8a;
  --accent-ink: #1c1c1c;
  --accent-soft: #3a2323;
  --accent-soft-ink: #ff8a8a;
  --focus: #8ec4f5;
  --shadow: 0 1px 2px rgba(0, 0, 0, .3), 0 2px 10px rgba(0, 0, 0, .35);
  --page-bg: var(--bg);
  --open: #4ade80;
}
