body {
     background: #faf7f3;
}
.blog-detail-header {
     background: #0c362c;
     color: #fff;
     padding: 2px 0 3px 0;
     text-align: center;
}
.blog-detail-header h1 {
     font-family: "Montserrat", sans-serif;
     font-size: 2.3em;
     margin-bottom: 10px;
     letter-spacing: 1px;
}
.blog-detail-meta {
     font-family: "Montserrat", sans-serif;
     font-size: 1em;
     color: #ffd700;
     margin: 20px;
}
.blog-detail-cover {
     width: 100%;
     max-width: 800px;
     height: 320px;
     object-fit: cover;
     border-radius: 12px;
     margin: 30px auto 30px auto;
     display: block;
     box-shadow: 0 4px 24px rgba(120, 47, 19, 0.08);
}
.blog-detail-content {
     background: #fff;
     border-radius: 10px;
     box-shadow: 0 2px 12px rgba(120, 47, 19, 0.07);
     padding: 40px 30px;
     max-width: 800px;
     margin: -60px auto 40px auto;
     font-family: "Lora", serif;
     font-size: 1.18em;
     /* color:  */
     line-height: 1.8;
}
.blog-detail-content h2,
.blog-detail-content h3 {
     color: #0c362c;
     font-family: "Montserrat", sans-serif;
     margin-top: 30px;
     margin-bottom: 15px;
}
.sep-gradient {
     border: 0;
     height: 1px;
     background: linear-gradient(
          90deg,
          rgba(120, 47, 19, 0),
          #6f1913,
          rgba(120, 47, 19, 0)
     );
     margin: 3rem 0;
     opacity: 0.9;
}
.btn-back {
     display: inline-block;
     background: #0c362c;
     color: #fff;
     border-radius: 20px;
     padding: 8px 28px;
     font-family: "Montserrat", sans-serif;
     font-weight: 700;
     border: none;
     margin: 30px auto 0 auto;
     transition: background 0.2s;
     text-decoration: none;
}
.btn-back:hover {
     background: #a65c2e;
     color: #fff;
     text-decoration: none;
}
.footer {
     background: #222;
     color: #fff;
     padding: 30px 0;
     margin-top: 40px;
}
.footer a {
     color: #ffd700;
}

.navbar-default {
     transition: all 0.3s;
}
.navbar-brand img {
     transition: height 0.3s;
}
.about-hero-section {
     background: linear-gradient(
               rgba(255, 255, 255, 0.85),
               rgba(255, 255, 255, 0.7)
          ),
          url("../images/2.jpg") center center/cover no-repeat;
     color: #000;
     padding: 90px 0 60px 0;
     text-align: center;
     position: relative;
}
.about-hero-section .about-title {
     font-family: "Tangerine", cursive;
     font-size: 3.5em;
     letter-spacing: 2px;
     margin-bottom: 10px;
     color: #000;
}
.about-hero-section .about-subtitle {
     font-family: "Montserrat", sans-serif;
     font-size: 1.3em;
     color: #0c362c;
     margin-bottom: 25px;
}
.about-hero-section .about-quote {
     font-family: "Lora", serif;
     font-size: 1.2em;
     font-style: italic;
     color: #222;
     margin: 0 auto 20px auto;
     max-width: 700px;
}
.author-note {
     font-style: italic;
     font-weight: bold;
     margin-top: 30px;
     color: #555;
}
.author-section {
     display: flex;
     align-items: center;
     gap: 15px;
     margin-top: 40px;
     padding: 20px;
     border: 1px solid #ddd;
     border-radius: 8px;
     background: #fafafa;
}

.author-section h3 {
     margin: 0 0 5px 0;
     font-size: 18px;
}

.author-section p {
     margin: 3px 0;
}

.author-signature {
     font-style: italic;
     color: #555;
     margin-top: 8px;
}

.author-photo {
     width: 80px;
     height: 80px;
     border-radius: 50%;
     object-fit: cover;
     border: 1px solid #ccc;
}

@media (max-width: 600px) {
     .author-section {
          flex-direction: column;
          text-align: center;
     }

     .author-photo {
          width: 90px;
          height: 90px;
     }
}
