/* =============================================
   MAHA SHIVA NAADI JOTHIDAM — blog-post.css
   Shared styles for all individual blog pages
   ============================================= */

/* ── HERO ────────────────────────────────────── */
.bp-hero {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('./images/Vaitheeswaran-Koil.jpg') center / cover no-repeat;
}
.bp-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(20,10,0,0.82), rgba(80,0,0,0.78));
}
.bp-hero-content {
  position: relative;
  z-index: 2;
  padding: 65px 24px 50px;
  max-width: 900px;
  animation: bpIn 0.9s ease both;
}
@keyframes bpIn {
  from { opacity:0; transform:translateY(18px); }
  to   { opacity:1; transform:none; }
}
.bp-hero-tag {
  display: inline-block;
  background: var(--saffron);
  color: #fff;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.bp-hero-content h1 {
  font-family: 'Cinzel', serif;
  font-size: clamp(18px, 3vw, 34px);
  font-weight: 700;
  color: #fff;
  letter-spacing: 1px;
  line-height: 1.4;
  text-shadow: 0 2px 14px rgba(0,0,0,0.5);
  margin-bottom: 16px;
}
.bp-breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Cinzel', serif;
  font-size: 12px;
}
.bp-breadcrumb a { color: rgba(255,255,255,0.8); text-decoration: none; }
.bp-breadcrumb a:hover { color: var(--gold-light); }
.bp-breadcrumb i { font-size: 9px; color: rgba(255,255,255,0.35); }
.bp-breadcrumb span { color: var(--saffron); font-weight: 600; }

/* ── MAIN WRAPPER ────────────────────────────── */
.bp-wrapper {
  background: #f4f0eb;
  padding: 70px 0 80px;
}
.bp-container {
  max-width: 860px;
  margin: 0 auto;
  padding: 0 30px;
}

/* ── ARTICLE CARD ────────────────────────────── */
.bp-article {
  background: #fff;
  border-radius: 14px;
  padding: 50px 55px;
  box-shadow: 0 6px 30px rgba(0,0,0,0.08);
  border: 1px solid rgba(212,175,55,0.15);
  animation: bpIn 0.7s ease both;
}

/* ── CONTENT STYLES ──────────────────────────── */
.bp-article h2 {
  font-family: 'Cinzel', serif;
  font-size: clamp(17px, 2vw, 22px);
  font-weight: 700;
  color: var(--deep-red);
  margin: 32px 0 12px;
  line-height: 1.35;
}
.bp-article h3 {
  font-family: 'Cinzel', serif;
  font-size: clamp(15px, 1.6vw, 18px);
  font-weight: 600;
  color: var(--dark);
  margin: 26px 0 10px;
}
.bp-article h4 {
  font-family: 'Cinzel', serif;
  font-size: 15px;
  font-weight: 600;
  color: #555;
  margin: 20px 0 8px;
}
.bp-article h5 {
  font-family: 'Crimson Text', serif;
  font-size: 17px;
  font-weight: 600;
  font-style: italic;
  color: var(--dark);
  margin: 20px 0 10px;
}
.bp-article p {
  font-size: 16px;
  color: #555;
  line-height: 1.9;
  margin-bottom: 16px;
}
.bp-article ul {
  margin: 10px 0 18px 20px;
  padding: 0;
}
.bp-article ul li {
  font-size: 15.5px;
  color: #555;
  line-height: 1.8;
  margin-bottom: 6px;
  list-style: none;
  padding-left: 22px;
  position: relative;
}
.bp-article ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 10px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--saffron);
}
.bp-article strong { color: var(--dark); font-weight: 700; }
.bp-article hr {
  border: none;
  border-top: 1px solid #eee;
  margin: 28px 0;
}
/* hide keyword lines */
.bp-article .bp-keywords { display: none; }

/* Opening line gold highlight */
.bp-article .bp-lead {
  font-size: 17px;
  color: var(--dark);
  font-style: italic;
  border-left: 4px solid var(--gold);
  padding-left: 18px;
  margin-bottom: 24px;
  line-height: 1.85;
}

/* ── PREV / NEXT NAV ─────────────────────────── */
.bp-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 50px;
  padding-top: 35px;
  border-top: 2px solid rgba(212,175,55,0.2);
}
.bp-nav-link {
  display: block;
  padding: 20px 22px;
  border: 1.5px solid #eee;
  border-radius: 10px;
  text-decoration: none;
  background: #fff;
  transition: all 0.3s;
}
.bp-nav-link:hover {
  background: var(--deep-red);
  border-color: var(--deep-red);
}
.bp-nav-link span {
  display: block;
  font-family: 'Cinzel', serif;
  font-size: 11px;
  color: var(--saffron);
  letter-spacing: 1px;
  margin-bottom: 8px;
  text-transform: uppercase;
  transition: color 0.3s;
}
.bp-nav-link h4 {
  font-family: 'Cinzel', serif;
  font-size: 14px;
  color: var(--dark);
  margin: 0;
  line-height: 1.45;
  transition: color 0.3s;
}
.bp-nav-link:hover span,
.bp-nav-link:hover h4 { color: #fff; }
.bp-nav-link.bp-next { text-align: right; }

/* ── CTA BOX ─────────────────────────────────── */
.bp-cta {
  background: linear-gradient(135deg, var(--deep-red), #a00015);
  border-radius: 12px;
  padding: 36px 40px;
  text-align: center;
  margin-top: 45px;
}
.bp-cta h3 {
  font-family: 'Cinzel', serif;
  font-size: 20px;
  color: #fff;
  margin-bottom: 10px;
}
.bp-cta p { color: rgba(255,255,255,0.85); font-size: 15px; margin-bottom: 22px; }
.bp-cta a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--gold);
  color: var(--dark);
  text-decoration: none;
  padding: 12px 28px;
  border-radius: 6px;
  font-family: 'Cinzel', serif;
  font-size: 13px;
  font-weight: 700;
  transition: all 0.3s;
}
.bp-cta a:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ──────────────────────────────── */
@media (max-width: 700px) {
  .bp-article { padding: 30px 22px; }
  .bp-container { padding: 0 16px; }
  .bp-wrapper { padding: 45px 0 60px; }
  .bp-nav { grid-template-columns: 1fr; }
  .bp-nav-link.bp-next { text-align: left; }
  .bp-cta { padding: 26px 20px; }
  .bp-cta h3 { font-size: 17px; }
  .bp-hero-content h1 { font-size: 17px; }
}
@media (max-width: 380px) {
  .bp-article { padding: 22px 14px; }
  .bp-article h2 { font-size: 16px; }
  .bp-article p, .bp-article ul li { font-size: 14.5px; }
}