:root{
  --bg:#0b0c10;
  --text:#f3f5f8;
  --muted:#a7adbb;
  --border:rgba(255,255,255,.10);
  --shadow:0 18px 50px rgba(0,0,0,.55);
  --accent:#ffb020;
  --accent2:#58d68d;

  --headerTop: rgba(11,12,16,.86);
  --headerBot: rgba(11,12,16,.55);

  --menuCard1: rgba(18,20,27,.96);
  --menuCard2: rgba(18,20,27,.90);

  --heroOverlay: linear-gradient(90deg, rgba(11,12,16,.88), rgba(11,12,16,.55) 55%, rgba(11,12,16,.10));
}

html[data-theme="light"]{
  --bg:#f7f7fb;
  --text:#0b1020;
  --muted:#4b5563;
  --border:rgba(15,23,42,.14);
  --shadow:0 18px 50px rgba(0,0,0,.12);

  --headerTop: rgba(247,247,251,.92);
  --headerBot: rgba(247,247,251,.75);

  --menuCard1: rgba(255,255,255,.96);
  --menuCard2: rgba(255,255,255,.92);

  --heroOverlay: linear-gradient(90deg, rgba(255,255,255,.88), rgba(255,255,255,.55) 55%, rgba(255,255,255,.10));
}

/* Smooth theme transition */
html{
  transition: background-color .35s ease, color .35s ease;
}
body{
  transition: background .35s ease, color .35s ease;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial;
  background:
    radial-gradient(1000px 700px at 15% 0%, rgba(255,176,32,.10), transparent 55%),
    radial-gradient(900px 600px at 90% 10%, rgba(88,214,141,.10), transparent 55%),
    radial-gradient(900px 700px at 50% 100%, rgba(0,0,0,.05), transparent 60%),
    var(--bg);
  color:var(--text);
}

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

.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:10px;
  padding:10px 14px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  color:var(--text);
  font-weight:800;
  font-size:13px;
  cursor:pointer;
  transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .25s ease;
}
.btn:hover{ transform: translateY(-1px); border-color: rgba(255,176,32,.35); background: rgba(255,176,32,.08); }
.btn--primary{
  border-color: rgba(255,176,32,.55);
  background: linear-gradient(135deg, rgba(255,176,32,.22), rgba(255,176,32,.06));
}
.btn--ghost{ background: rgba(255,255,255,.02); }

.card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid rgba(255,255,255,.08);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:18px;
}
.muted{ color: var(--muted); }

.header{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(14px);
  background: linear-gradient(to bottom, var(--headerTop), var(--headerBot));
  border-bottom: 1px solid rgba(255,255,255,.06);
}
.header__inner{
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}

.brand{ display:flex; align-items:center; gap:12px; min-width:240px; }
.brand img{
  width:46px; height:46px; border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  object-fit:cover;
}
.brand__nameRow{ display:flex; gap:10px; align-items:center; flex-wrap:wrap; }
.brand__name{ font-weight:900; font-size:16px; }
.brand__tag{ font-size:12px; color:var(--muted); margin-top:2px; }

.openBadge{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(88,214,141,.45);
  background: rgba(88,214,141,.12);
  color: var(--text);
  font-weight:900;
}

.nav--desktop{ display:flex; flex-wrap:wrap; gap:10px; justify-content:flex-end; }
.nav--desktop a{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  font-size:13px;
}

.header__actions{ display:flex; gap:10px; align-items:center; }
.header__btn{ min-height:40px; }
.menuBtn{ display:none; }

/* Theme animation overlay */
.themeOverlay{
  position:fixed;
  inset:-20%;
  z-index:1200;
  pointer-events:none;
  opacity:0;
  background: radial-gradient(900px 600px at 80% 20%, rgba(255,176,32,.20), transparent 60%),
              radial-gradient(900px 600px at 20% 80%, rgba(88,214,141,.20), transparent 60%);
  transform: scale(.98);
}
.themeOverlay.show{
  animation: themeFlash .55s ease;
}
@keyframes themeFlash{
  0%{ opacity:0; transform:scale(.98); }
  15%{ opacity:1; }
  100%{ opacity:0; transform:scale(1.02); }
}

/* Backdrop button (click-safe) */
.backdrop{
  position:fixed;
  inset:0;
  z-index:900;
  border:0;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(2px);
  padding:0;
}

