/* The Inferno Hartville — site styles.
   Brand carried over from the Popmenu theme: black page, fire red, Pathway Gothic One + Poppins. */

:root {
  --red: #cc0606;
  --red-hot: #f80d0d;
  --orange: #e7301c;
  --ember: #ff8a1f;
  --ink: #0a0a0a;
  --black: #000;
  --paper: #fefefa;
  --muted: rgba(254, 254, 250, 0.72);
  --line: rgba(254, 254, 250, 0.14);
  --card: #141414;
  --radius: 14px;
  --max: 1160px;
  --head: "Pathway Gothic One", "Arial Narrow", sans-serif;
  --body: "Poppins", system-ui, sans-serif;
  color-scheme: dark;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--ink);
  color: var(--paper);
  font: 400 16px/1.65 var(--body);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
h1, h2, h3 { font-family: var(--head); font-weight: 400; line-height: 1.05; margin: 0 0 .4em; letter-spacing: .01em; }
h1 { font-size: clamp(2.8rem, 7vw, 5rem); }
h2 { font-size: clamp(2.3rem, 5vw, 4rem); color: var(--red-hot); }
h3 { font-size: 1.9rem; }
p { margin: 0 0 1em; }

.skip { position: absolute; left: -999px; top: 8px; background: var(--paper); color: var(--ink); padding: 8px 14px; z-index: 100; border-radius: 6px; }
.skip:focus { left: 8px; }
:focus-visible { outline: 3px solid var(--ember); outline-offset: 3px; }

.wrap { width: min(var(--max), 100% - 32px); margin-inline: auto; }

/* ---------- top strip + nav ---------- */
.strip {
  background: var(--red);
  font: 600 .8rem/1 var(--body);
  letter-spacing: .08em;
  text-transform: uppercase;
  text-align: center;
  padding: 9px 12px;
}
.strip a { text-decoration: none; white-space: nowrap; }
.strip .sep { opacity: .6; margin: 0 .6em; }

.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(0, 0, 0, .92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.nav .wrap { display: flex; align-items: center; justify-content: space-between; gap: 16px; min-height: 76px; }
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { width: 58px; height: 58px; }
.brand span { font: 400 1.7rem/1 var(--head); letter-spacing: .03em; }
.links { display: flex; align-items: center; gap: 4px; list-style: none; margin: 0; padding: 0; }
.links a {
  display: block; padding: 10px 12px; text-decoration: none;
  font: 600 .82rem/1 var(--body); letter-spacing: .09em; text-transform: uppercase;
  border-radius: 999px;
}
.links a:hover, .links a[aria-current="page"] { color: var(--ember); }
.links .order a { background: var(--red); color: var(--paper); padding: 12px 18px; margin-left: 6px; }
.links .order a:hover { background: var(--red-hot); color: var(--paper); }
.menu-btn { display: none; }

@media (max-width: 860px) {
  .menu-btn {
    margin-left: auto;
    display: inline-flex; align-items: center; gap: 8px;
    background: none; border: 1px solid var(--line); color: var(--paper);
    border-radius: 999px; padding: 9px 14px; font: 600 .8rem var(--body); letter-spacing: .08em; text-transform: uppercase;
  }
  .links {
    position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--black); border-bottom: 2px solid var(--red);
    padding: 8px 16px 16px; display: none;
  }
  .nav[data-open] .links { display: flex; }
  .links a { padding: 14px 8px; font-size: .95rem; border-radius: 0; border-bottom: 1px solid var(--line); }
  .links .order a { margin: 12px 0 0; text-align: center; border-radius: 999px; border: 0; }
  .brand span { display: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 13px 26px; border-radius: 999px;
  border: 2px solid var(--paper); color: var(--paper); background: transparent;
  font: 600 .95rem/1 var(--body); letter-spacing: .06em; text-transform: uppercase; text-decoration: none;
  cursor: pointer; transition: background .25s, border-color .25s, transform .25s;
}
.btn:hover { background: var(--red); border-color: var(--red); }
.btn.solid { background: var(--red); border-color: var(--red); }
.btn.solid:hover { background: var(--red-hot); border-color: var(--red-hot); transform: translateY(-1px); }
.btns { display: flex; flex-wrap: wrap; gap: 12px; }

/* ---------- hero ---------- */
.hero {
  position: relative; overflow: hidden; isolation: isolate;
  min-height: min(88vh, 760px);
  display: grid; place-items: center; text-align: center;
  padding: 72px 16px 110px;
  background:
    radial-gradient(ellipse 80% 55% at 50% 108%, rgba(255, 110, 20, .55), transparent 70%),
    radial-gradient(ellipse 60% 40% at 50% 100%, rgba(204, 6, 6, .7), transparent 75%),
    var(--black);
}
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; }
/* Darken the flames enough for the logo and buttons to stay readable. */
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: -1;
  background: radial-gradient(ellipse 60% 55% at 50% 45%, rgba(0,0,0,.55), rgba(0,0,0,.25) 70%, rgba(0,0,0,.45));
}
.hero .logo { width: min(340px, 72vw); margin: 0 auto 20px; filter: drop-shadow(0 10px 40px rgba(255, 90, 0, .35)); }
.hero .tag { font: 600 .9rem/1.4 var(--body); letter-spacing: .22em; text-transform: uppercase; color: var(--muted); margin-bottom: 26px; }
.hero .btns { justify-content: center; }
.hero::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -1px; height: 90px;
  background: var(--ink); clip-path: ellipse(75% 100% at 50% 100%);
}

