* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Arial Black', Arial, sans-serif;
}

body {
  background: #111;
  color: #fff;
  padding-top: 110px;
}

header {
  background: #000;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 4px solid #e60000;
  transition: top 0.3s ease;
}

nav {
  max-width: 1200px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo-img {
  height: 80px;
  width: auto;
}

.logo-text {
  font-size: 22px;
  color: #fff;
}

.logo-text span {
  color: #e60000;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-links a {
  color: #fff;
  text-decoration: none;
  font-size: 12px;
  transition: color .2s;
}

.nav-links a:hover {
  color: #e60000;
}

.btn-order {
  background: #e60000;
  padding: 8px 16px;
  border-radius: 25px;
  font-size: 12px;
}

.btn-order:hover {
  background: #b30000;
  color: #fff;
}

.hero {
  text-align: center;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 20px;
  background: linear-gradient(rgba(0,0,0,.6), rgba(0,0,0,.6)), url("images/hero.png") center/cover no-repeat;
}

.hero h1 {
  font-size: 56px;
  color: #e60000;
  margin-bottom: 15px;
}

.hero p {
  font-family: Arial, sans-serif;
  font-size: 18px;
  color: #ddd;
}

.btn-main {
  display: inline-block;
  margin-top: 25px;
  background: #e60000;
  color: #fff;
  padding: 14px 35px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background .2s, color .2s;
}

.btn-main:hover {
  background: #fff;
  color: #e60000;
}

.section {
  padding: 80px 20px;
  max-width: 1100px;
  margin: auto;
}

.section-title {
  text-align: center;
  color: #e60000;
  font-size: 36px;
  margin-bottom: 50px;
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}

.tab {
  background: #1c1c1c;
  color: #fff;
  border: 2px solid #e60000;
  padding: 10px 18px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 13px;
  font-weight: bold;
  transition: all .2s;
}

.tab:hover {
  background: #e60000;
}

.tab.active {
  background: #e60000;
}

.menu-category {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.menu-category.hidden {
  display: none;
}

.menu-item {
  background: #1c1c1c;
  border-radius: 12px;
  padding: 20px;
  border-left: 4px solid #e60000;
  transition: transform .2s;
}

.menu-item:hover {
  transform: translateY(-5px);
}

.menu-item h3 {
  color: #e60000;
  font-size: 16px;
  margin-bottom: 8px;
}

.menu-item p {
  color: #aaa;
  font-family: Arial, sans-serif;
  font-size: 13px;
  margin-bottom: 12px;
}

.menu-item .price {
  font-size: 18px;
  font-weight: bold;
  color: #fff;
}

.specials {
  background: #e60000;
  padding: 80px 0;
}

.specials .section-title {
  color: #fff;
}

.day-title {
  color: #fff;
  text-align: center;
  margin: 30px 0 20px;
  font-size: 22px;
}

.specials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto 30px;
  padding: 0 20px;
}

.special-card {
  background: #111;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  transition: transform .2s;
}

.special-card:hover {
  transform: translateY(-5px);
}

.day-badge {
  display: inline-block;
  background: #e60000;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  padding: 5px 15px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.day-badge.everyday {
  background: #fff;
  color: #111;
}

.special-card h3 {
  color: #fff;
  font-size: 15px;
  margin-bottom: 10px;
  font-family: Arial, sans-serif;
}

.special-card .price {
  font-size: 22px;
  color: #e60000;
  font-weight: bold;
}

.sauces {
  background: #000;
  border-top: 4px solid #e60000;
  border-bottom: 4px solid #e60000;
  text-align: center;
  padding: 50px 20px;
}

.sauces h2 {
  color: #e60000;
  font-size: 28px;
  margin-bottom: 8px;
}

.sauces-sub {
  color: #999;
  font-family: Arial, sans-serif;
  font-style: italic;
  font-size: 14px;
  margin-bottom: 25px;
}

.sauces-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  max-width: 900px;
  margin: auto;
}

.sauce {
  background: #e60000;
  color: #fff;
  padding: 10px 22px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: bold;
  transition: transform .2s, background .2s, color .2s;
}

