
/* General page styles */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background: linear-gradient(to bottom, #fffaf5, #fff3e0); /* orange glow */
  color: #333;
  line-height: 1.6;
}

/* Container for each page */
.container {
  width: 80%;
  margin: auto;
  padding: 20px;
}

/* Headings */
h1, h2 {
  text-align: center;
  color: #444;
}

/* Recipe images */
img {
  display: block;
  margin: 20px auto;
  max-width: 400px;   /* keeps all recipe images the same size */
  height: auto;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

/* Recipe card style (ingredients and steps) */
ul, ol {
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

/* Links */
a {
  display: block;
  text-align: center;
  margin-top: 20px;
  text-decoration: none;
  color: #d35400; /* warm orange */
  font-weight: bold;
}

a:hover {
  color: #e67e22;
  text-decoration: underline;
}

/* Footer */
footer {
  text-align: center;
  padding: 15px;
  margin-top: 30px;
  font-size: 0.9rem;
  color: #555;
}
