.page-header {
  background-color: #1a1a1a;
  color: white;
  padding: 50px 30px;
  text-align: center;
}

.page-header h1 {
  font-size: 34px;
  margin-bottom: 10px;
}

.page-header p {
  font-size: 15px;
  color: #ccc;
}

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

.food-intro img {
  width: 380px;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  flex-shrink: 0;
}

.food-intro h2 {
  font-size: 22px;
  margin-bottom: 10px;
}

.food-intro p {
  font-size: 14px;
  color: #555;
  line-height: 1.7;
  margin-bottom: 8px;
}

.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;
}

.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;
}

.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;
}

.tip {
  background-color: #fff8dc;
  border-left: 5px solid #e8c84a;
  padding: 18px 22px;
  border-radius: 4px;
  max-width: 900px;
  margin: 25px auto 40px;
}

.tip h3 {
  margin-bottom: 6px;
  font-size: 16px;
}

.tip p {
  font-size: 13px;
  color: #555;
  line-height: 1.6;
}

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

  .food-intro img {
    width: 100%;
  }

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

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