.sauce:hover {
  background: #fff;
  color: #e60000;
  transform: scale(1.05);
}

.about p {
  text-align: center;
  max-width: 700px;
  margin: auto;
  color: #ccc;
  line-height: 1.8;
  font-family: Arial, sans-serif;
}

footer {
  background: #000;
  border-top: 4px solid #e60000;
  text-align: center;
  padding: 50px 20px;
}

footer h2 {
  color: #e60000;
  margin-bottom: 15px;
}

footer p {
  font-family: Arial, sans-serif;
  font-size: 14px;
  color: #ccc;
  margin-bottom: 10px;
}

footer strong {
  color: #fff;
  font-size: 16px;
}

footer a {
  color: #e60000;
  word-break: break-all;
}

.footer-grid {
  max-width: 1000px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}

.hours {
  margin: auto;
  border-collapse: collapse;
  font-family: Arial, sans-serif;
  font-size: 14px;
}

.hours td {
  padding: 6px 20px;
  color: #ccc;
}

.hours td:first-child {
  color: #e60000;
  font-weight: bold;
  text-align: left;
}

.hours td:last-child {
  text-align: right;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 15px;
  background: #25D366;
  color: #fff;
  padding: 12px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: background .2s;
}

.whatsapp-btn:hover {
  background: #1da851;
}

.copyright {
  margin-top: 40px;
  color: #666;
  font-size: 13px;
}

.whatsapp-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  background: #25D366;
  color: #fff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0,0,0,.5);
  z-index: 200;
  transition: transform .2s;
}

.whatsapp-float:hover {
  transform: scale(1.1);
}

@media (max-width: 700px) {
  .footer-grid {
    grid-template-columns: 1fr;
  }

  nav {
    flex-direction: column;
    gap: 10px;
  }

  .nav-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .logo-img {
    height: 60px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .section-title {
    font-size: 28px;
  }

  body {
    padding-top: 130px;
  }
}
/* ============================================
   MOBILE OPTIMISATION FIXES
   ============================================ */
@media (max-width: 768px) {

  /* --- Hero: show more of the photo, less zoom --- */
  .hero {
    min-height: 85vh;
    background-size: cover;
    background-position: center 30%;
  }

  /* --- Menu background: pin to screen so it never stretches --- */
  #menuBg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    transform: none;
    background-size: cover;
    background-position: center;
    z-index: 0;
  }

  /* --- Smaller, tighter header on phones --- */
  .logo-img {
    height: 48px;
  }

  .logo-text {
    font-size: 18px;
  }

  .nav-links a {
    font-size: 11px;
  }

  .btn-order {
    padding: 6px 12px;
    font-size: 11px;
  }

  body {
    padding-top: 150px;
  }

  /* --- Tabs: smaller pills so more fit per row --- */
  .tab {
    padding: 8px 14px;
    font-size: 12px;
  }

  .tabs {
    gap: 8px;
    margin-bottom: 25px;
  }

  /* --- Menu cards: tighter text --- */
  .menu-item {
    padding: 14px;
  }

  .menu-item h3 {
    font-size: 15px;
  }

  .menu-item p {
    font-size: 12px;
  }

  .menu-item .price {
    font-size: 16px;
  }

  .cart-btn {
    padding: 10px 16px;
    font-size: 13px;
  }

  /* --- Cart floating button: smaller, out the way --- */
  .cart-float {
    bottom: 15px;
    right: 12px;
    padding: 12px 16px;
    font-size: 14px;
  }

  .whatsapp-float {
    width: 50px;
    height: 50px;
    font-size: 24px;
    bottom: 70px;
    right: 12px;
  }

  /* --- Sections: less wasted space --- */
  .section {
    padding: 40px 14px;
  }

  .section-title {
    font-size: 24px;
    margin-bottom: 25px;
  }

  /* --- Specials cards --- */
  .special-card h3 {
    font-size: 14px;
  }

  .special-card .price {
    font-size: 19px;
  }

  /* --- Footer --- */
  .hours td {
    padding: 5px 10px;
    font-size: 13px;
  }

  footer p {
    font-size: 13px;
  }
}
