/* General Blog Page Styling */
body {
  font-family: 'Poppins', sans-serif;
  margin: 0;
  padding: 0;
  background: #fafafa;
  color: #333;
  line-height: 1.8;
}

/* Blog Container */
.blog-detail {
  max-width: 850px;
  margin: 60px auto;
  padding: 30px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Blog Title */
.blog-detail h1 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: #b91c1c; /* deep red for mehndi theme */
  text-align: center;
}

/* Images */
/* Images */
.blog-detail img {
  max-width: 50%;      /* Image won’t exceed 80% of the content width */
  height: auto;
  display: block;
  margin: 20px auto;   /* Centers the image */
  border-radius: 12px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease-in-out;
}

.blog-detail img:hover {
  transform: scale(1.03);
}


/* Sub-headings */
.blog-detail h2 {
  font-size: 1.6rem;
  margin-top: 30px;
  margin-bottom: 15px;
  color: #e11d48; /* pinkish red */
  border-left: 4px solid #e11d48;
  padding-left: 10px;
}

/* Paragraphs */
.blog-detail p {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Lists */
.blog-detail ul {
  margin: 15px 0;
  padding-left: 20px;
}
.blog-detail ul li {
  margin-bottom: 10px;
  font-size: 1rem;
}

/* Back Button */
.back-btn {
  display: inline-block;
  margin-top: 30px;
  padding: 12px 20px;
  background: #b91c1c;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease-in-out;
}
.back-btn:hover {
  background: #7f1d1d;
  transform: scale(1.05);
}
