
body {
  font-family: Arial, sans-serif;
  background-color: #fafafa;
  margin: 0;
  color: #333;
}

header {
  background-color: #ff7043;
  color: white;
  text-align: center;
  padding: 20px 0;
}

header h1 {
  margin: 0;
}

nav {
  background-color: #ff8a65;
  display: flex;
  justify-content: center;
  gap: 20px;
  padding: 10px 0;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  max-width: 1000px;
  margin: 30px auto;
  padding: 0 20px;
}

h2 {
  color: #ff7043;
  border-bottom: 2px solid #ff7043;
  padding-bottom: 5px;
}

.recette {
  background: white;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  margin-bottom: 20px;
  overflow: hidden;
}

.recette img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.recette-content {
  padding: 15px;
}

.recette-content h3 {
  margin-top: 0;
  color: #e64a19;
}

.recette-content p {
  margin: 8px 0;
}

footer {
  background-color: #ff7043;
  color: white;
  text-align: center;
  padding: 15px 0;
  margin-top: 40px;
}