/* Grundlegendes Styling */
body {
  font-family: "Inter", Arial, sans-serif;
  background-color: #fafafa;
  color: #333;
  margin: 0;
  padding: 0;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    background-color: #fff;
    align-items: center;
    padding: 1.5rem;
    color: white;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

header h1 {
  color: #e63946;
  margin-bottom: 0.3rem;
}

header p {
  color: #555;
  font-size: 1rem;
}

/* Hauptbereich */
main {
  padding: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

.logo {
    font-size: 24px;
    margin: 0;
}

.account-btn {
  background: white;
  color: #ff6b6b;
  padding: 8px 14px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.account-btn:hover {
  background: #ffe8e8;
}

.recipe-list h2 {
  text-align: center;
  color: #333;
  margin-bottom: 2rem;
}

/* Rezeptkarten */
.recipe-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.recipe-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
  padding: 1rem;
  transition: transform 0.2s ease;
}

.recipe-card:hover {
  transform: translateY(-3px);
}

.recipe-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
}

.recipe-card h3 {
  color: #e63946;
  margin-top: 1rem;
}

.recipe-card p {
  color: #555;
  line-height: 1.5;
}

.recipe-meta {
  font-size: 0.9rem;
  color: #777;
  margin-top: 0.5rem;
}

/* Footer */
footer {
  background-color: #fff;
  text-align: center;
  padding: 1rem;
  border-top: 1px solid #eee;
  color: #666;
  font-size: 0.9rem;
}
