/* Menu Page Styles */

.menu-section {
  padding: 60px 0;
  background-color: white;
}

.menu-tabs {
  display: flex;
  gap: 15px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
  padding: 0 20px;
}

.menu-tab {
  padding: 15px 30px;
  background-color: #f7f7f6;
  border: 2px solid #e0e0e0;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  color: #1e4440;
  cursor: pointer;
  transition: all 0.3s ease;
}

.menu-tab:hover {
  background-color: #e8e8e8;
  border-color: #1e4440;
}

.menu-tab.active {
  background-color: #1e4440;
  color: white;
  border-color: #1e4440;
}

.menu-category {
  display: none;
}

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

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

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 30px;
  padding: 0 20px;
}

.menu-item {
  background-color: #f7f7f6;
  border-radius: 15px;
  overflow: hidden;
  transition: all 0.3s ease;
  cursor: pointer;
}

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

.menu-item-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
  background: linear-gradient(135deg, #1e4440 0%, #6daeb4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.menu-item-image img {
  width: 70%;
  height: 70%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1) rotate(5deg);
}

.menu-item-content {
  padding: 25px;
  text-align: center;
}

.menu-item-content h3 {
  font-size: 22px;
  font-weight: 700;
  color: #1e4440;
  margin-bottom: 10px;
}

.menu-item-content p {
  font-size: 14px;
  color: #666;
  margin-bottom: 15px;
  line-height: 1.6;
}

.menu-item-content .price {
  font-size: 24px;
  font-weight: 700;
  color: #f7941d;
  display: block;
}

@media (max-width: 768px) {
  .menu-tabs {
    gap: 10px;
  }

  .menu-tab {
    padding: 12px 20px;
    font-size: 14px;
  }

  .menu-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .menu-item-image {
    height: 200px;
  }

  .menu-item-content {
    padding: 20px;
  }

  .menu-item-content h3 {
    font-size: 20px;
  }

  .menu-item-content .price {
    font-size: 20px;
  }
}
