:root {
  --green: #1B4D35;
  --green-dark: #0F2A1C;
  --green-light: #2A6B4A;
  --green-glow: #3D8E61;
  --gold: #C8973A;
  --gold-light: #E8B86D;
  --gold-pale: #F0D5A0;
  --cream: #FAF7F2;
  --cream-dark: #F0EBE3;
  --cream-deeper: #E8E2D8;
  --text-dark: #1A2B20;
  --text-mid: #5C6D62;
  --text-light: #8A9B90;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text-dark);
  overflow-x: hidden;
  line-height: 1.8;
}

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 4rem;
  background: rgba(27, 77, 53, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 150, 58, 0.2);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.nav-logo {
  width: 32px; height: 32px;
  background: var(--gold);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 16px;
  font-weight: 600;
  color: white;
}

.nav-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
  letter-spacing: 0.03em;
}

.nav-name span { color: var(--gold-light); font-style: italic; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { color: white; }

.nav-cta {
  background: var(--gold) !important;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 8px;
  font-weight: 600 !important;
}

/* ── ARTICLE ── */
.article-container {
  max-width: 720px;
  margin: 0 auto;
  padding: 7rem 2rem 4rem;
}

.article-meta {
  margin-bottom: 2rem;
}

.article-meta time {
  font-size: 13px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.article-container h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 5vw, 2.8rem);
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.article-container h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2.5rem;
  margin-bottom: 1rem;
  line-height: 1.3;
}

.article-container h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.article-container p {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.article-container ul,
.article-container ol {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-mid);
  font-size: 16px;
  line-height: 1.85;
}

.article-container li { margin-bottom: 0.5rem; }

.article-container blockquote {
  border-left: 3px solid var(--gold);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: var(--cream-dark);
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text-mid);
}

.article-container table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  font-size: 14px;
}

.article-container th {
  background: var(--green);
  color: white;
  padding: 0.75rem 1rem;
  text-align: left;
  font-weight: 500;
}

.article-container td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid var(--cream-deeper);
  color: var(--text-mid);
}

.article-container tr:hover td { background: var(--cream-dark); }

.arabic-text {
  font-size: 1.4rem;
  direction: rtl;
  text-align: right;
  line-height: 2.2;
  color: var(--text-dark);
  font-family: 'Traditional Arabic', 'Amiri', serif;
  margin: 0.75rem 0;
}

.bangla-text {
  font-family: 'Noto Serif Bengali', serif;
  color: var(--text-dark);
}

.transliteration {
  font-style: italic;
  color: var(--green-light);
}

/* ── CTA BOX ── */
.cta-box {
  background: linear-gradient(135deg, var(--green), var(--green-dark));
  border-radius: 16px;
  padding: 2.5rem;
  margin: 3rem 0;
  text-align: center;
  color: white;
}

.cta-box h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: white;
  margin-bottom: 0.75rem;
}

.cta-box p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 1.5rem;
}

.cta-btn {
  display: inline-block;
  background: var(--gold);
  color: white;
  padding: 0.85rem 2rem;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  transition: background 0.2s;
}

.cta-btn:hover { background: var(--gold-light); }

/* ── RELATED ── */
.related {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cream-deeper);
}

.related h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.related ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.related li {
  margin-bottom: 0.6rem;
}

.related a {
  color: var(--green-light);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.related a:hover { color: var(--gold); }

/* language switcher */
.lang-switch {
  display: inline-flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.lang-switch a {
  font-size: 13px;
  padding: 0.35rem 0.85rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  border: 1px solid var(--cream-deeper);
  color: var(--text-mid);
  transition: all 0.2s;
}

.lang-switch a.active {
  background: var(--green);
  color: white;
  border-color: var(--green);
}

.lang-switch a:hover:not(.active) {
  border-color: var(--gold);
  color: var(--gold);
}

/* ── FOOTER ── */
footer {
  padding: 2.5rem 4rem;
  background: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: rgba(255,255,255,0.4);
  font-size: 13px;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: white;
}

.footer-brand span { color: var(--gold); font-style: italic; }

.footer-links {
  display: flex;
  gap: 1.5rem;
  list-style: none;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold-light); }

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  nav { padding: 0.8rem 1.5rem; }
  .nav-links { display: none; }
  .article-container { padding: 5rem 1.25rem 3rem; }
  .article-container h1 { font-size: 1.8rem; }
  .cta-box { padding: 1.75rem; }
  footer { padding: 1.5rem; flex-direction: column; gap: 1rem; text-align: center; }
}
