:root{
  --bg:#0f0f10;
  --panel:#141417;
  --text:#f3f3f3;
  --muted:#b9b9b9;
  --line:rgba(255,255,255,.10);
  --gold:#d4a64a;
  --goldSoft:rgba(212,166,74,.18);
  --shadow:0 16px 40px rgba(0,0,0,.45);
}

/* =========================
   ✅ GLOBAL RESET (fixes weird left "nav"/spacing)
========================= */
*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Arial, sans-serif;
  background:
    radial-gradient(1200px 700px at 12% 10%, rgba(212,166,74,.12), transparent 55%),
    radial-gradient(1200px 700px at 88% 90%, rgba(212,166,74,.08), transparent 55%),
    var(--bg);
  color:var(--text);
}

/* Kill default list spacing so nav never "sticks out" */
ul,ol{ margin:0; padding:0; list-style:none; }

/* Make sure layout blocks are full width and not inheriting odd margins */
header,main,section,footer{ display:block; width:100%; }

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

/* Container */
.container{
  max-width:1100px;
  margin:0 auto;
  padding:0 18px;
}

/* spacing helper used in your pages */
.page-offset{ padding-top: 0; }

/* =========================
   HEADER / NAV
========================= */
header{
  position: sticky;
  top:0;
  z-index:100;
  background: rgba(15,15,16,.88);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.navbar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 220px;
}

.brand img{
  height:56px;            /* ✅ bigger logo */
  width:auto;
  object-fit:contain;
  filter: drop-shadow(0 6px 16px rgba(0,0,0,.35));
}

.brand-text strong{
  display:block;
  font-size:14px;
  letter-spacing:.2px;
}
.brand-text span{
  display:block;
  font-size:12px;
  color: rgba(255,255,255,.72);
  margin-top:2px;
}

.menu-toggle{
  display:none;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:#fff;
  font-weight:900;
  font-size:12px;
  letter-spacing:.5px;
  text-transform:uppercase;
  cursor:pointer;
}

nav ul{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

nav a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.04);
  font-size:13px;
  font-weight:800;
  letter-spacing:.2px;
}

nav a:hover{
  border-color: rgba(212,166,74,.35);
  transform: translateY(-1px);
}

nav a.active{
  background: rgba(212,166,74,.18);
  border-color: rgba(212,166,74,.35);
}

/* Mobile nav behavior:
   - some pages may toggle header.open
   - other pages may toggle header.nav-open
   We support BOTH so nothing breaks. */
@media (max-width: 980px){
  .menu-toggle{ display:inline-flex; }

  nav{ display:none; width:100%; }

  header.open nav,
  header.nav-open nav{
    display:block;
  }

  nav ul{
    padding-top: 10px;
    gap:10px;
    justify-content:flex-start;
  }
  nav a{
    width:100%;
    justify-content:flex-start;
    padding:12px 14px;
    border-radius:14px;
  }
}

/* =========================
   HERO (shared)
========================= */
.hero{
  position:relative;
  min-height: 360px;
  overflow:hidden;
}
.hero-bg{
  position:absolute;
  inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.02);
  filter: saturate(1.05) contrast(1.05);
}
.hero-inner{
  position:relative;
  z-index:2;
  padding: 70px 0 55px;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 700px at 20% 20%, rgba(212,166,74,.14), transparent 55%),
    linear-gradient(180deg, rgba(15,15,16,.70), rgba(15,15,16,.92));
  z-index:1;
}
.hero-card{
  max-width: 680px;
  background: rgba(0,0,0,.30);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 18px;
  padding: 18px;
  box-shadow: var(--shadow);
}
.hero-card h1{
  margin:0 0 8px;
  color:#fff;
  font-size: 42px;
  line-height:1.05;
}
.hero-card p{
  margin:0;
  color: rgba(255,255,255,.82);
  line-height:1.6;
}
.hero-actions{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

/* =========================
   BUTTONS (shared)
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 16px;
  border-radius:999px;
  font-weight:900;
  font-size:13px;
  letter-spacing:.4px;
  text-transform:uppercase;
  border:1px solid var(--line);
  background: rgba(255,255,255,.05);
  color:#fff;
}

.btn:hover{
  border-color: rgba(212,166,74,.35);
  transform: translateY(-1px);
}

.btn.primary{
  background: var(--gold);
  border-color: transparent;
  color:#111;
}

.btn.ghost{ background: rgba(255,255,255,.04); }

/* =========================
   SECTIONS / TITLES
========================= */
.section{ padding: 40px 0; }
.section-title{
  text-align:center;
  margin-bottom: 18px;
}
.section-title h2{
  margin:0 0 10px;
  font-size: 40px;
  letter-spacing:.2px;
  color:#fff;
}
.section-title p{
  margin:0 auto;
  max-width: 760px;
  color: rgba(255,255,255,.75);
  line-height:1.7;
}

/* =========================
   GRID / CARDS
========================= */
.grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}

