:root{
  --bg:#0b0d12;
  --panel:#121625;
  --panel2:rgba(18,22,37,.72);
  --text:#f4f6ff;
  --muted:#b7c0ff;
  --accent:#ff4d2e;
  --accent2:#22c55e;
  --border:rgba(255,255,255,.12);
  --shadow: 0 18px 55px rgba(0,0,0,.35);
  --radius: 18px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}

body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 520px at 20% -10%, rgba(255,77,46,.28), transparent 60%),
    radial-gradient(900px 520px at 95% 0%, rgba(34,197,94,.18), transparent 55%),
    var(--bg);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
.container{max-width:1100px; margin:0 auto; padding:0 18px}

.muted{color:var(--muted)}
.small{font-size:12px}

/* ================= HEADER ================= */
.site-header{
  position:sticky; top:0; z-index:50;
  background: rgba(11,13,18,.72);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}

.header-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-text{
  display:flex;
  flex-direction:column;
  gap:2px;
}

.logo-img{
  width:44px;
  height:44px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 40px rgba(255,77,46,.18);
  background: rgba(255,255,255,.04);
}

.nav{
  display:flex;
  align-items:center;
  gap:14px;
}

.nav a{opacity:.92}
.nav a:hover{opacity:1}

/* ================= BUTTONS ================= */
.btn{
  display:inline-block;
  padding:12px 16px;
  border-radius:14px;
  background: var(--accent);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 10px 30px rgba(255,77,46,.18);
  font-weight:750;
}

.btn.secondary{
  background: transparent;
  border:1px solid var(--border);
  box-shadow:none;
}

/* ================= HERO ================= */
.hero{
  position: relative;
  padding:72px 0 42px;
  background-image: url("assets/hero-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.55);
}

.hero .container{
  position: relative;
  z-index: 1;
}

.hero-grid{
  display:grid;
  grid-template-columns: 1fr;
  gap:22px;
  align-items:start;
}

.pill{
  display:inline-block;
  padding:8px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid var(--border);
  color: var(--muted);
  font-weight:650;
  margin:0 0 12px;
}

.hero-title{
  font-size:52px;
  margin:0 0 8px;
  line-height:1.02;
  letter-spacing:.06em;
  text-transform: uppercase;
  font-weight: 950;
}

.hero-subtitle{
  font-size:18px;
  margin:0 0 14px;
  color: rgba(244,246,255,.92);
  font-weight: 750;
}

.lead{
  font-size:16px;
  color:rgba(244,246,255,.92);
  margin:0 0 14px;
}

.hero-actions{
  display:flex;
  gap:12px;
  margin:18px 0;
}

@media (max-width: 520px){
  .hero-actions{flex-direction:column; align-items:stretch}
}

@media (max-width: 860px){
  .nav{display:none}
  .hero-title{font-size:40px}
}

/* ================= SECTIONS / CARDS ================= */
.section{ padding:42px 0; }

.section.alt{
  background: rgba(255,255,255,.03);
  border-top:1px solid var(--border);
  border-bottom:1px solid var(--border);
}

h2{
  font-size:32px;
  margin:0 0 6px;
}

h3{margin:0 0 8px}

.card{
  background: var(--panel2);
  border:1px solid var(--border);
  border-radius: var(--radius);
  padding:18px;
  box-shadow: var(--shadow);
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
  margin-top:14px;
}

@media (max-width: 860px){
  .cards{grid-template-columns:1fr}
}

/* ================= SECTION DIVIDERS (Burnt Bean style vibe) ================= */
.section-divider{
  height:1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255,255,255,.18),
    rgba(255,77,46,.30),
    rgba(255,255,255,.18),
    transparent
  );
  margin: 28px 0;
}

/* ================= FADE-IN ON SCROLL ================= */
.fade{
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}

.fade.in{
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce){
  .fade{opacity:1; transform:none; transition:none}
}

/* ================= FORM CONTROLS ================= */
.form{
  margin-top:16px;
  display:grid;
  gap:12px;
}

label{
  display:grid;
  gap:6px;
  font-weight:750;
}

