/* MENU PAGE STYLES */

.menu-page-header {
  padding-block-start: 180px;
  padding-block-end: 60px;
  background-color: var(--black-alpha-10, #1a1a1a);
  color: var(--white, #ffffff);
  border-bottom: 1px solid var(--white-alpha-10, rgba(255, 255, 255, 0.1));
}

.menu-interactive-section {
  padding-block: 80px;
  background-color: var(--smoky-black-1, #121212);
  color: var(--white, #ffffff);
}

.menu-grid-layout {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}

/* SIDEBAR STYLES */
.menu-sidebar {
  width: 250px;
  flex-shrink: 0;
  position: sticky;
  top: 100px;
  background-color: var(--smoky-black-2, #181818);
  padding: 30px 20px;
  border-radius: 12px;
  border: 1px solid var(--white-alpha-10, rgba(255, 255, 255, 0.1));
}

.menu-sidebar h3 {
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px dashed var(--white-alpha-20, rgba(255, 255, 255, 0.2));
  font-family: 'Forum', cursive;
  font-size: 2.4rem;
  color: var(--gold-crayola, #e4c590);
}

.category-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.category-item {
  font-size: 1.6rem;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  padding: 10px 15px;
  border-radius: 8px;
  transition: all 0.3s ease;
  color: var(--quick-silver, #a6a6a6);
}

.category-item:hover,
.category-item.active {
  background-color: var(--gold-crayola, #e4c590);
  color: var(--smoky-black-1, #121212);
  font-weight: 700;
  transform: translateX(5px);
}

/* MAIN CONTENT */
.menu-main-content {
  flex-grow: 1;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
}

/* DISH CARD ZOMATO/SWIGGY STYLE */
.dish-card {
  background-color: var(--smoky-black-2, #181818);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--white-alpha-10, rgba(255, 255, 255, 0.05));
}

.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
  border-color: var(--gold-crayola, #e4c590);
}

.dish-image {
  width: 100%;
  height: 220px;
  overflow: hidden;
}

.dish-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.dish-card:hover .dish-image img {
  transform: scale(1.08);
}

.dish-details {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.dish-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.veg-badge {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.dish-header h4 {
  font-size: 2rem;
  font-family: 'Forum', cursive;
  color: var(--white, #ffffff);
  line-height: 1.2;
}

.dish-price {
  font-size: 1.8rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--gold-crayola, #e4c590);
  font-weight: 700;
  margin-bottom: 12px;
}

.dish-desc {
  font-size: 1.4rem;
  color: var(--quick-silver, #a6a6a6);
  line-height: 1.5;
  margin-bottom: 20px;
  flex-grow: 1;
}

.dish-add-btn {
  background-color: transparent;
  color: var(--gold-crayola, #e4c590);
  border: 1px solid var(--gold-crayola, #e4c590);
  width: 100%;
  padding: 10px;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.dish-add-btn:hover {
  background-color: var(--gold-crayola, #e4c590);
  color: var(--smoky-black-1, #121212);
}

/* RESPONSIVENESS */
@media (max-width: 991px) {
  .menu-grid-layout {
    flex-direction: column;
  }

  .menu-sidebar {
    width: 100%;
    position: static;
    margin-bottom: 30px;
  }

  .category-list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 10px;
  }

  .category-item {
    font-size: 1.4rem;
    padding: 8px 12px;
  }
}