/* ============================================
   Artesia Lanes — Site Styles
   Brand: black / red-orange (from logo) / white
   ============================================ */

:root {
  --red: #e8331f;          /* logo red-orange */
  --red-dark: #c4250f;
  --orange: #f25c1f;
  --black: #121212;
  --charcoal: #1d1d1d;
  --gray: #f4f4f2;
  --text: #2a2a2a;
  --white: #ffffff;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }

a { color: var(--red); }

h1, h2, h3, h4 {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 800;
  letter-spacing: .5px;
  line-height: 1.15;
}

.container {
  width: min(1140px, 92%);
  margin: 0 auto;
}

/* ---------- Buttons / CTAs ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .8px;
  transition: transform .15s ease, background .15s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); }
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover { background: var(--white); color: var(--black); }
.btn-dark { background: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--charcoal); }
.btn-lg { padding: 18px 38px; font-size: 1.1rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--red);
  color: var(--white);
  font-size: .9rem;
  padding: 6px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 6px;
}
.topbar a { color: var(--white); text-decoration: none; font-weight: 600; }

/* ---------- Header / Nav ---------- */
header.site-header {
  background: var(--black);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,.4);
}
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.brand img { height: 52px; width: auto; }
.brand-name {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}
.brand-name span { color: var(--red); }

