body {
  margin: 0;
  font-family: "Noto Sans SC", sans-serif;
  background: #464644;
  color: #333;
}

.container {
  max-width: 960px;
  margin: auto;
  padding: 20px;
}

h1 {
  text-align: center;
  font-size: 24px;
  margin-bottom: 10px;
  color:white
}

h2 {
  color: #fff;
}

p {
  color: #fff;
}

.tag.green {
  color:#000
}

.tag.red {
  color:#000
}

.tag.yellow {
  color: #000
}

.desc {
  text-align: center;
  font-size: 16px;
  margin-bottom: 30px;
  color: #ffffff;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
  margin-bottom: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 0 20px rgba(255, 204, 0, 0.2);
}

.main-img {
  max-width: 300px;
  width: 100%;
  object-fit: contain;
}

.hero-text {
  flex: 1;
}

.tags {
  margin: 10px 0;
}

.tag {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 5px;
  margin-right: 8px;
  font-size: 12px;
  color: #fff;
}

.tag.green { background-color: #2ecc71; }
.tag.yellow { background-color: #f1c40f; }
.tag.red { background-color: #e74c3c; }

.buttons .btn {
  display: inline-block;
  background-color: #444;
  color: #fff;
  padding: 10px 15px;
  margin: 5px 5px 0 0;
  border-radius: 6px;
  text-decoration: none;
  transition: 0.2s;
}
.buttons .btn:hover {
  background-color: #000;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.menu-infomation {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 15px;
  margin-top: 30px;
  margin-bottom: 30px;
}

.menu-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.infomation-item {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s;
}

.menu-item:hover {
  transform: scale(1.03);
}

.infomation-item:hover {
  transform: scale(1.03);
}

.menu-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.infomation-item img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  display: block;
}

.overlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  width: 100%;
  color: #fff;
  padding: 10px;
  font-weight: bold;
}

.infomationlay {
  position: absolute;
  bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  width: 100%;
  color: #fff;
  padding: 10px;
  font-weight: bold;
}

.badge {
  position: absolute;
  top: 8px;
  right: 8px;
  background: gold;
  color: black;
  padding: 2px 6px;
  border-radius: 5px;
  font-weight: bold;
}

.menu-row-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.menu-row-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.infomation-1 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  margin-bottom: 20px;
}

.tab-switcher {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  padding: 8px 16px;
  border-radius: 10px;
  backdrop-filter: blur(6px);
}
.tab-switcher h2 {
  cursor: pointer;
  color: #ccc;
  padding: 6px 16px;
  border-radius: 8px;
  transition: all 0.3s;
}
.tab-switcher h2.active {
  background-color: #ffffff22;
  color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.tab-section {
  display: none;
  animation: slideIn 0.4s ease forwards;
}
.tab-section.active {
  display: block;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}