/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Montserrat', sans-serif;
  background-color: #fafafa;
  color: #333;
  line-height: 1.6;
}
a {
  color: inherit;
  text-decoration: none;
}
ul {
  list-style: none;
}

/* Hero Banner */
.hero-banner {
  position: relative;
  height: 40vh;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-overlay {
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-align: center;
  padding: 20px;
}
.menu-logo {
  max-width: 120px;
  margin-bottom: 10px;
}
.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.hero-subtitle {
  font-size: 1.2rem;
  font-weight: 300;
}

/* Top Bar (Wi-Fi & Language) */
.top-bar {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 10px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 4px;
}
.wifi-info {
  font-size: 0.9rem;
  font-weight: 400;
}
.language-switcher .lang-btn {
  background: none;
  border: none;
  font-size: 0.9rem;
  padding: 5px 8px;
  cursor: pointer;
  transition: color 0.3s;
}
.language-switcher .lang-btn.active,
.language-switcher .lang-btn:hover {
  color: #e63946;
}

/* Category Tabs */
.category-tabs {
  background-color: #fff;
  width: 100%;
  border-bottom: 1px solid #ddd;
  position: sticky;
  top: 0;
  z-index: 10;
}
.category-tabs ul {
  display: flex;
  overflow-x: auto;
  white-space: nowrap;
}
.category-tabs li {
  margin-right: 15px;
}
.category-tabs li button {
  background: none;
  border: none;
  padding: 15px 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: color 0.3s, border-bottom 0.3s;
}
.category-tabs li button.active {
  color: #e63946;
  border-bottom: 2px solid #e63946;
}

/* Menu Container */
.menu-container {
  padding: 20px;
  max-width: 800px;
  margin: 0 auto;
}
.category-section {
  margin-bottom: 40px;
}
.category-title {
  font-size: 1.8rem;
  font-weight: 600;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.menu-item {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.menu-item:last-child {
  margin-bottom: 0;
}
.item-image {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 12px;
}
.item-details {
  flex: 1;
}
.item-name {
  font-size: 1rem;
  font-weight: 500;
}
.item-desc {
  font-size: 0.9rem;
  font-weight: 300;
  margin-top: 5px;
  color: #666;
}
.item-price {
  font-size: 1rem;
  font-weight: 600;
  min-width: 60px;
  text-align: right;
}

/* Footer */
.menu-footer {
  text-align: center;
  padding: 20px 0;
  color: #888;
  font-size: 0.9rem;
  background-color: #fff;
  margin-top: 40px;
  border-top: 1px solid #ddd;
}
.menu-footer a {
  color: #e63946;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 600px) {
  .hero-title {
    font-size: 1.8rem;
  }
  .hero-subtitle {
    font-size: 1rem;
  }
  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }
  .language-switcher .lang-btn {
    font-size: 0.8rem;
  }
}