nav.main-nav ul {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 14px;
  list-style: none;
}
nav.main-nav a {
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: .78rem;
  text-transform: uppercase;
  letter-spacing: .3px;
  padding: 6px 0;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
}
nav.main-nav a:hover,
nav.main-nav a.active { border-bottom-color: var(--red); color: #ffd9d2; }
nav.main-nav .nav-cta {
  background: var(--red);
  border-radius: 6px;
  padding: 9px 14px;
  border-bottom: none;
}
nav.main-nav .nav-cta:hover { background: var(--red-dark); color: var(--white); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
}
@media (max-width: 1150px) {
  .nav-toggle { display: block; }
  nav.main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--black);
    padding: 16px 4%;
    border-top: 1px solid #333;
  }
  nav.main-nav.open { display: block; }
  nav.main-nav ul { flex-direction: column; align-items: flex-start; gap: 14px; }
  .brand img { height: 52px; }
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  background: var(--black);
  color: var(--white);
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: .45;
}
.hero-inner {
  position: relative;
  padding: 110px 0 120px;
}
.hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  margin-bottom: 14px;
}
.hero h1 .accent { color: var(--red); }
.hero p.lead {
  font-size: clamp(1.05rem, 2.2vw, 1.3rem);
  max-width: 720px;
  margin: 0 auto 32px;
  color: #eee;
}
.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Page hero (interior pages) */
.page-hero {
  background: var(--black);
  color: var(--white);
  position: relative;
  text-align: center;
}
.page-hero .hero-inner { padding: 70px 0 80px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); text-transform: uppercase; }
.page-hero p { max-width: 680px; margin: 12px auto 0; color: #ddd; }

/* ---------- Sections ---------- */
section.section { padding: 70px 0; }
section.section.alt { background: var(--gray); }
.section-title {
  text-align: center;
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  text-transform: uppercase;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
  color: #555;
}
.title-bar {
  width: 70px;
  height: 4px;
  background: var(--red);
  margin: 14px auto 18px;
  border-radius: 2px;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.09);
  display: flex;
  flex-direction: column;
  transition: transform .15s ease, box-shadow .15s ease;
}
.card:hover { transform: translateY(-4px); box-shadow: 0 10px 26px rgba(0,0,0,.14); }
.card .card-img {
  height: 200px;
  background: linear-gradient(135deg, var(--charcoal), #3a3a3a);
  background-size: cover;
  background-position: center;
}
.card .card-body {
  padding: 22px 24px 26px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.card h3 { font-size: 1.25rem; margin-bottom: 10px; text-transform: uppercase; }
.card p { color: #555; margin-bottom: 18px; flex: 1; }
.card .btn { align-self: flex-start; }

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.split .split-img {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
  min-height: 320px;
  background: linear-gradient(135deg, var(--charcoal), #3a3a3a);
  background-size: cover;
  background-position: center;
}
.split h2 { font-size: 1.9rem; text-transform: uppercase; margin-bottom: 14px; }
.split p { margin-bottom: 16px; color: #444; }
@media (max-width: 820px) {
  .split { grid-template-columns: 1fr; }
  .split .split-img { min-height: 240px; }
}

/* ---------- Feature strip ---------- */
.feature-strip {
  background: var(--black);
  color: var(--white);
  padding: 56px 0;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  text-align: center;
}
.feature-grid .feat h3 {
  color: var(--red);
  font-size: 1.1rem;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.feature-grid .feat p { color: #ccc; font-size: .95rem; }
.feat-icon { font-size: 2rem; margin-bottom: 10px; }

/* ---------- CTA band ---------- */
.cta-band {
  background: var(--red);
  color: var(--white);
  text-align: center;
  padding: 60px 0;
}
.cta-band h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.4rem);
  text-transform: uppercase;
  margin-bottom: 10px;
}
.cta-band p { max-width: 640px; margin: 0 auto 28px; color: #ffe9e4; }
.cta-band .btn-outline:hover { color: var(--red); }
.cta-band .hero-ctas { margin-top: 8px; }
.cta-band .btn-dark:hover { background: #000; }

/* ---------- Info / hours ---------- */
.info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 36px;
}
.info-box h3 {
  text-transform: uppercase;
  font-size: 1.1rem;
  margin-bottom: 12px;
  border-bottom: 3px solid var(--red);
  display: inline-block;
  padding-bottom: 4px;
}
.hours-table { width: 100%; border-collapse: collapse; }
.hours-table td { padding: 6px 0; border-bottom: 1px solid #e5e5e5; }
.hours-table td:last-child { text-align: right; font-weight: 600; }

/* ---------- Forms (placeholder shells) ---------- */
.form-shell {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,.09);
  padding: 36px;
  max-width: 760px;
  margin: 0 auto;
}
.form-note {
  background: #fff4f2;
  border-left: 4px solid var(--red);
  padding: 14px 18px;
  font-size: .95rem;
  margin-bottom: 24px;
  color: #6b3a33;
}
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
.form-shell label { font-weight: 600; font-size: .9rem; display: block; margin-bottom: 6px; }
.form-shell input,
.form-shell select,
.form-shell textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font: inherit;
}
.form-shell textarea { min-height: 110px; resize: vertical; }
@media (max-width: 640px) { .form-grid { grid-template-columns: 1fr; } }

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 16px;
}
.gallery-grid .g-img {
  border-radius: 8px;
  height: 220px;
  background: linear-gradient(135deg, var(--charcoal), #3a3a3a);
  background-size: cover;
  background-position: center;
}

/* ---------- Footer ---------- */
footer.site-footer {
  background: var(--black);
  color: #ccc;
  padding: 56px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 36px;
  margin-bottom: 36px;
}
.site-footer h4 {
  color: var(--white);
  text-transform: uppercase;
  font-size: 1rem;
  margin-bottom: 14px;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 8px; }
.site-footer a { color: #ccc; text-decoration: none; }
.site-footer a:hover { color: var(--red); }
.footer-logo img { height: 90px; margin-bottom: 12px; }
.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 18px;
  text-align: center;
  font-size: .85rem;
  color: #888;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-2 { margin-top: 16px; }
.mt-4 { margin-top: 32px; }
.badge {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 14px;
}

/* ---------- On-page menu ---------- */
.menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}
@media (max-width: 820px) { .menu-grid { grid-template-columns: 1fr; } }
.menu-block {
  background: var(--white);
  border-radius: 10px;
  box-shadow: 0 4px 18px rgba(0,0,0,.09);
  padding: 28px 30px;
  border-top: 4px solid var(--red);
}
.menu-block h3 {
  font-size: 1.35rem;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 16px;
  text-align: center;
}
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 10px;
  margin-top: 12px;
}
.menu-item .name { font-weight: 700; }
.menu-item .dots {
  flex: 1;
  border-bottom: 2px dotted #ccc;
  transform: translateY(-4px);
}
.menu-item .price { font-weight: 700; white-space: nowrap; }
.menu-desc { font-size: .9rem; color: #666; margin-top: 2px; }
.menu-note {
  background: #fff4f2;
  border-radius: 8px;
  text-align: center;
  font-size: .92rem;
  padding: 10px 14px;
  margin-top: 16px;
  color: #6b3a33;
}
.menu-note strong { color: var(--red); }
.menu-tax { text-align: center; color: #888; font-size: .9rem; margin-top: 28px; }
