.food-intro {
  display: flex;
  gap: 25px;
  padding: 40px 30px;
  max-width: 950px;
  margin: 0 auto;
  align-items: flex-start;
}

.image-box {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
}

.image-box img {
  width: 380px;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.credit {
  font-size: 12px;
  color: #888;
  margin-top: 8px;
  font-family: Arial, sans-serif;
}

.food-text h2 {
  font-size: 26px;
  margin-bottom: 15px;
  color: #1a1a1a;
}

.food-text p {
  font-size: 15px;
  color: #444;
  line-height: 1.8;
  margin-bottom: 14px;
  font-family: Arial, sans-serif;
}

.dishes {
  padding: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.dishes h2 {
  font-size: 22px;
  margin-bottom: 20px;
}

.dish-item {
  display: flex;
  gap: 18px;
  margin-bottom: 25px;
  background-color: #f9f9f9;
  border-radius: 6px;
  overflow: hidden;
}

.dish-item img {
  width: 200px;
  height: 140px;
  object-fit: cover;
  flex-shrink: 0;
}

.dish-info {
  padding: 15px;
}

.dish-info h3 {
  font-size: 17px;
  margin-bottom: 7px;
}

.dish-info p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

.tag {
  display: inline-block;
  background-color: #e8c84a;
  color: #1a1a1a;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 8px;
  border-radius: 3px;
  margin-top: 8px;
  margin-right: 4px;
  font-family: Arial, sans-serif;
}

.drinks {
  background-color: #f5f5f5;
  padding: 40px 30px;
}

.drinks h2 {
  font-size: 22px;
  margin-bottom: 20px;
  text-align: center;
}

.drinks-row {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  max-width: 900px;
  margin: 0 auto;
  justify-content: center;
}

.drink-card {
  background: white;
  padding: 18px;
  border-radius: 6px;
  width: 260px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.08);
}

.drink-card h3 {
  font-size: 16px;
  margin-bottom: 7px;
}

.drink-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
  font-family: Arial, sans-serif;
}

@media (max-width: 768px) {
  .food-intro {
    flex-direction: column;
  }

  .image-box img {
    width: 100%;
    height: auto;
  }

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

  .dish-item img {
    width: 100%;
    height: 180px;
  }

  .drinks-row {
    flex-direction: column;
    align-items: center;
  }

  .drink-card {
    width: 100%;
    max-width: 320px;
  }
}
