/* ===== Menu Page Styles ===== */
.menu-page {
  padding-top: 80px;
  background: linear-gradient(135deg, #fcf5e8 0%, #f5e6c8 100%);
  min-height: 100vh;
}

/* Menu Hero Section */
.menu-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  padding: 60px 40px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: center;
}

.hero-content h1 {
  font-size: 4em;
  color: #8b5e3c;
  margin-bottom: 20px;
  font-family: "Georgia", serif;
}

.hero-content p {
  font-size: 1.3em;
  color: #4b2e1e;
  margin-bottom: 30px;
  line-height: 1.6;
}

.download-section {
  margin-top: 30px;
}

.download-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background-color: #8b5e3c;
  color: #fcefcb;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  border: 2px solid #8b5e3c;
}

.download-btn:hover {
  background-color: transparent;
  color: #8b5e3c;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(139, 94, 60, 0.2);
}

.download-note {
  font-size: 0.9em;
  color: #666;
  margin-top: 10px;
}

.hero-image img {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Menu Categories Navigation */
.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 15px;
  padding: 20px;
  background: white;
  margin: 20px 40px;
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  position: flex;
  top: 80px;
  z-index: 100;
}

.category-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 15px 20px;
  background: transparent;
  border: 2px solid #e0d6c2;
  border-radius: 10px;
  color: #8b5e3c;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 100px;
  cursor: pointer;
}

.category-btn:hover,
.category-btn.active {
  background-color: #8b5e3c;
  color: #fcefcb;
  border-color: #8b5e3c;
  transform: translateY(-3px);
}

.category-btn i {
  font-size: 1.5em;
}

.category-btn span {
  font-weight: 600;
  font-size: 0.9em;
}

/* Menu Sections */
.menu-section {
  max-width: 1200px;
  margin: 40px auto;
  padding: 40px;
  display: none;
}

.menu-section.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.menu-section h2 {
  font-size: 2.5em;
  color: #4b2e1e;
  margin-bottom: 30px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.menu-section h2 i {
  color: #8b5e3c;
}

/* Menu Items */
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  gap: 30px;
}

.menu-item {
  background: white;
  border-radius: 15px;
  padding: 25px;
  display: flex;
  gap: 20px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #eee;
}

.menu-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.item-image {
  flex-shrink: 0;
  width: 150px;
  height: 150px;
}

.item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.item-details {
  flex: 1;
}

.item-details h3 {
  font-size: 1.4em;
  color: #4b2e1e;
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.price {
  color: #8b5e3c;
  font-weight: bold;
  font-size: 1.2em;
  margin-left: 10px;
}

.description {
  color: #666;
  line-height: 1.6;
  margin-bottom: 15px;
  font-size: 0.95em;
}

.item-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.tag {
  background-color: #f0e6d2;
  color: #8b5e3c;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8em;
  font-weight: 600;
}

.full-menu-download {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 40px;
}

.download-card {
  background: linear-gradient(135deg, #8b5e3c 0%, #a67850 100%);
  color: white;
  padding: 50px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(139, 94, 60, 0.2);
}

.download-card i {
  font-size: 3em;
  margin-bottom: 20px;
}

.download-card h3 {
  font-size: 2em;
  margin-bottom: 15px;
}

.download-card p {
  font-size: 1.1em;
  margin-bottom: 25px;
  opacity: 0.9;
}

.download-btn-large {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  background: white;
  color: #8b5e3c;
  padding: 18px 40px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: all 0.3s ease;
}

.download-btn-large:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(255, 255, 255, 0.2);
}

.file-info {
  font-size: 0.9em;
  margin-top: 15px;
  opacity: 0.8;
}

.allergen-info {
  max-width: 1200px;
  margin: 60px auto;
  padding: 40px;
  background: white;
  border-radius: 15px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.allergen-info h3 {
  font-size: 1.8em;
  color: #4b2e1e;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.allergen-icons {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.allergen-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.allergen-item i {
  font-size: 2em;
  color: #8b5e3c;
}

.allergen-item span {
  font-size: 0.9em;
  color: #666;
  font-weight: 600;
}

.note {
  font-size: 0.9em;
  color: #888;
  font-style: italic;
  max-width: 800px;
  margin: 0 auto;
}

@media (max-width: 1024px) {
  .menu-hero {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content h1 {
    font-size: 3em;
  }

  .menu-items {
    grid-template-columns: 1fr;
  }

  .menu-categories {
    margin: 20px;
  }
}

@media (max-width: 768px) {
  .menu-hero {
    padding: 40px 20px;
  }

  .hero-content h1 {
    font-size: 2.5em;
  }

  .menu-section {
    padding: 20px;
  }

  .menu-item {
    flex-direction: column;
  }

  .item-image {
    width: 100%;
    height: 200px;
  }

  .category-btn {
    min-width: 80px;
    padding: 10px 15px;
  }

  .category-btn span {
    font-size: 0.8em;
  }

  .download-card {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .menu-categories {
    gap: 10px;
    padding: 15px;
  }

  .category-btn {
    min-width: 70px;
    padding: 8px 12px;
  }

  .allergen-icons {
    gap: 20px;
  }

  .hero-content h1 {
    font-size: 2em;
  }
}
