:root {
  --bg: #000000;         /* site background / nav */
  --fg: #ffffff;         /* text on dark */
  --accent: #1BB13E;     /* bright logo green */
  --accent-2: #1D9DCB;   /* sea blue from walls */
  --wood: #6E4B2D;       /* bar brown */
  --maple: #A3693D;      /* table tone */
  --ink: #222222;        /* dark text on light */
  --muted: #B0B0B0;      /* gray text */
  --card: #111111;       /* dark card background */
  --alt: #081C24;        /* very dark sea blue variant */
  --radius: 14px;
  --maxw: 1100px;
}

*{ box-sizing:border-box; }
html,body{ margin:0; padding:0; }
body{
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Inter, Arial, sans-serif;
  color: var(--ink);
  line-height: 1.5;
  background: #ffffff;
}

.container{ width:100%; max-width:var(--maxw); margin-inline:auto; padding:0 20px; }
.center{ text-align:center; }

.site-header{
  position: sticky; top:0; z-index: 50;
  background: var(--bg); color: var(--fg);
  box-shadow: 0 2px 8px rgba(0,0,0,.15);
}
.header-inner{ display:flex; align-items:center; justify-content:space-between; min-height:64px; }
.brand{ display:flex; align-items:center; gap:.6rem; }
.logo{ height:40px; width:auto; }
.brand-name{ font-weight:700; letter-spacing:.5px; color:var(--fg); }