/* Mobile menu card */
.mobileMenu{
  position:fixed;
  left:12px;
  right:12px;
  top:78px;
  z-index:950;
  display:none;
  background: linear-gradient(180deg, var(--menuCard1), var(--menuCard2));
  border:1px solid var(--border);
  border-radius:18px;
  box-shadow: var(--shadow);
  padding:14px;
}
.mobileMenu.is-open{ display:block; }
.mobileMenu__head{
  display:flex; justify-content:space-between; align-items:center;
  margin-bottom:10px;
}
.mobileMenu__title{ font-weight:900; }
.mobileMenu__close{ padding:8px 12px; }
.mobileMenu__links{ display:grid; gap:10px; }
.mobileMenu__links a{
  display:block;
  width:100%;
  text-align:center;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  font-weight:900;
}
.mobileMenu__cta{ display:flex; gap:10px; margin-top:12px; }

/* Call pulse when open */
.phoneBtn.pulse{
  animation: pulseCall 1.35s ease-in-out infinite;
  box-shadow: 0 0 0 0 rgba(255,176,32,.35);
}
@keyframes pulseCall{
  0%{ box-shadow: 0 0 0 0 rgba(255,176,32,.38); }
  70%{ box-shadow: 0 0 0 14px rgba(255,176,32,0); }
  100%{ box-shadow: 0 0 0 0 rgba(255,176,32,0); }
}

/* HERO */
.hero{
  margin-top:18px;
  border-radius:26px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.08);
  box-shadow: var(--shadow);
  background:
    var(--heroOverlay),
    url("../diavola.jpg") center/cover no-repeat;
}
/* ===== OVEN MOUTH HEAT JETS (video style) ===== */

.hero{ position:relative; }
.hero__inner{ position:relative; z-index:3; }

.heatOverlay{
  position:absolute;
  inset:0;
  z-index:2;
  pointer-events:none;
  overflow:hidden;
}

/* LEFT + RIGHT hot air jets */
.heatOverlay::before{
  content:"";
  position:absolute;
  left:0;
  bottom:-20%;
  width:100%;
  height:140%;
  filter: blur(12px);
  opacity:.85;

  background:
    /* Left jet core */
    radial-gradient(120px 260px at 18% 100%, rgba(255,190,90,.55), transparent 65%),
    radial-gradient(200px 420px at 20% 95%, rgba(255,140,40,.35), transparent 72%),

    /* Right jet core */
    radial-gradient(120px 260px at 82% 100%, rgba(255,190,90,.55), transparent 65%),
    radial-gradient(200px 420px at 80% 95%, rgba(255,140,40,.35), transparent 72%);

  animation: ovenJets 5.2s linear infinite;
}

/* Heat distortion shimmer Heat shimmer (optional but nice)
.heatOverlay::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255,255,255,.10) 0px,
      rgba(255,255,255,.10) 6px,
      transparent 6px,
      transparent 16px
    );
  opacity:.;
  filter: blur(1.5px);
  animation: heatWave 1.2s linear infinite;
}
 */
/* Jets rising upward */
@keyframes ovenJets{
  0%   { transform: translateY(18%) scaleY(0.85); opacity:.4; }
  30%  { opacity:.85; }
  70%  { transform: translateY(-10%) scaleY(1.05); opacity:.7; }
  100% { transform: translateY(-30%) scaleY(1.2); opacity:0; }
}

/* Distortion shimmer 
@keyframes heatWave{
  0%{ transform: translateX(-4%); }
  50%{ transform: translateX(4%); }
  100%{ transform: translateX(-4%); }
}
*/
/* Softer in light mode */
html[data-theme="light"] .heatOverlay::before{ opacity:.35; }
html[data-theme="light"] .heatOverlay::after{ opacity:.05; }




.hero__inner{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:18px;
  padding:28px;
  min-height: 320px;
}
.pills{ display:flex; gap:10px; flex-wrap:wrap; }
.pill{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.03);
  font-size:12px;
}
.dot{ width:8px; height:8px; border-radius:50%; background: var(--accent2); box-shadow: 0 0 0 4px rgba(88,214,141,.12); }

.hero h1{ margin:14px 0 10px; font-size:48px; letter-spacing:-.8px; }
.lead{ margin:0 0 18px; max-width: 62ch; }
.hero__buttons{ display:flex; gap:10px; flex-wrap:wrap; }

.hero__box{
  align-self:end;
  background: rgba(18,20,27,.60);
  border:1px solid rgba(255,255,255,.12);
  border-radius:18px;
  padding:16px;
  backdrop-filter: blur(10px);
}
html[data-theme="light"] .hero__box{ background: rgba(255,255,255,.65); }
.hero__boxTitle{ font-weight:900; margin-bottom:8px; }
.hero__boxText{ color: var(--muted); margin-bottom:10px; }
.kv{ display:grid; gap:10px; }
.kv div{ display:flex; justify-content:space-between; gap:10px; }
.kv span{ color:var(--muted); }

