/* Chef Recommendation Detail Styles */

/* Hero Section */
.chef-menu-hero {
  position: relative;
  height: 70vh;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.chef-menu-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.chef-menu-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.chef-menu-hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
  z-index: 2;
}

.chef-menu-hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  max-width: 800px;
  padding: 0 2rem;
}

.dish-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(32, 178, 170, 0.2);
  color: var(--turquoise, #20B2AA);
  padding: 0.8rem 1.5rem;
  border-radius: 25px;
  font-weight: 500;
  margin-bottom: 2rem;
  border: 1px solid rgba(32, 178, 170, 0.3);
}

.dish-badge i {
  width: 20px;
  height: 20px;
}

.dish-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.5rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.dish-subtitle {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 3rem;
  opacity: 0.9;
}

.dish-stats-hero {
  display: flex;
  justify-content: center;
  gap: 3rem;
  margin-bottom: 3rem;
  flex-wrap: wrap;
}

.dish-stats-hero .stat-item {
  text-align: center;
}

.dish-stats-hero .stat-label {
  display: block;
  font-size: 0.9rem;
  opacity: 0.8;
  margin-bottom: 0.5rem;
}

.dish-stats-hero .stat-value {
  display: block;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--turquoise, #20B2AA);
}

.dish-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1.2rem 2.5rem;
  background: var(--turquoise, #20B2AA);
  color: white;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 500;
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.dish-cta:hover {
  background: var(--deep-green, #2c5530);
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.dish-cta i {
  width: 24px;
  height: 24px;
}

/* Main Content */
.chef-menu-main {
  padding: 5rem 0;
  background: var(--off-white, #f8f9fa);
}

.chef-menu-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
  align-items: start;
}

.chef-menu-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--deep-green, #2c5530);
  margin-bottom: 2rem;
}

.dish-description {
  font-size: 1.1rem;
  line-height: 1.8;
  color: var(--text-gray, #666);
  margin-bottom: 3rem;
}

/* Ingredients Section */
.ingredients-section {
  margin-bottom: 3rem;
}

.ingredients-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--deep-green, #2c5530);
  margin-bottom: 1.5rem;
}

.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.ingredient-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem;
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

.ingredient-item:hover {
  transform: translateY(-2px);
}

.ingredient-item i {
  width: 20px;
  height: 20px;
  color: var(--turquoise, #20B2AA);
}

.ingredient-item span {
  font-weight: 500;
  color: var(--deep-green, #2c5530);
}

/* Dish Gallery */
.dish-gallery-section {
  margin-bottom: 3rem;
}

.dish-gallery-section h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--deep-green, #2c5530);
  margin-bottom: 1.5rem;
}

.dish-detail-swiper {
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dish-detail-swiper .swiper-slide {
  height: 400px;
}

.dish-detail-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dish-detail-swiper .swiper-button-next,
.dish-detail-swiper .swiper-button-prev {
  color: var(--turquoise, #20B2AA);
}

.dish-detail-swiper .swiper-pagination-bullet-active {
  background: var(--turquoise, #20B2AA);
}

/* Sidebar */
.chef-menu-sidebar {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.dish-card {
  background: white;
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.dish-card h3 {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--deep-green, #2c5530);
  margin-bottom: 1.5rem;
}

.dish-card h3 i {
  width: 20px;
  height: 20px;
  color: var(--turquoise, #20B2AA);
}

/* Dish Details */
.dish-details .detail-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px solid #eee;
}

.dish-details .detail-item:last-child {
  border-bottom: none;
}

.detail-label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 500;
  color: var(--deep-green, #2c5530);
}

.detail-label i {
  width: 16px;
  height: 16px;
  color: var(--turquoise, #20B2AA);
}

.detail-value {
  font-weight: 600;
  color: var(--text-gray, #666);
}

/* Chef's Note */
.chef-note-card {
  background: linear-gradient(135deg, var(--light-green, #f0f8f0) 0%, #e8f5e8 100%);
  border-left: 4px solid var(--turquoise, #20B2AA);
}

.chef-note-card p {
  font-style: italic;
  color: var(--deep-green, #2c5530);
  line-height: 1.6;
  margin: 0;
}

/* Order Card */
.order-card {
  background: linear-gradient(135deg, var(--turquoise, #20B2AA) 0%, var(--deep-green, #2c5530) 100%);
  color: white;
}

.order-card h3 {
  color: white;
}

.order-card h3 i {
  color: white;
}

.order-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

.dish-order-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.order-field label {
  display: block;
  font-weight: 500;
  color: white;
  margin-bottom: 0.5rem;
}

.order-field input,
.order-field select,
.order-field textarea {
  width: 100%;
  padding: 0.8rem;
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.order-field input::placeholder,
.order-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.order-field input:focus,
.order-field select:focus,
.order-field textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.15);
}

.order-field select option {
  background: var(--deep-green, #2c5530);
  color: white;
}

.dish-order-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  padding: 1.2rem;
  background: white;
  color: var(--deep-green, #2c5530);
  border: none;
  border-radius: 25px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.dish-order-btn:hover {
  background: var(--light-green, #f0f8f0);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.dish-order-btn i {
  width: 20px;
  height: 20px;
}

/* Related Recommendations */
.related-recommendations {
  padding: 5rem 2rem;
  background: var(--off-white, #f8f9fa);
}

.related-recommendations h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  color: var(--deep-green, #2c5530);
  margin-bottom: 3rem;
  text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .chef-menu-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .chef-menu-sidebar {
    order: -1;
  }
}

@media (max-width: 768px) {
  .chef-menu-hero {
    height: 60vh;
    min-height: 500px;
  }
  
  .dish-title {
    font-size: 2.5rem;
  }
  
  .dish-subtitle {
    font-size: 1rem;
  }
  
  .dish-stats-hero {
    gap: 2rem;
  }
  
  .dish-stats-hero .stat-value {
    font-size: 1.5rem;
  }
  
  .chef-menu-main {
    padding: 3rem 0;
  }
  
  .chef-menu-container {
    padding: 0 1rem;
  }
  
  .chef-menu-content h2 {
    font-size: 2rem;
  }
  
  .ingredients-grid {
    grid-template-columns: 1fr;
  }
  
  .dish-detail-swiper .swiper-slide {
    height: 300px;
  }
  
  .dish-card {
    padding: 1.5rem;
  }
  
  .dish-cta {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .chef-menu-hero {
    height: 50vh;
    min-height: 400px;
  }
  
  .dish-title {
    font-size: 2rem;
  }
  
  .dish-stats-hero {
    gap: 1.5rem;
    flex-direction: column;
  }
  
  .chef-menu-content h2 {
    font-size: 1.8rem;
  }
  
  .dish-description {
    font-size: 1rem;
  }
  
  .dish-card {
    padding: 1rem;
  }
  
  .dish-order-form {
    gap: 0.8rem;
  }
  
  .dish-order-btn {
    padding: 1rem;
  }
}