.nav{ display:none; gap:.5rem; }
.nav-btn{
  color: var(--bg);
  background: var(--fg);
  padding:.5rem .9rem; border-radius: 999px; text-decoration:none; font-weight:600;
  transition: background .2s ease, transform .1s ease;
}
.nav-btn:hover{ background:#eaeaea; transform: translateY(-1px); }
.nav-primary{ background: var(--accent); color:#fff; }
.nav-primary:hover{ background: var(--accent-2); color:#fff; }

.nav-toggle{
  background: transparent; border:0; display:grid; gap:4px; cursor:pointer;
}
.nav-toggle-bar{ width:22px; height:2px; background: var(--fg); display:block; }

@media (min-width: 860px){
  .nav{ display:flex; }
  .nav-toggle{ display:none; }
}

.hero {position:relative;overflow:hidden;min-height:65vh;}
.hero-bg {
  position:absolute;inset:0;width:100%;height:100%;
  object-fit:cover;filter:blur(20px) brightness(0.6);
}
.hero-img {
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;      /* fill area, crop evenly */
  object-position:center;/* center on all devices */
}


.hero-overlay{ position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55)); }
.hero-content{ position:relative; color:#fff; text-align:center; padding: 80px 20px; }
.hero-title{ font-size: clamp(28px, 5vw, 56px); margin:0 0 .3rem; }
.hero-tag{ opacity:.95; margin:0 0 1rem; font-size: clamp(14px, 2.2vw, 20px); }
.hero-actions{ display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap; }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(29, 157, 203, 0.25) 0%,   /* wall blue tint */
    rgba(0, 0, 0, 0.75) 100%
  );
}
.btn{
  background:#fff; color:#111; border:0; padding:.8rem 1.1rem; border-radius: 10px;
  text-decoration:none; font-weight:700; display:inline-block;
  transition: transform .1s ease, background .2s ease;
}
.btn:hover{ transform: translateY(-1px); background:#f0f0f0; }
.btn-accent{ background: var(--accent); color:#fff; }
.btn-accent:hover{ background: var(--accent-2); color:#fff; }
.btn-disabled{ background:#e5e7eb; color:#9ca3af; cursor:not-allowed; }

.section{ padding: 56px 0; }
.section.alt{ background: var(--alt); }
.section-title{ text-align:center; margin:0 0 .2rem; font-size: clamp(22px, 3.6vw, 34px); }
.section-subtitle{ text-align:center; margin:.2rem auto 1rem; color: var(--muted); max-width: 720px; }

.menu-buttons{
  display:flex; flex-wrap:wrap; gap:.8rem; justify-content:center; margin-top:1rem;
}






/* Pill buttons */
.pill {
  background: var(--card);            /* dark card background */
  color: #fff;                        /* readable text */
  border: 1px solid rgba(255,255,255,.25);
  padding: .8rem 1.3rem;
  border-radius: 999px;
  cursor: pointer;
  transition: background .2s, color .2s, border .2s;
}
.pill:hover {
  background: var(--accent-2);        /* blue hover */
  border-color: var(--accent-2);
  color: #fff;
}

/* accent version (green) */
.pill-accent {
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
}
.pill-accent:hover {
  background: var(--accent-2);
  border-color: var(--accent-2);
}


.muted{ color: var(--muted); }
.small{ font-size: .92rem; }

.grid.gallery{
  display:grid; gap:10px;
  grid-template-columns: repeat(2, 1fr);
}
.grid.gallery img{
  width:100%; height:220px; object-fit:cover; border-radius: 10px;
}
@media (min-width: 720px){
  .grid.gallery{ grid-template-columns: repeat(3, 1fr); }
  .grid.gallery img{ height: 240px; }
}

/* PDF preview shows on desktop, hidden on small screens */
.menu-preview { margin-top: 18px; }
.menu-preview object { width: 100%; height: 720px; border: 1px solid rgba(255,255,255,.12); border-radius: 10px; }
@media (max-width: 900px){
  .menu-preview { display: none; }  /* phones/tablets get the open-in-new-tab button only */
}



.events-cta{ display:flex; gap:.8rem; justify-content:center; flex-wrap:wrap; margin-top: 10px; }

.contact-grid{
  display:grid; gap:20px;
  grid-template-columns: 1fr;
}
.map-wrap{ min-height: 260px; }
.map{ width:100%; height:100%; min-height:260px; border:0; border-radius: 10px; }
.contact-list{ list-style:none; padding:0; margin: 10px 0 0; }
.contact-list a{ color:inherit; }

@media (min-width: 900px){
  .contact-grid{ grid-template-columns: 1.1fr 1fr; align-items:start; }
  .map-wrap{ min-height:320px; }
  .map{ min-height:320px; }
}

.site-footer{
  background: var(--bg); color: var(--fg);
  padding: 24px 0;
}
.footer-inner{ display:grid; gap:10px; align-items:center;
  grid-template-columns: 1fr; text-align:center; }
.footer-brand{ display:flex; align-items:center; justify-content:center; gap:.5rem; }
.logo-sm{ height:28px; width:auto; }
.footer-links a{ color:#ffffff; opacity:.95; text-decoration:none; margin:0 .4rem; }
.footer-links a:hover{ text-decoration:underline; }
.footer-copy{ opacity:.8; font-size:.95rem; }

@media (min-width: 860px){
  .footer-inner{
    grid-template-columns: 1fr auto 1fr;
    text-align:left;
  }
  .footer-brand{ justify-content:flex-start; }
  .footer-copy{ text-align:right; }
}

/* mobile menu (shown when toggled) */
.mobile-open #mainNav{
  position:absolute; left:0; right:0; top:64px;
  display:flex; flex-direction:column; background: var(--bg);
  padding: 12px 20px 16px; gap:10px; border-bottom: 1px solid rgba(255,255,255,.1);
}

.hh-modal{
  position: fixed; inset: 0; display: none; place-items: center;
  background: rgba(0,0,0,.8); z-index: 1000; padding: 24px;
}
.hh-modal.open{ display: grid; }
.hh-modal img{ max-width: 100%; max-height: 90vh; border-radius: 10px; }
.hh-close{
  position: absolute; top: 14px; right: 14px;
  background: rgba(0,0,0,.6); color: #fff; border: 1px solid rgba(255,255,255,.2);
  border-radius: 999px; width: 36px; height: 36px; font-size: 22px; line-height: 1;
  cursor: pointer;
}