@media (max-width: 980px){
  .grid{ grid-template-columns: 1fr; }
}

.card{
  background: rgba(255,255,255,.92);
  border: 1px solid rgba(0,0,0,.06);
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(0,0,0,.10);
  overflow:hidden;
}

/* ✅ Safety: any img directly inside a card is kept under control */
.card img{
  width:100%;
  height:240px;
  object-fit:cover;
  display:block;
}

.card-body{ padding: 14px; }

.card-body h3{
  margin: 0 0 8px;
  font-size: 18px;
  color:#111;
}
.card-body p{
  margin:0;
  color:#555;
  line-height:1.55;
  font-size: 13px;
}

.price{
  margin-top: 12px;
  font-weight: 900;
  color:#111;
}

/* Pills (category label and/or filter buttons) */
.pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  font-weight:900;
  font-size:12px;
  letter-spacing:.4px;
  text-transform:uppercase;
  color:#111;
}

/* ===== MENU CARD IMAGE FIX (prevents huge photos) ===== */
.menu-card img,
.card.menu-card img{
  width: 100%;
  height: 240px;          /* adjust: 220–280 */
  object-fit: cover;
  display:block;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.card.menu-card{ overflow:hidden; }

/* Inputs (search bar / forms) */
input[type="text"],
input[type="email"],
input[type="password"],
textarea{
  width:100%;
  padding:12px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.12);
  outline:none;
  font-size: 14px;
}

/* =========================
   FOOTER
========================= */
footer{
  margin-top: 40px;
  border-top: 1px solid var(--line);
  background: rgba(15,15,16,.92);
}

.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr 1fr;
  gap: 14px;
  padding: 26px 0 18px;
}

.footer-grid h4{
  margin:0 0 10px;
  font-size:14px;
  letter-spacing:.2px;
}
.footer-grid p{
  margin:0 0 10px;
  color: rgba(255,255,255,.72);
  font-size:13px;
  line-height:1.6;
}

.footer-bottom{
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  padding: 14px 0 22px;
  color: rgba(255,255,255,.60);
  font-size:12px;
  border-top: 1px solid rgba(255,255,255,.06);
}

@media (max-width: 980px){
  .footer-grid{ grid-template-columns: 1fr; }
}

.footer-pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.06);
  color:#fff;
  font-weight:900;
  font-size:12px;
  letter-spacing:.4px;
  text-transform:uppercase;
}
.footer-pill:hover{
  border-color: rgba(212,166,74,.35);
  transform: translateY(-1px);
}

/* =========================
   ✅ Buttons inside WHITE cards/panels
   (Contact + Reservations pages)
========================= */
.panel-card .btn,
.white-card .btn,
.info-card .btn{
  border-color: rgba(0,0,0,.12);
  background:#fff;
  color:#111;
}

.panel-card .btn:hover,
.white-card .btn:hover,
.info-card .btn:hover{
  border-color: rgba(212,166,74,.35);
}

/* Keep primary gold inside white cards */
.panel-card .btn.primary,
.white-card .btn.primary,
.info-card .btn.primary{
  background: var(--gold);
  border-color: transparent;
  color:#111;
}

/* Ghost inside white cards should still be readable */
.panel-card .btn.ghost,
.white-card .btn.ghost,
.info-card .btn.ghost{
  background: rgba(0,0,0,.04);
  color:#111;
}
