:root{
  --bg:#0f1115;
  --card:#151822;
  --muted:#a8b0c0;
  --text:#f4f6fb;
  --accent:#f1b400;
  --line:rgba(255,255,255,.08);
  --radius:18px;
  --shadow:0 18px 45px rgba(0,0,0,.35);
}

*{ box-sizing:border-box; margin:0; padding:0; }
html{ scroll-behavior:smooth; }
body{
  font-family:Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 30% -10%, rgba(241,180,0,.18), transparent 60%),
              radial-gradient(900px 500px at 80% 10%, rgba(83,121,255,.14), transparent 60%),
              var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }

.hero__logo{
  width: 240px;
  filter:
    drop-shadow(0 8px 20px rgba(0,0,0,.4))
    brightness(1.05);
}
.hero__logo:hover{
  transform: scale(1.04);
}


.hero{
  position:relative;
  min-height: 44vh;
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 56px 18px;
  background: linear-gradient(180deg, rgba(0,0,0,.6), rgba(0,0,0,.35));
  overflow:visible;
}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(700px 400px at 50% 20%, rgba(241,180,0,.12), transparent 65%),
    url("../img/menu-bg.jpg") center/cover no-repeat;
  filter:saturate(1.05) contrast(1.05);
  opacity:.55;
}
.hero__content{
  position:relative;
  z-index:2;
  text-align:center;
  max-width: 980px;
}
.hero__title{
  font-family: Parisienne, cursive;
  font-size: clamp(48px, 7vw, 86px);
  letter-spacing:.3px;
}
.hero__subtitle{
  margin-top:8px;
  color:var(--muted);
  font-weight:600;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size: 13px;
}
.hero__nav{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  justify-content:center;
}
.hero__nav a{
  border:1px solid var(--line);
  background: rgba(0,0,0,.25);
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
  color: var(--text);
  transition: transform .15s ease, border-color .15s ease, background .15s ease;
}
.hero__nav a:hover{
  transform: translateY(-2px);
  border-color: rgba(241,180,0,.45);
  background: rgba(241,180,0,.08);
}

.wrap{
  width:min(1100px, 92vw);
  margin: 0 auto;
  padding: 36px 0 64px;
}

.section{
  position:relative;
  margin: 26px 0; 
}

.section__title{
  font-size: 24px;
  letter-spacing:.4px;
  margin-bottom: 14px;
  display:flex;
  align-items:center;
  gap:10px;
}
.section__title::before{
  content:"";
  width:10px; height:10px;
  border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(241,180,0,.12);
}
.section__subtitle{
  margin-top: 22px;
  margin-bottom: 12px;
  font-size: 18px;
  color: var(--text);
}

/* classe generica: immagine “marca de agua” */
.section--wm::before{
  content:"";
  position:absolute;
  inset:0px 0 0px 0;
  pointer-events:none;

  background: var(--wm-url) center/cover no-repeat;

  opacity:.16;
  filter: saturate(1.7) contrast(1.08) brightness(1.05);
  mix-blend-mode: screen;

box-shadow: 0 20px 60px rgba(0,0,0,.35);
  overflow: hidden;

  z-index:0;
              /* nada de -10 */
  border-radius: var(--radius);  /* que siga el borde redondeado */
}

/* para que el contenido esté encima del watermark */
.section--wm > *{
   padding: 22px;           /* espacio interno para que se vea bien */
  border-radius: 32px;
  overflow: hidden; 
}

.note{
  border:1px solid var(--line);
  background: rgba(0,0,0,.25);
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--muted);
  margin-bottom: 14px;
}

.table{
  border:1px solid var(--line);
  border-radius: var(--radius);
  overflow:hidden;
  box-shadow: var(--shadow);
  background: rgba(0,0,0,.18);
}
.row{
  display:grid;
  grid-template-columns: 1.7fr 1fr 1fr 1fr;
  gap:0;
  border-top: 1px solid var(--line);
}
.row:first-child{ border-top:none; }
.row--head{
  background: rgba(241,180,0,.08);
  font-weight:700;
}
.cell{
  padding: 12px 12px;
  border-right: 1px solid var(--line);
  text-align:center;
}
.cell:last-child{ border-right:none; }
/* --- Ingredienti: più piccoli e più chiari --- */
.cell--name{
  text-align:left;
  font-weight:800;
  letter-spacing:.2px;
}
.ingredients{
  display:block;
  margin-top:4px;
  font-weight:500;
  font-size:12px;
  line-height:1.25;
  color:rgba(244,246,251,.70);
}


.cards{
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.card{
  border:1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(0,0,0,.18);
  box-shadow: var(--shadow);
  padding: 16px;
}
.card--wide{ padding: 16px; }

.card h3{
  font-size: 16px;
  margin-bottom: 10px;
  color: var(--accent);
  letter-spacing:.3px;
}
.card ul{ list-style:none; display:flex; flex-direction:column; gap:10px; }
.card li{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  padding-bottom:10px;
  border-bottom:1px dashed rgba(255,255,255,.10);
}
.card li:last-child{ border-bottom:none; padding-bottom:0; }
.card li span{ color: var(--text); line-height:1.25; }
.card li strong{ color: var(--text); white-space:nowrap; }

.grid-list{
  list-style:none;
  display:grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 14px;
}
.grid-list li{
  display:flex;
  justify-content:space-between;
  gap:12px;
  border-bottom:1px dashed rgba(255,255,255,.10);
  padding-bottom:10px;
}
.grid-list li:nth-last-child(-n+2){ border-bottom:none; padding-bottom:0; }

.small{
  margin-top: 10px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.35;
}

.footer{
  border-top:1px solid var(--line);
  color: var(--muted);
  text-align:center;
  padding: 22px 14px;
}

/* Botón flotante volver arriba */
.to-top{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  display: grid;
  place-items: center;

  background: rgba(0,0,0,.28);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  color: rgba(244,246,251,.95);
  font-weight: 900;
  box-shadow: 0 18px 40px rgba(0,0,0,.35);

  opacity: 0;
  transform: translateY(10px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease, background .18s ease, border-color .18s ease;
  z-index: 9999;
}

.to-top.show{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top:hover{
  background: rgba(241,180,0,.18);
  border-color: rgba(241,180,0,.45);
}



html, body{
  overflow-x: hidden;
}


/* Responsive */
@media (max-width: 820px){
  .cards{ grid-template-columns: 1fr; }
  .grid-list{ grid-template-columns: 1fr; }
  .row{ grid-template-columns: 1.6fr 1fr 1fr 1fr; }

   .to-top{
    bottom: 90px; /* lo subimos un poco */
    right: 14px;
  }
}
