/* General Blog Page Styles */
body {
  font-family: 'Arial', sans-serif; /* Clean and modern font */
  line-height: 1.6;
  margin: 0;
  padding: 0;
  background-color: beige;
  color: #333; /* Readable text color */
}

/* Blog Container */
.blog-container {
  max-width: 800px;
  margin: 20px auto; /* Center the blog content */
  background: #fff; /* White background for readability */
  padding: 20px;
  border-radius: 8px;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); /* Light shadow for elevation */
}

/* Blog Title */
.blog-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
  text-align: center;
  color: #444;
}

/* Blog Author and Date */
.blog-meta {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 20px;
  text-align: center;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

/* Recipe Section */
.recipe {
  margin-bottom: 40px; /* Add spacing between recipes */
}

/* Recipe Heading */
.recipe h2 {
  font-size: 1.5rem;
  margin-bottom: 10px;
  color: #222; /* Darker title for distinction */
}

/* Recipe Content */
.recipe p {
  margin-bottom: 10px;
  text-align: justify; /* For better readability */
}

/* Recipe Ingredients */
.recipe ul {
  list-style-type: disc;
  margin-left: 20px;
  margin-bottom: 20px;
}

/* Recipe Instructions */
.recipe ol {
  margin-left: 20px;
  margin-bottom: 20px;
  padding-left: 10px;
}

/* Highlight Links */
a {
  color: #007bff;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* Images */
.recipe img {
  max-width: 100%;
  height: auto;
  margin: 10px 0;
  border-radius: 8px;
}

/* Dipping Sauce Highlight */
.recipe-highlight {
  background-color: #fff3cd; /* Light yellow highlight */
  padding: 10px;
  border-left: 5px solid #ffc107;
  margin-bottom: 20px;
}

/* Button Styling (if used in the blog) */
.btn {
  display: inline-block;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  background-color: #007bff;
  color: #fff;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
}

.btn:hover {
  background-color: #0056b3;
}

/* Responsive Design */
@media (max-width: 768px) {
  .blog-container {
    padding: 15px;
  }

  .blog-title {
    font-size: 1.8rem;
  }

  .recipe h2 {
    font-size: 1.3rem;
  }
}
