css = r"""/* menu_styles.css - styles for the converted menu HTML */
:root{
  --bg-img: 'img/bg.jpg';
  --accent: #ff8a00;
  --dark: #0b0b0b;
  --muted: #f5c19a;
}

*{box-sizing:border-box}
html,body{height:100%;margin:0;font-family: 'Roboto', sans-serif;background:#000;color:#f0c8a0}
.menu-wrapper{
  min-height:100vh;
  background-image: url('img/bg.jpg');
  background-size:cover;
  background-position:center top;
  padding:40px 6%;
  display:flex;
  flex-direction:column;
  align-items:center;
}

/* logo area */
.logo-area{margin-top:10px;text-align:center}

.slogan{
  font-weight:700;
  color:#ffd29a;
  font-size:14px;
  letter-spacing:1px;
  background:rgba(255,0,0,0.25);
  padding:6px 12px;
  border-radius:14px;
  box-shadow:0 2px 4px rgba(0,0,0,0.6);
}

/* columns layout */
.columns{
  width:100%;
  display:flex;
  gap:40px;
  justify-content:space-between;
  align-items:flex-start;
}

/* left and right columns */
.col{
  background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.35));
  padding:20px;
  border-radius:8px;
  width:48%;
  max-width:640px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.7);
}

.section-title{
  font-family: 'Staatliches', sans-serif;
  color:#ff7a00;
  font-size:36px;
  margin:0 0 12px 0;
  text-shadow:0 2px 6px rgba(0,0,0,0.6);
}

/* items */
.item{margin-bottom:18px}
.item-title{
  font-weight:700;
  font-size:20px;
  color:#ffb46b;
  text-shadow:0 2px 2px rgba(0,0,0,0.6);
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.item-title.small{font-size:18px}
.price{
  color:#ffb46b;
  font-weight:700;
  font-size:20px;
  margin-left:12px;
}

.item-sub{font-weight:700;margin-top:4px;color:#f9d6b5}
.item-desc{font-size:13px;line-height:1.4;color:#f0c8a0;margin:6px 0 0 0;}

/* right column special blocks */
.tornado{margin-top:18px}
.chef-burger{
  margin-top:18px;
  background:rgba(0,0,0,0.25);
  padding:12px;border-radius:8px;text-align:center;
  box-shadow: inset 0 -4px 20px rgba(0,0,0,0.35);
}
.chef-burger h3{font-family:'Staatliches',sans-serif;color:#ff8a00;margin:6px 0;font-size:28px}
.burger-price{font-size:28px;font-weight:700;color:#ffb46b;margin-top:8px}

/* sauces and allergy */
.sauces{margin-top:18px}
.sauces h4, .allergy h4{font-weight:700;color:#ffb46b;margin-bottom:6px}
.allergy{margin-top:18px;font-size:12px;color:#f3c9a4}

/* footer */
.menu-footer{width:100%;text-align:center;margin-top:auto;padding:24px 0}
.bottom-logo{font-family:'Staatliches',sans-serif;color:#ff8a00;font-size:28px;text-shadow:0 2px 6px rgba(0,0,0,0.6)}
.bottom-logo a {color:#ff8a00}

/* responsive */
@media (max-width:900px){
  .columns{flex-direction:column;gap:20px}
  .col{width:100%}
  .logo-text{font-size:48px}
  .menu-title{font-size:42px}
}
