/* Menu Page Styles */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@500;700&family=Inter:wght@400;500&display=swap');

.menu-page {
  background: #0d0d0d;
  min-height: 100vh;
  padding-top: 95px;
}

.menu-hero {
  background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('img/home.jpg') center/cover no-repeat;
  padding: 100px 0 80px;
  text-align: center;
  color: #fff;
}

.menu-hero .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.menu-hero h1 {
  font-size: clamp(36px, 5vw, 56px);
  color: #eaeaea;
  margin: 0 0 15px;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  text-align: center;
}

.menu-hero p {
  font-size: clamp(18px, 2.5vw, 24px);
  color: #ffd166;
  margin: 0 0 10px;
  font-family: 'Cormorant Garamond', serif;
  text-align: center;
}

.menu-subtitle {
  font-size: clamp(16px, 2vw, 18px);
  color: #d0d0d0;
  max-width: 800px;
  margin: 20px auto 0;
  line-height: 1.6;
  text-align: center;
}

.menu-content {
  padding: 60px 0 80px;
  background: #0d0d0d;
  position: relative;
  overflow: visible;
}

.menu-content .container {
  position: relative;
  overflow: visible;
}

.menu-categories {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 40px 0 50px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}

.menu-categories-dropdown {
  display: none;
  margin: 40px auto 50px;
  padding: 0 20px;
  position: relative;
  z-index: 10;
  max-width: 400px;
  width: 100%;
  box-sizing: border-box;
}

.menu-category-select {
  width: 100%;
  max-width: 100%;
  margin: 0;
  display: block;
  padding: 14px 20px;
  background: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #d0d0d0;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffd166' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 20px center;
  background-size: 12px;
  padding-right: 45px;
  box-sizing: border-box;
}

.menu-category-select:focus {
  outline: none;
  border-color: #e67700;
  box-shadow: 0 0 0 3px rgba(230, 119, 0, 0.1);
}

.menu-category-select:hover {
  border-color: rgba(230, 119, 0, 0.5);
}

.menu-category-select option {
  background: #1a1a1a;
  color: #d0d0d0;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: 600;
}

.menu-category-btn {
  padding: 12px 24px;
  background: #1a1a1a;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  color: #d0d0d0;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Cormorant Garamond', serif;
}

.menu-category-btn:hover {
  border-color: rgba(230, 119, 0, 0.5);
  color: #ffd166;
  transform: translateY(-2px);
}

.menu-category-btn.active {
  background: rgba(230, 119, 0, 0.15);
  border-color: #e67700;
  color: #ffd166;
  box-shadow: 0 4px 15px rgba(230, 119, 0, 0.2);
}

.menu-category {
  display: none;
  animation: fadeIn 0.4s ease;
}

.menu-category.active {
  display: block;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.category-title {
  text-align: center;
  font-size: clamp(24px, 3.5vw, 36px);
  color: #ffd166;
  margin: 0 0 40px;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
}

.menu-items-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 30px;
}

.menu-item {
  background: #1a1a1a;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.menu-item-image {
  width: 200px;
  min-width: 200px;
  height: 100%;
  overflow: hidden;
  background: #0d0d0d;
  position: relative;
}

.menu-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.menu-item:hover .menu-item-image img {
  transform: scale(1.1);
}

.menu-item-content {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.menu-item:hover {
  transform: translateY(-4px);
  border-color: rgba(230, 119, 0, 0.3);
  box-shadow: 0 8px 24px rgba(230, 119, 0, 0.15);
  background: #1f1f1f;
}

.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
  gap: 15px;
}

.menu-item-header h4 {
  color: #eaeaea;
  font-size: 20px;
  margin: 0;
  font-weight: 700;
  font-family: 'Cormorant Garamond', serif;
  flex: 1;
}

.menu-price {
  color: #e67700;
  font-size: 18px;
  font-weight: 700;
  white-space: nowrap;
  font-family: 'Cormorant Garamond', serif;
}

.menu-description {
  color: #c0c0c0;
  font-size: 14px;
  line-height: 1.6;
  margin: 0 0 12px;
}

.menu-tag {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 8px;
}

.menu-tag.vegetarian {
  background: rgba(76, 175, 80, 0.2);
  color: #81c784;
  border: 1px solid rgba(76, 175, 80, 0.3);
}

.menu-tag.spicy {
  background: rgba(244, 67, 54, 0.2);
  color: #ef5350;
  border: 1px solid rgba(244, 67, 54, 0.3);
}

.menu-tag.popular {
  background: rgba(230, 119, 0, 0.2);
  color: #ffd166;
  border: 1px solid rgba(230, 119, 0, 0.3);
}

/* Responsive Design for Menu */
@media (max-width: 900px) {
  .menu-items-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .menu-categories {
    gap: 10px;
    margin: 30px 0 40px;
  }
  
  .menu-category-btn {
    padding: 10px 20px;
    font-size: 14px;
  }
  
  .menu-item {
    flex-direction: column;
  }
  
  .menu-item-image {
    width: 100%;
    min-width: 100%;
    height: 200px;
  }
  
  .menu-item-content {
    padding: 20px;
  }
  
  .menu-item-header {
    flex-direction: column;
    gap: 8px;
  }
  
  .menu-price {
    align-self: flex-start;
  }
}

@media (max-width: 600px) {
  .menu-page {
    padding-top: 85px;
  }
  
  .menu-hero {
    padding: 60px 0 50px;
  }
  
  .menu-content {
    padding: 40px 0 60px;
    overflow: visible;
  }
  
  .menu-content .container {
    overflow: visible;
  }
  
  .menu-categories {
    display: none;
  }
  
  .menu-categories-dropdown {
    display: block;
    margin: 30px auto 40px;
    padding: 0 20px;
    width: calc(100% - 40px);
    max-width: 100%;
    box-sizing: border-box;
  }
  
  .menu-category-select {
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
  }
  
  .category-title {
    margin-bottom: 30px;
  }
  
  .menu-category {
    position: relative;
    z-index: 1;
  }
}

