/* CSS Reset */
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;
  margin: 0;
}

/* Container */
.mobile-container {
  max-width: 1000px;
  margin: auto;
  background-color: #1a1a1a;
  border-radius: 12px;
  padding: 24px;
  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-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;
}

/* Menu Section */
.menu-content {
  padding: 24px;
}

.menu-content h2 {
  font-size: 24px;
  margin-top: 32px;
  margin-bottom: 12px;
  border-bottom: 2px solid #444;
  padding-bottom: 6px;
  color: #ffd700;
}

.menu-content h1 {
  font-size: 28px;
  margin-top: 24px;
  margin-bottom: 16px;
  color: #fff;
}

.menu-content ul {
  list-style: none;
  padding: 0;
}

.menu-content li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.menu-img {
  max-width: 150px;
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0,0,0,0.3);
}

/* Yelp Review */
.yelp-review {
  font-size: 14px;
  margin-top: 12px;
  display: block;
  color: #ccc;
}

/* Beverages Paragraph */
.menu-content p {
  margin-top: 16px;
  font-size: 16px;
  line-height: 1.6;
}

/* 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 */
@media screen and (max-width: 600px) {
  .menu-content li {
    flex-direction: column;
    align-items: flex-start;
  }

  .menu-img {
    max-width: 100%;
  }
}
/* 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);
}
.yelp-review {
  background-color: #2a2a2a;
  padding: 16px;
  margin: 32px 0;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
  font-size: 14px;
  line-height: 1.6;
  color: #ccc;
}

.yelp-review a {
  color: #ffd700;
  text-decoration: underline;
}

.yelp-review a:hover {
  color: #fff;
}
