
/* Header Styles */

#header-container {
    position: fixed; /* Make the header fixed */
    top: 0; /* Position it at the top */
    left: 0; /* Align it to the left */
    width: 100%; /* Make it full width */
    background-color: white; /* Set a background color */
    z-index: 1000; /* Ensure it stays above other content */
    padding: 0px; /* Add some padding for aesthetics */
    
}

body {
    padding-top: 130px; /* Add padding to the top of the body to prevent content from hiding behind the fixed header */
}





/* Blog Banner*/

.blog-banner {
  position: relative;
  width: 100%;
  height: 300px;
  min-height: 200px;
  max-height: 4000px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 10px 0 0 0;
  border-radius: 12px;
  overflow: hidden;
}

.blog-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.18); /* Soft dark overlay */
  z-index: 1;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;

}

.blog-overlay img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 50%;
  display: block;
  opacity: 0.75;

}

.blog-content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 40px 10px;
}

.blog-title {
  font-size: 60px;
  font-weight: 700;
  margin: 0 0 5px 0;
  letter-spacing: 2px;
}

.blog-subtitle {
  font-size: 18px;
  font-weight: 400;
  margin: 0;
  letter-spacing: 1px;
}

@media (max-width: 700px) {
  .blog-title {
    font-size: 32px;
  }
  .blog-subtitle {
    font-size: 16px;
  }
  .blog-content {
    padding: 24px 4px;
  }
}
