body {
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  background-color: #fffceb;
  color: #333;
}
.container {
  width: 90%;
  max-width: 1100px;
  margin: 0 auto;
}
.site-header {
  background-color: #d9534f;
  color: #fff;
  padding: 20px 0;
}
.site-header h1 a {
  text-decoration: none;
  color: white;
}
.site-header nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 15px;
}
.site-header nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}
.content-area {
  padding: 30px 0;
}
.recipe-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.recipe-card {
  background: white;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s ease;
}
.recipe-card:hover {
  transform: scale(1.02);
}
.recipe-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid #eee;
}
.recipe-card h2 {
  padding: 15px;
  font-size: 18px;
  margin: 0;
  color: #d9534f;
}
a {
  text-decoration: none;
  color: inherit;
}
.recipe-card a {
  display: block;
  color: #d9534f;
}
.recipe-card a:hover {
  color: #c9302c;
}
.site-footer {
  background-color: #333;
  color: white;
  text-align: center;
  padding: 20px 0;
}

/* ---------------- Sidebar Styles ---------------- */

.two-column-layout {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.main-column {
  flex: 1 1 65%;
}

.sidebar {
  flex: 1 1 30%;
  background-color: #fff7e6;
  padding: 20px;
  border-radius: 8px;
  border: 1px solid #eee;
}

.sidebar h3 {
  margin-top: 0;
  color: #d9534f;
}

.recent-list {
  list-style: none;
  padding-left: 0;
}

.recent-list li {
  margin-bottom: 10px;
}

.recent-list a {
  color: #333;
  text-decoration: none;
}

.recent-list a:hover {
  color: #d9534f;
  text-decoration: underline;
}