/* ---------- sections ---------- */
section { padding: 80px 0; }
.lede { font-size: 1.12rem; color: var(--muted); max-width: 62ch; }
.center { text-align: center; }
.center .lede { margin-inline: auto; }
.eyebrow { font: 600 .78rem/1 var(--body); letter-spacing: .24em; text-transform: uppercase; color: var(--ember); margin-bottom: 14px; display: block; }

.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 56px; align-items: center; }
.split .photo { border-radius: var(--radius); overflow: hidden; box-shadow: 0 30px 60px rgba(0,0,0,.55); aspect-ratio: 5 / 4; }
.split .photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 860px) { .split { grid-template-columns: 1fr; gap: 32px; } }

/* category rings (from the old home page) */
.rings { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; margin-top: 44px; }
.ring { text-align: center; text-decoration: none; }
.ring img {
  aspect-ratio: 1; width: 100%; object-fit: cover; border-radius: 50%;
  border: 6px solid var(--paper); padding: 8px; background: var(--ink);
  transition: border-color .25s, transform .3s;
}
.ring:hover img { border-color: var(--red); transform: rotate(-2deg) scale(1.02); }
.ring span { display: block; margin-top: 14px; font: 400 2rem/1 var(--head); }
@media (max-width: 760px) { .rings { grid-template-columns: repeat(2, 1fr); gap: 22px; } .ring span { font-size: 1.6rem; } }

/* fire band */
.band {
  position: relative; text-align: center; overflow: hidden;
  background:
    linear-gradient(rgba(10,10,10,.55), rgba(10,10,10,.8)),
    url("img/food-bbq-wings.jpg") center / cover;
  padding: 110px 0;
}

/* deal / event cards */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 20px; margin-top: 36px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  overflow: hidden; display: flex; flex-direction: column;
}
.card .day {
  background: var(--red); padding: 14px 20px; border-radius: 0 0 40px 0; align-self: flex-start;
  font: 400 1.5rem/1 var(--head); letter-spacing: .04em;
}
.card .body { padding: 18px 20px 22px; }
.card h3 { font-size: 1.7rem; margin-bottom: .25em; }
.card .price { color: var(--ember); font-weight: 600; }
.card p:last-child { margin-bottom: 0; }
.card img { aspect-ratio: 16 / 10; object-fit: cover; width: 100%; }

/* reviews */
.quotes { columns: 3 300px; column-gap: 20px; margin-top: 36px; }
.quote {
  break-inside: avoid; margin: 0 0 20px; padding: 22px 22px 18px;
  background: var(--card); border-left: 4px solid var(--red); border-radius: 4px var(--radius) var(--radius) 4px;
}
.quote p { margin-bottom: .7em; }
.quote cite { font-style: normal; font-size: .85rem; color: var(--muted); }
.quote cite b { color: var(--paper); font-weight: 600; }
.stars { color: var(--ember); letter-spacing: 2px; font-size: .9rem; }

/* gallery */
.gallery { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 14px; margin-top: 36px; }
.gallery a { position: relative; border-radius: 10px; overflow: hidden; aspect-ratio: 5 / 4; background: var(--card); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s, opacity .3s; }
.gallery a:hover img { transform: scale(1.04); opacity: .85; }
.gallery figcaption {
  position: absolute; inset: auto 0 0 0; padding: 26px 12px 10px;
  background: linear-gradient(transparent, rgba(0,0,0,.8)); font-size: .85rem; font-weight: 500;
}
dialog.lightbox { border: 0; padding: 0; background: transparent; max-width: min(1200px, 94vw); }
dialog.lightbox::backdrop { background: rgba(0,0,0,.9); }
dialog.lightbox img { max-height: 86vh; width: auto; margin: auto; border-radius: 8px; }
dialog.lightbox p { text-align: center; margin: 10px 0 0; color: var(--paper); }
dialog.lightbox button {
  position: fixed; top: 14px; right: 14px; background: var(--red); color: var(--paper);
  border: 0; border-radius: 999px; width: 44px; height: 44px; font-size: 1.4rem; cursor: pointer;
}

