:root{
  --bg: #0c0c0c;
  --panel: rgba(18,18,18,.72);
  --gold: #d4af37;
  --gold-soft: #f1d87a;
  --text: #f5f5f5;
  --muted: rgba(255,255,255,.65);
  --radius: 18px;
}

/* RESET */
*{box-sizing:border-box;margin:0;padding:0}
body{
  font-family: system-ui,-apple-system,Segoe UI,Roboto;
  color:var(--text);
  background:#000;
  overflow-x:hidden;
}

/* BACKGROUND IMAGE FIXED */
body::before{
  content:"";
  position:fixed;
  inset:0;
  background:
    linear-gradient(rgba(0,0,0,.75),rgba(0,0,0,.85)),
    url("assets/bg.jpg") center/cover no-repeat;
  z-index:-1;
}

/* CONTAINER */
.container{
  width:min(1100px,92%);
  margin:auto;
}

/* TOPBAR */
.topbar{
  position:sticky;
  top:0;
  background:rgba(0,0,0,.6);
  backdrop-filter:blur(8px);
  border-bottom:1px solid rgba(255,215,0,.2);
  z-index:50;
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:900;
  font-size:18px;
}
.logo{
  width:38px;
  border-radius:10px;
  border:1px solid rgba(255,215,0,.4);
}

/* NAV */
.nav{
  display:flex;
  gap:14px;
}
.nav a{
  padding:8px 12px;
  border-radius:10px;
  transition:.3s;
}
.nav a:hover{
  background:rgba(255,215,0,.15);
  box-shadow:0 0 12px rgba(255,215,0,.3);
}

/* HERO */
.hero{
  padding:60px 0 30px;
}
.hero-title{
  font-size:48px;
  font-weight:900;
  color:var(--gold-soft);
  text-shadow:0 0 30px rgba(255,215,0,.25);
}
.hero-sub{
  margin-top:10px;
  color:var(--muted);
}
.hero-actions{
  margin-top:20px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  padding:10px 16px;
  border-radius:14px;
  border:1px solid rgba(255,215,0,.4);
  background:rgba(255,215,0,.1);
  transition:.3s;
}
.btn:hover{
  background:rgba(255,215,0,.2);
  box-shadow:0 0 18px rgba(255,215,0,.4);
}
.btn.gold{
  background:linear-gradient(135deg,var(--gold),#000);
  color:#000;
  font-weight:800;
}

/* SECTION */
.section{
  padding:40px 0;
}
.h2{
  font-size:24px;
  font-weight:900;
  margin-bottom:6px;
}
.sub{
  color:var(--muted);
  margin-bottom:20px;
}

/* CARD */
.card{
  background:rgba(15,15,15,.75);
  border:1px solid rgba(255,215,0,.2);
  border-radius:var(--radius);
  padding:18px;
  backdrop-filter:blur(8px);
  box-shadow:0 0 30px rgba(0,0,0,.6);
}

/* SEARCH */
.searchbar input{
  width:100%;
  padding:12px;
  border-radius:12px;
  border:1px solid rgba(255,215,0,.3);
  background:#000;
  color:white;
}

/* MENU GRID */
.menu-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:20px;
}
.menu-card{
  padding:16px;
}
.menu-head{
  display:flex;
  justify-content:space-between;
  margin-bottom:12px;
  border-bottom:1px solid rgba(255,215,0,.2);
  padding-bottom:8px;
}
.cat{
  color:var(--gold-soft);
  font-weight:900;
}
.item{
  padding:10px 0;
  border-bottom:1px dashed rgba(255,255,255,.1);
}
.item:last-child{border:0}
.item .name{
  font-weight:700;
}
.meta{
  display:flex;
  justify-content:space-between;
  margin-top:4px;
  font-size:14px;
}
.price{
  color:var(--gold-soft);
  font-weight:900;
}

/* EVENTS */
.events-wrap{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
}
.event{
  overflow:hidden;
}
.event .cover{
  height:160px;
  background:linear-gradient(135deg,var(--gold),#000);
}
.event .body{
  padding:14px;
}
.event .title{
  font-weight:900;
  margin-top:6px;
}
.event .desc{
  font-size:14px;
  color:var(--muted);
}

/* FOOTER */
.footer{
  padding:30px 0;
  text-align:center;
  border-top:1px solid rgba(255,215,0,.2);
  color:var(--muted);
  margin-top:40px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .menu-grid,
  .events-wrap{
    grid-template-columns:1fr;
  }
}
/* Hide edit-sheet link for everyone */
#openSheet{ display:none !important; }
/* Force all links to be gold (no blue/purple visited) */
a, a:visited, a:hover, a:active{
  color: #f1d87a !important;
  text-decoration: none;
}
.nav a, .footer a, .brand, .btn{
  color: inherit !important;
}
.qr-box{
  margin-top:16px;
  display:inline-flex;
  flex-direction:column;
  align-items:center;
  gap:8px;
  padding:14px 16px;
  border-radius:18px;
  background: rgba(10,10,10,.55);
  border: 1px solid rgba(255,215,0,.28);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 60px rgba(0,0,0,.55);
  width: fit-content;
}
.qr-title{
  font-weight: 900;
  color: #f1d87a;
  letter-spacing:.2px;
}
.qr-img{
  width: 140px;
  height: 140px;
  border-radius: 14px;
  border: 1px solid rgba(255,215,0,.35);
  background: rgba(0,0,0,.35);
  padding: 8px;
}
.qr-sub{
  color: rgba(255,255,255,.70);
  font-size: 12px;
}
.qr-card{
  margin-top: 14px;
  width: 220px;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid rgba(215,180,90,.35);
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(6px);
  box-shadow: 0 18px 60px rgba(0,0,0,.45);
}
.qr-title{
  font-weight: 900;
  color: var(--gold2);
  margin-bottom: 8px;
}
.qr-img{
  width: 100%;
  border-radius: 14px;
  background: #fff;
  padding: 10px;
}
.qr-sub{
  margin-top: 8px;
  color: rgba(255,255,255,.70);
  font-size: 12px;
}
.pikado-body{
  padding-top: 76px; /* prostor da header ne pređe preko teksta */
}