/* Fast-food menu board — Rubik, neon yellow + red */
:root {
  --rf-bg: #111; --rf-yellow: #ffe600; --rf-red: #e10600;
  --rf-white: #fff; --rf-panel: #1c1c1c; --rf-muted: #aaa;
}
body.restaurant-fast {
  font-family: "Rubik", Tahoma, sans-serif;
  background: var(--rf-bg); color: var(--rf-white);
}
.rf-top {
  background: var(--rf-red); color: #fff; text-align: center;
  padding: .55rem; font-weight: 700; font-size: .9rem; letter-spacing: .04em;
}
.rf-nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1rem 0; width: min(1100px, 94%); margin-inline: auto;
}
.rf-nav .brand {
  font-weight: 800; font-size: 1.6rem; color: var(--rf-yellow);
  text-transform: uppercase;
}
.rf-nav a { color: #ddd; margin-right: 1rem; font-size: .9rem; font-weight: 500; }
.rf-hero {
  width: min(1100px, 94%); margin: 1rem auto 2rem;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 1.25rem; align-items: stretch;
}
@media (max-width: 800px) { .rf-hero { grid-template-columns: 1fr; } }
.rf-hero .board {
  background: var(--rf-panel); border: 4px solid var(--rf-yellow);
  padding: 1.75rem 1.5rem; border-radius: 8px;
}
.rf-hero .board h1 {
  font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 800; color: var(--rf-yellow);
  line-height: 1.15; margin-bottom: .75rem;
}
.rf-hero .board p { color: var(--rf-muted); margin-bottom: 1.25rem; }
.rf-hero .board .deal {
  display: inline-block; background: var(--rf-red); color: #fff;
  padding: .6rem 1.2rem; font-weight: 800; border-radius: 6px;
}
.rf-hero img {
  width: 100%; height: 100%; min-height: 260px; object-fit: cover; border-radius: 8px;
  border: 4px solid var(--rf-red);
}
.rf-section { width: min(1100px, 94%); margin: 0 auto 3rem; }
.rf-section h2 {
  font-size: 1.5rem; font-weight: 800; color: var(--rf-yellow);
  margin-bottom: 1rem; display: flex; align-items: center; gap: .5rem;
}
.rf-section h2::before {
  content: ""; width: 8px; height: 1.2em; background: var(--rf-red); display: inline-block;
}
.rf-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem;
}
@media (max-width: 900px) { .rf-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 500px) { .rf-grid { grid-template-columns: 1fr; } }
.rf-item {
  background: var(--rf-panel); border-radius: 10px; overflow: hidden;
  border: 2px solid #333;
}
.rf-item img { aspect-ratio: 1; width: 100%; object-fit: cover; }
.rf-item .info { padding: .9rem; }
.rf-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: .25rem; }
.rf-item p { color: var(--rf-muted); font-size: .82rem; margin-bottom: .5rem; }
.rf-item .price { color: var(--rf-yellow); font-weight: 800; font-size: 1.1rem; }
.rf-combo {
  background: linear-gradient(135deg, #e10600, #8b0000);
  border-radius: 12px; padding: 2rem; display: grid; grid-template-columns: 1fr auto;
  gap: 1.5rem; align-items: center; margin-bottom: 3rem;
}
@media (max-width: 600px) { .rf-combo { grid-template-columns: 1fr; } }
.rf-combo h2 { color: #fff; font-size: 1.6rem; margin-bottom: .4rem; }
.rf-combo p { color: rgba(255,255,255,.85); }
.rf-combo .big-price { font-size: 2.5rem; font-weight: 800; color: var(--rf-yellow); }
.rf-hours {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 600px) { .rf-hours { grid-template-columns: 1fr; } }
.rf-hours div {
  background: var(--rf-panel); padding: 1.25rem; border-radius: 8px; border: 1px solid #333;
}
.rf-hours strong { display: block; color: var(--rf-yellow); margin-bottom: .35rem; }
.rf-foot {
  text-align: center; padding: 1.5rem; border-top: 2px solid var(--rf-yellow);
  color: var(--rf-muted); font-size: .85rem;
}
.rf-foot a { color: var(--rf-yellow); }
