/* Reset Styles */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
  display: block;
}
body {
  line-height: 1;
  font-family: 'Roboto', sans-serif;
  background: linear-gradient(to bottom right, #1e1e1e, #2c2c2c);
  color: #f0f0f0;
}

/* Container */
.mobile-container {
  max-width: 1000px;
  margin: auto;
  padding: 24px;
  background-color: #1a1a1a;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0,0,0,0.5);
}

/* Top Navigation */
.topnav {
  background-color: #111;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  position: relative;
  z-index: 10;
}

.topnav a {
  color: #f0f0f0;
  padding: 16px 20px;
  text-decoration: none;
  font-size: 18px;
  display: block;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.topnav a:hover {
  background-color: #333;
  color: #ffd700;
}

.topnav a.active {
  background-color: #000;
  color: #ffd700;

  font-size: 20px;
  font-weight: bold;
  letter-spacing: 1px;
}

.topnav a.icon {
  background-color: #333;
  position: absolute;
  right: 0;
  top: 0;
  padding: 16px 20px;
}

.topnav #myLinks {
  display: none;
  transition: max-height 0.3s ease-out;
  overflow: hidden;
}

/* Content Styling */
.menu-content {
  padding: 24px;
}

.menu-content h1,
.menu-content h2 {
  font-size: 24px;
  margin: 32px 0 16px;
  color: #ffd700;
  border-bottom: 2px solid #444;
  padding-bottom: 6px;
}

.menu-content ul {
  list-style: none;
  padding: 0;
}

.menu-content ul li {
  margin-bottom: 48px;
  font-size: 16px;
  line-height: 1.6;
}

/* Image Styling */
.menu-img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  display: block;
  margin: 12px auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

/* Order Now Button */
.order-now-container {
  text-align: center;
  margin: 32px 0;
}

.order-now-button {
  background: linear-gradient(to bottom, #f97676, #ff0000);
  color: #fff;
  padding: 14px 32px;
  font-size: 18px;
  font-weight: bold;
  border-radius: 10px;
  text-decoration: none;
  box-shadow: 0 4px 10px rgba(255, 0, 0, 0.4);
  transition: background 0.3s ease, transform 0.2s ease;
  display: inline-block;
}

.order-now-button:hover {
  background: linear-gradient(to bottom, #ff9292, #ff2525);
  transform: scale(1.05);
}

/* Footer */
.site-footer {
  background-color: #111;
  color: #ccc;
  text-align: center;
  padding: 20px;
  font-size: 0.95rem;
  border-top: 1px solid #333;
  margin-top: 40px;
}

/* Responsive Layout */
@media screen and (max-width: 600px) {
  .menu-img {
    max-width: 100%;
  }

  .menu-content ul li {
    margin-bottom: 32px;
  }

  .topnav a {
    font-size: 16px;
    padding: 14px;
  }

  .order-now-button {
    font-size: 16px;
    padding: 12px 24px;
  }
}