input,
textarea,
select{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.25);
  color:var(--text);
  outline:none;
  font-family: inherit;
  font-size: inherit;
}

input:focus,
textarea:focus,
select:focus{
  border-color: rgba(255,77,46,.65);
  box-shadow: 0 0 0 4px rgba(255,77,46,.18);
}

.grid-2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

@media (max-width: 700px){
  .grid-2{grid-template-columns:1fr}
}

/* ================= GALLERY ================= */
.gallery{
  margin-top:14px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

.gallery figure{margin:0}
.gallery figcaption{margin-top:10px}

.gallery img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  transition: transform .25s ease, filter .25s ease;
}

.gallery img:hover{
  transform: scale(1.02);
  filter: contrast(1.05) saturate(1.05);
}

@media (max-width: 860px){
  .gallery{ grid-template-columns:1fr; }
  .gallery img{ height:260px; }
}

/* Gallery item helper class (used by scripts.js lightbox click) */
.g-item{cursor:pointer}

/* ================= LIGHTBOX ================= */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.82);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 22px;
  z-index: 9999;
}

.lightbox.open{display:flex}

.lightbox-inner{
  max-width: 1000px;
  width: 100%;
  background: rgba(18,22,37,.72);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  box-shadow: 0 26px 80px rgba(0,0,0,.55);
  overflow: hidden;
  position: relative;
}

.lightbox-inner img{
  width: 100%;
  height: auto;
  display: block;
}

.lightbox-cap{
  padding: 12px 14px 14px;
  color: var(--muted);
  font-weight: 750;
  border-top: 1px solid rgba(255,255,255,.10);
  background: rgba(0,0,0,.25);
}

.lightbox-close{
  position: absolute;
  top: 10px;
  right: 10px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.35);
  color: var(--text);
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
}

/* ================= FLOATING MENU NAV ================= */
.float-nav{
  position: sticky;
  top: 74px; /* below header */
  z-index: 30;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  padding: 10px 12px;
  margin: 0 auto 18px;
  max-width: 1100px;

  background: rgba(18,22,37,.55);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  backdrop-filter: blur(10px);
}

.float-nav a{
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  font-weight: 850;
  letter-spacing: .02em;
  opacity: .9;
}

.float-nav a:hover{ opacity: 1; }

.float-nav a.active{
  background: rgba(255,77,46,.18);
  border-color: rgba(255,77,46,.5);
  box-shadow: 0 10px 26px rgba(255,77,46,.18);
}

@media (max-width: 640px){
  .float-nav{ top: 66px; }
}

/* ================= MENU BLOCKS (Background + Centered type) ================= */
.menu-block{
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  padding: 42px 18px;
  margin: 18px 0;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(18,22,37,.72);
  box-shadow: var(--shadow);
}

.menu-block::before{
  content:"";
  position:absolute;
  inset:0;
  background: rgba(0,0,0,.62);
  pointer-events:none;
}

.menu-block > *{
  position: relative;
  z-index: 1;
}

.menu-h{
  text-align: center;
  font-size: 36px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin: 0 0 18px;
}

.menu-items{
  text-align: center;
  display: grid;
  gap: 12px;
  font-size: 19px;
  font-weight: 850;
}

.menu-items p{
  margin: 0;
  line-height: 1.25;
}

.menu-note-inline{
  opacity: .95;
  font-weight: 950;
}

@media (max-width: 640px){
  .menu-h{ font-size: 30px; }
  .menu-items{ font-size: 16px; }
}

/* Background image classes (make sure these filenames match exactly in /assets) */
.bg-beef{
  background-image: url("./assets/beef-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-bird{
  background-image: url("./assets/bird-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-seafood{
  background-image: url("./assets/seafood-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-sides{
  background-image: url("./assets/sides-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-desserts{
  background-image: url("./assets/dessert-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bg-drinks{
  background-image: url("./assets/drinks-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* ================= FOOTER ================= */
.site-footer{
  padding:26px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1fr auto auto;
  gap:12px;
  align-items:center;
}

@media (max-width: 860px){
  .footer-grid{grid-template-columns:1fr; gap:10px}
}