/* Sections */
.section{ padding:22px 0; }
.section__head h2{ margin:0; font-size:22px; }
.section__head p{ margin:6px 0 0; color:var(--muted); }

/* Gallery */
.gallery{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:12px;
}
.gallery figure{ margin:0; position:relative; overflow:hidden; border-radius:20px; border:1px solid rgba(255,255,255,.08); }
.gallery img{ width:100%; height:100%; object-fit:cover; display:block; transform:scale(1.02); transition:transform .35s ease; }
.gallery figure:hover img{ transform:scale(1.07); }
.gallery figcaption{
  position:absolute; left:12px; bottom:12px;
  padding:8px 10px;
  border-radius:999px;
  border:1px solid var(--border);
  background: rgba(0,0,0,.35);
  backdrop-filter: blur(8px);
  font-size:12px;
}
html[data-theme="light"] .gallery figcaption{ background: rgba(255,255,255,.70); }
.gallery__side{ display:grid; grid-template-rows: 1fr 1fr; gap:12px; }

/* QR */
.qr{
  display:grid;
  grid-template-columns: 1fr 280px;
  gap:12px;
  align-items:stretch;
}
.qr__card{ display:grid; place-items:center; gap:10px; }
.qr__title{ font-weight:900; }
.row{ display:flex; gap:10px; flex-wrap:wrap; }
.qr img{
  width:220px; height:220px;
  border-radius:16px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.06);
}

/* Menu */
.menu{
  display:grid;
  grid-template-columns: 280px 1fr;
  gap:16px;
  align-items:start;
}
.menu__tabs{ position:sticky; top:92px; }
.orderBox{
  margin-top:14px;
  padding:12px;
  border-radius:14px;
  border:1px dashed rgba(255,255,255,.14);
}
.orderBox__title{ font-weight:900; margin-bottom:6px; }

.tab{
  width:100%;
  text-align:left;
  padding:12px;
  border-radius:14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.02);
  color:var(--text);
  font-weight:900;
  cursor:pointer;
  margin-bottom:10px;
}
.tab.is-active{
  border-color: rgba(255,176,32,.55);
  background: rgba(255,176,32,.10);
}
.menu__panel h3{ margin-top:0; }

.items{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap:12px;
}
@media (max-width: 820px){
  .items{ grid-template-columns: 1fr; }
}
.item{
  border:1px solid rgba(255,255,255,.08);
  background: rgba(255,255,255,.02);
  border-radius:16px;
  padding:14px;
}
.item__top{ display:flex; justify-content:space-between; gap:10px; align-items:baseline; }
.price{ font-weight:900; color: var(--accent); white-space:nowrap; }
.panel{ display:none; }
.panel.is-show{ display:block; }

.badgeRow{ margin-top:10px; display:flex; gap:8px; flex-wrap:wrap; }
.badge{
  font-size:11px;
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(255,255,255,.02);
  font-weight:900;
}
.badge--green{ border-color: rgba(88,214,141,.45); background: rgba(88,214,141,.10); }
.badge--gold{ border-color: rgba(255,176,32,.45); background: rgba(255,176,32,.10); }

/* Cards */
.cards3{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}

/* Footer */
.footer{
  display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap;
  padding:18px 0 28px;
  border-top:1px solid rgba(255,255,255,.08);
  margin-top:22px;
}

/* Floating button */
.fab{
  position:fixed;
  right:16px;
  bottom:16px;
  z-index:800;
  display:none;
  padding:12px 14px;
  border-radius:999px;
  border:1px solid rgba(255,176,32,.55);
  background: linear-gradient(135deg, rgba(255,176,32,.22), rgba(255,176,32,.08));
  box-shadow: var(--shadow);
  font-weight:900;
}
@media (max-width: 820px){ .fab{ display:inline-flex; } }

/* Responsive */
@media (max-width: 980px){
  .hero__inner{ grid-template-columns: 1fr; }
  .menu{ grid-template-columns: 1fr; }
  .menu__tabs{ position:relative; top:auto; }
  .cards3{ grid-template-columns: 1fr; }
  .gallery{ grid-template-columns: 1fr; }
  .qr{ grid-template-columns: 1fr; }
}

@media (max-width: 820px){
  .nav--desktop{ display:none; }
  .menuBtn{ display:inline-flex; }
  .brand{ min-width:auto; }
  .hero h1{ font-size:38px; }

  /* Mobile header: compact buttons */
  .header__actions{ gap:8px; }
  .header__btn{
    padding:10px 12px;
    min-width:44px;
    justify-content:center;
  }
}
