body {
  font-family: Arial, sans-serif;
  background: linear-gradient(to bottom, #000000, #8B0000), url("1000106712.jpg") no-repeat center;
  background-size: cover;
  background-attachment: fixed;
  background-blend-mode: multiply;
  margin: 0;
  padding: 20px;
  color: #fff;
  text-align: center;
}

/* ✅ Correct header for <img> logo */
header {
  background: rgba(40, 26, 20, 0.9);
  color: white;
  padding: 15px;
  border-radius: 0 0 15px 15px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

/* Logo image styling */
.header-logo {
  max-width: 100%;
  height: auto;
  margin: 10px auto;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
  display: block;
}

.tagline {
  margin: 10px 0;
  font-style: italic;
  font-size: 16px;
  color: #f2f2f2;
  background: rgba(0, 0, 0, 0.6);
  padding: 4px 12px;
  border-radius: 4px;
  display: inline-block;
}

.lang-switch {
  margin-top: 15px;
}

.lang-switch button {
  margin: 5px;
  padding: 8px 15px;
  border: none;
  border-radius: 5px;
  background: #4A2E24;
  color: white;
  cursor: pointer;
}

.lang-switch button:hover {
  background: #4a3024;
}

/* Rest of your CSS remains the same */
.menu {
  max-width: 500px;
  margin: 20px auto;
}

.section {
  margin-bottom: 10px;
}

.dropdown-btn {
  width: 100%;
  background: #4A2E24;
  color: white;
  padding: 15px;
  font-size: 18px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-align: left;
  padding-left: 15px;
}

.dropdown-btn:hover {
  background: #C95B2C;
}

.dropdown-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  padding: 0 15px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #ccc;
  border-top: none;
  border-radius: 0 0 5px 5px;
  text-align: left;
}

.dropdown-content p {
  margin: 10px 0;
  color: #000;
  display: flex;
  justify-content: space-between;
  font-weight: normal;
}

.item-name {
  flex: 1;
  text-align: left;
}

.price {
  font-weight: bold;
  color: #8B0000;
  margin-left: 10px;
  white-space: nowrap;
}

.dropdown-content .note {
  font-size: 14px;
  color: #000;
  text-align: center;
  margin: 15px 0 5px;
  padding: 8px;
  background: rgba(230, 230, 230, 0.9);
  border-radius: 5px;
  font-style: italic;
  font-weight: normal;
  display: block !important;
}

footer {
  margin-top: 40px;
  font-size: 14px;
  color: #f2f2f2;
  text-align: center;
}

.lang {
  display: none;
}

@media (max-width: 600px) {
  .header-logo {
    margin: 8px auto;
  }
  .tagline {
    font-size: 14px;
  }
  .dropdown-btn {
    font-size: 16px;
    padding: 12px;
  }
  .dropdown-content p {
    font-size: 15px;
  }
  .menu {
    max-width: 100%;
    padding: 0 10px;
  }
  body {
    padding: 10px;
  }
}