/* QQ Aloha BBQ — stylesheet */

:root {
  --red: #c8102e;
  --red-dark: #9c0c22;
  --gold: #f2a71b;
  --green: #2f6b4f;
  --ink: #241a14;
  --cream: #fff8ec;
  --cream-2: #fdeecb;
  --gray: #6b6058;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(36, 26, 20, 0.12);
  font-size: 16px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

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

a { color: inherit; text-decoration: none; }

.container {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3 {
  font-family: "Segoe UI", "Trebuchet MS", sans-serif;
  line-height: 1.2;
  margin: 0 0 0.5em;
}

h2 {
  font-size: 2rem;
  color: var(--red-dark);
  text-align: center;
}

h3 { font-size: 1.15rem; color: var(--green); }

.section { padding: 64px 0; }
.section:nth-of-type(even) { background: var(--cream-2); }

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: var(--gray);
}

.btn {
  display: inline-block;
  padding: 0.85em 1.8em;
  border-radius: 999px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 8px 18px rgba(200, 16, 46, 0.35);
}
.btn-primary:hover { background: var(--red-dark); }

.btn-secondary {
  background: #fff;
  color: var(--red-dark);
  border: 2px solid var(--red);
}
.btn-secondary:hover { background: var(--cream-2); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 248, 236, 0.96);
  backdrop-filter: blur(6px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-logo { height: 44px; width: auto; }
.brand-name {
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--red-dark);
}

.primary-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 28px;
  margin: 0;
  padding: 0;
}

.primary-nav a {
  font-weight: 600;
  color: var(--ink);
}
.primary-nav a:hover { color: var(--red); }

.btn-order {
  background: var(--red);
  color: #fff !important;
  padding: 0.6em 1.4em;
  border-radius: 999px;
}
.btn-order:hover { background: var(--red-dark); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 26px;
  height: 3px;
  background: var(--ink);
  border-radius: 2px;
}

/* Hero */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(36,20,14,0.55) 0%, rgba(36,20,14,0.75) 100%);
}
.hero-content {
  position: relative;
  color: #fff;
  text-align: center;
  padding: 80px 20px;
}
.hero-content h1 {
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  font-weight: 900;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 700;
  color: var(--gold);
  margin: 0 0 0.5em;
}
.hero-sub {
  max-width: 560px;
  margin: 0 auto 2em;
  font-size: 1.05rem;
  opacity: 0.95;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5em;
}
.hero-actions .btn-secondary {
  background: rgba(255,255,255,0.1);
  color: #fff;
  border-color: #fff;
}
.hero-actions .btn-secondary:hover { background: rgba(255,255,255,0.2); }
.hero-hours a { color: var(--gold); font-weight: 700; }

/* About */
.about-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  align-items: center;
}
.about-highlights {
  list-style: none;
  padding: 0;
  margin: 1.5em 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.about-highlights li {
  background: #fff;
  border-left: 4px solid var(--red);
  padding: 0.6em 1em;
  border-radius: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow);
}
.about-media img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Menu */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
  align-items: start;
}
.menu-category {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 24px;
}
.menu-category h3 {
  border-bottom: 2px solid var(--cream-2);
  padding-bottom: 0.5em;
}
.category-note {
  color: var(--gray);
  font-size: 0.88rem;
  margin-top: -0.4em;
}
.menu-items {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu-items li {
  padding: 0.55em 0;
  border-bottom: 1px dashed #eadfcb;
  display: flex;
  flex-direction: column;
}
.menu-items li:last-child { border-bottom: none; }
.item-name { font-weight: 700; color: var(--ink); }
.item-desc { color: var(--gray); font-size: 0.9rem; }
.menu-items--compact li { font-weight: 600; font-size: 0.95rem; }
.muted { color: var(--gray); font-weight: 400; font-size: 0.88rem; }
.item-note { font-style: italic; color: var(--gray); font-size: 0.85rem; font-weight: 400; }

.menu-cta { text-align: center; margin-top: 3rem; }

/* Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}
.gallery-item {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-item:hover img { transform: scale(1.08); }

/* Location */
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 40px;
  align-items: start;
}
.location-info h3 { margin-top: 1.2em; }
.location-info h3:first-child { margin-top: 0; }
.location-info a { color: var(--red-dark); font-weight: 600; }
.location-info .btn { margin-top: 1.5em; }
.location-map iframe {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

/* Contact CTA */
.contact-section { background: var(--red); color: #fff; text-align: center; }
.contact-section h2 { color: #fff; }
.contact-section .btn-secondary { background: transparent; color: #fff; border-color: #fff; }
.contact-section .btn-secondary:hover { background: rgba(255,255,255,0.15); }

/* Footer */
.site-footer {
  background: var(--ink);
  color: #eee0cf;
  padding: 40px 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
  align-items: center;
}
.footer-brand { display: flex; align-items: center; gap: 12px; }
.footer-brand .brand-logo { height: 36px; filter: brightness(0) invert(1); opacity: 0.85; }
.footer-brand p { margin: 0; font-size: 0.85rem; }
.site-footer address { font-style: normal; font-size: 0.9rem; }
.footer-nav { display: flex; gap: 16px; flex-wrap: wrap; justify-content: flex-end; }
.footer-nav a { font-size: 0.9rem; color: #eee0cf; }
.footer-nav a:hover { color: var(--gold); }

/* Responsive */
@media (max-width: 860px) {
  .about-inner, .location-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-nav { justify-content: center; }
}

@media (max-width: 720px) {
  .nav-toggle { display: flex; }
  .primary-nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
    display: none;
  }
  .primary-nav.open { display: block; }
  .primary-nav ul {
    flex-direction: column;
    align-items: stretch;
    padding: 16px 20px;
    gap: 14px;
  }
  .btn-order { text-align: center; }
  .about-highlights { grid-template-columns: 1fr; }
}