/* location */
.find { display: grid; grid-template-columns: 1fr 1.2fr; gap: 40px; align-items: stretch; }
.find .info { background: var(--card); border-radius: var(--radius); padding: 32px; border: 1px solid var(--line); }
.find address { font-style: normal; font-size: 1.1rem; margin-bottom: 18px; }
.find .phone { font: 400 2.2rem/1 var(--head); text-decoration: none; color: var(--ember); display: inline-block; margin-bottom: 22px; }
.hours { width: 100%; border-collapse: collapse; margin-bottom: 24px; }
.hours th, .hours td { text-align: left; padding: 9px 0; border-bottom: 1px solid var(--line); font-weight: 400; }
.hours td { text-align: right; color: var(--muted); }
.hours tr.today th, .hours tr.today td { color: var(--paper); font-weight: 600; }
.status { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; font-size: .9rem; margin-bottom: 14px; }
.status::before { content: ""; width: 10px; height: 10px; border-radius: 50%; background: #666; }
.status.open::before { background: #2ecc71; box-shadow: 0 0 10px #2ecc71; }
.status.closed::before { background: var(--red-hot); }
.map { border-radius: var(--radius); overflow: hidden; min-height: 380px; border: 1px solid var(--line); }
.map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(1) invert(.92) contrast(.9); }
@media (max-width: 860px) { .find { grid-template-columns: 1fr; } }

/* page header */
.page-head {
  text-align: center; padding: 70px 16px 90px; position: relative;
  background:
    radial-gradient(ellipse 70% 60% at 50% 120%, rgba(255, 100, 20, .45), transparent 70%),
    var(--black);
  clip-path: ellipse(100% 60% at 50% 40%);
}
.page-head h1 { margin: 0; }
.page-head p { color: var(--muted); margin: 10px auto 0; max-width: 56ch; }

/* forms */
.form {
  background: var(--paper); color: var(--ink);
  border-radius: 20px; padding: 32px; width: min(680px, 100% - 32px); margin: 0 auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.form h2 { color: var(--red); text-align: center; font-size: 2.6rem; }
.form > p { text-align: center; color: #444; }
.form fieldset { border: 0; padding: 0; margin: 0 0 8px; }
.form legend { font: 400 1.6rem/1 var(--head); color: var(--red); margin: 18px 0 10px; }
.row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media (max-width: 560px) { .row { grid-template-columns: 1fr; } .form { padding: 22px 18px; } }
.field { margin-bottom: 14px; }
.field label, .field .label { display: block; font-size: .85rem; font-weight: 600; margin-bottom: 5px; }
.req { color: var(--red); }
.field input, .field select, .field textarea {
  width: 100%; font: inherit; color: var(--ink); background: #fff;
  border: 1.5px solid #cfcfca; border-radius: 10px; padding: 11px 13px;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--red); outline: none; box-shadow: 0 0 0 3px rgba(204,6,6,.18); }
.field textarea { min-height: 110px; resize: vertical; }
.hint { font-size: .78rem; color: #666; margin-top: 4px; }
.checks { display: flex; flex-wrap: wrap; gap: 8px 18px; }
.checks label { display: inline-flex; align-items: center; gap: 6px; font-weight: 400; margin: 0; }
.checks input { width: auto; }
.avail { display: grid; grid-template-columns: auto 1fr; gap: 6px 18px; align-items: center; font-size: .9rem; }
.form .btn { width: 100%; margin-top: 10px; color: var(--paper); }
.form-msg { margin-top: 14px; padding: 12px 14px; border-radius: 10px; font-size: .92rem; display: none; }
.form-msg.ok { display: block; background: #e7f7ec; color: #145c2c; }
.form-msg.err { display: block; background: #fde8e8; color: #8a0b0b; }
.hp { position: absolute; left: -5000px; }

/* footer */
footer { background: var(--black); border-top: 2px solid var(--red); padding: 56px 0 28px; text-align: center; }
footer .logo { width: 130px; margin: 0 auto 18px; }
footer nav ul { list-style: none; padding: 0; margin: 0 0 22px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 26px; }
footer nav a { text-decoration: none; text-transform: uppercase; letter-spacing: .1em; font-size: .8rem; font-weight: 600; }
footer nav a:hover { color: var(--ember); }
footer .social { display: inline-flex; width: 44px; height: 44px; border-radius: 50%; border: 1px solid var(--line); align-items: center; justify-content: center; margin-bottom: 18px; }
footer .social:hover { background: var(--red); border-color: var(--red); }
footer small { color: var(--muted); display: block; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .hero-video { display: none; }
  .hero { background: url("media/fire-poster.jpg") center / cover, var(--black); }
  *, *::before, *::after { transition: none !important; animation: none !important; }
}
