.gallery {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}
.gallery img {
  width: 120px;
  height: auto;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}
.gallery img:hover {
  transform: scale(1.05);
}
#lightbox {
  display: none;
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  justify-content: center;
  align-items: center;
}
#lightbox img {
  max-width: 90%;
  max-height: 90%;
  border-radius: 12px;
}
#lightbox-caption {
  color: #fff;
  background: rgba(0, 0, 0, 0.7);
  padding: 1rem 2rem;
  border-radius: 8px;
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 1.2rem;
  max-width: 90vw;
  text-align: center;
  z-index: 1001;
}
.gallery img {
  width: 120px;
  height: 90px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s;
}

body {
  font-family: "Georgia", serif;
  margin: 0;
  padding: 0;
  background-color: #fff8f0;
  color: #333;
  line-height: 1.6;
}

header {
  background-color: #d69c7c;
  color: white;
  padding: 2rem;
  text-align: center;
}

header h1 {
  margin: 0;
  font-size: 2.5rem;
}

header p {
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.section {
  padding: 2rem;
  max-width: 800px;
  margin: auto;
}

.menu-category {
  margin-bottom: 2rem;
}

.menu-category h3 {
  font-size: 2rem;
  color: #8b4c39;
  font-weight: bold;
  border-bottom: 3px solid #8b4c39;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.menu-category .subcategory {
  font-size: 1.5rem;
  color: #8b4c39;
  font-weight: bold;
  border-bottom: 1px solid #8b4c39;
  padding-bottom: 0.5rem;
  margin-bottom: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.menu-category-plus-button {
  background-color: #8b4c39;
  color: white;
  border: none;
  padding: 0.3rem 0.6rem;
  border-radius: 4px;
  font-size: 0.9rem;
  cursor: pointer;
}

.menu-category button:hover {
  background-color: #6e3a2c;
}

.menu-category-add-button {
  background-color: #8b4c39;
  color: white;
  border: none;
  padding: 0.3rem 0.3rem;
  border-radius: 1px;
  font-size: 0.6rem;
  cursor: pointer;
}

.menu-items {
  display: none;
  margin-top: 0.8rem;
}

.menu-items.expanded {
  display: block;
}

.menu-item {
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #ccc;
  padding-bottom: 0.5rem;
}

.menu-item h4 {
  margin: 0;
  font-size: 1.4rem;
  color: #8b4c39;
}

.menu-item p {
  margin: 0.3rem 0;
}

.garden-note {
  background-color: #e6f4e4;
  padding: 1rem;
  margin-top: 2rem;
  border-left: 5px solid #5a9c60;
  border-radius: 8px;
}

.contact {
  background-color: #fff3cd;
  padding: 1rem;
  margin-top: 2rem;
  border-left: 5px solid #f0ad4e;
  border-radius: 8px;
}

footer {
  text-align: center;
  font-size: 0.9rem;
  padding: 1rem;
  color: #999;
  background-color: #f9f9f9;
  margin-top: 2rem;
}

#notification {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #8b4c39;
  color: white;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 0.9rem;
  text-align: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  z-index: 1000;
}

#notification.visible {
  opacity: 1;
}

.hidden {
  display: none;
}

@media (max-width: 600px) {
  header h1 {
    font-size: 1.8rem;
  }

  header p {
    font-size: 1rem;
  }

  .menu-category h3 {
    font-size: 1.6rem;
  }
}
.language-selector {
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1000;
}

.lang-dropdown {
  position: relative;
  display: inline-block;
}

.lang-current {
  background: #8b4c39;
  color: white;
  border: none;
  padding: 8px 12px;
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 500;
  min-width: 80px;
}

.lang-current img {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  object-fit: cover;
}

.lang-current:after {
  content: "▼";
  font-size: 10px;
  margin-left: auto;
}

.lang-list {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  background: white;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.15);
  margin-top: 8px;
  padding: 4px;
  max-height: 300px;
  overflow-y: auto;
}

.lang-dropdown.active .lang-list {
  display: block;
}

.lang-btn {
  background: none;
  color: #333;
  border: none;
  padding: 8px 12px;
  width: 100%;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  white-space: nowrap;
}

.lang-btn:hover {
  background: #f5f5f5;
}

.lang-btn.active {
  background: #8b4c39;
  color: white;
}

/* Mobile-specific adjustments */
@media (max-width: 768px) {
  .language-selector {
    top: 10px;
    right: 10px;
  }

  .lang-current {
    padding: 6px 10px;
    font-size: 13px;
    min-width: 70px;
  }

  .lang-current img {
    width: 16px;
    height: 16px;
  }

  .lang-list {
    max-height: 60vh;
    width: max-content;
  }
}
