:root {
  --primary-color: #e74c3c; /* Food-related red */
  --secondary-color: #f39c12; /* Food-related orange */
  --text-color: #333;
  --background-color: #f9f9f9;
  --card-background: #fff;
  --border-color: #eee;
  --shadow-light: rgba(0, 0, 0, 0.08);
  --shadow-medium: rgba(0, 0, 0, 0.15);
}

body {
  font-family: 'Noto Sans KR', sans-serif; /* 한국어 폰트 */
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.6;
}

.container {
  background-color: var(--card-background);
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 8px 25px var(--shadow-medium);
  text-align: center;
  width: 100%;
  max-width: 500px;
  margin: 20px;
  box-sizing: border-box;
  animation: fadeIn 0.8s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

h1 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 2.5em;
  font-weight: 700;
  letter-spacing: -1px;
}

p {
  color: #666;
  font-size: 1.1em;
  margin-bottom: 25px;
}

#recommendButton {
  background-color: var(--secondary-color);
  color: white;
  border: none;
  padding: 15px 30px;
  border-radius: 8px;
  font-size: 1.2em;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
  box-shadow: 0 4px 10px var(--shadow-light);
  outline: none;
}

#recommendButton:hover {
  background-color: #e67e22; /* Darker orange */
  transform: translateY(-3px);
  box-shadow: 0 6px 15px var(--shadow-medium);
}

#recommendButton:active {
  transform: translateY(0);
  box-shadow: 0 2px 5px var(--shadow-light);
}

#menuRecommendation {
  margin-top: 35px;
  padding: 25px;
  background-color: #ffeaa7; /* Light food-related background */
  border-radius: 10px;
  border: 1px solid #f9ca24;
  box-shadow: 0 2px 10px var(--shadow-light);
  min-height: 80px;
  display: flex;
  flex-direction: column; /* 메뉴 이름과 레시피를 세로로 정렬 */
  justify-content: center;
  align-items: center;
  text-align: center;
}

#menuRecommendation p {
  margin: 0;
  font-size: 1.8em;
  font-weight: 700;
  color: var(--primary-color);
  text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

#menuRecommendation h3 {
  margin: 0 0 10px 0; /* 메뉴 이름과 레시피 사이 간격 */
  font-size: 1.8em;
  font-weight: 700;
  color: var(--primary-color);
}

.recipe-text {
  font-size: 1em; /* 레시피 텍스트 크기 */
  color: #555;
  line-height: 1.5;
  margin-top: 10px;
  font-weight: normal; /* 레시피 텍스트는 굵게 표시하지 않음 */
}


/* Responsive adjustments */
@media (max-width: 600px) {
  .container {
    margin: 15px;
    padding: 25px;
  }
  h1 {
    font-size: 2em;
  }
  p {
    font-size: 1em;
  }
  #recommendButton {
    padding: 12px 25px;
    font-size: 1.1em;
  }
  #menuRecommendation p {
    font-size: 1.5em;
  }
}
