/* Custom styles for the recipe detail page */
body {
  font-family: "Poppins", sans-serif;
  background-color: #f8f9fa;
  color: #333;
}

h1,
h3 {
  color: #d9534f; /* Bootstrap Danger Color */
  font-weight: 700;
  margin-bottom: 20px;
}

.recipe-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.recipe-meta {
  font-size: 1.1rem;
  color: #495057;
}

.recipe-meta li {
  margin-bottom: 0.5rem;
}

.recipe-image {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
  max-height: 400px;
  width: 100%;
  object-fit: cover;
}

.section-title {
  font-size: 1.8rem;
  color: #dc3545;
  border-bottom: 2px solid #dc3545;
  padding-bottom: 10px;
  margin-bottom: 15px;
}

.list-group-item {
  border: none;
  background-color: #f8f9fa;
  font-size: 1.1rem;
  padding: 0.75rem;
}

.ingredients-list,
.directions-list {
  margin-top: 15px;
  padding: 0;
}

.ingredients-list li,
.directions-list li {
  padding: 10px 15px;
  margin-bottom: 5px;
  border-radius: 5px;
  background-color: #fff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

footer a {
  font-size: 1.2rem;
  text-transform: uppercase;
  padding: 10px 20px;
  background-color: #d9534f;
  border-radius: 5px;
  color: white;
  text-decoration: none;
}

footer a:hover {
  background-color: #c9302c;
}
