/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --navy: #0a1628;
  --navy-mid: #111e35;
  --gold: #BA7517;
  --gold-light: #e8981e;
  --cream: #f4f0e6;
  --cream-dark: #e8e3d5;
  --white: #ffffff;
  --text: #1a1a1a;
  --text-light: #5a5a5a;
  --blue-accent: #1e3a5f;
  --red-tag: #c0392b;
  --green-tag: #1a5c2a;
  --font-hindi: 'Noto Sans Devanagari', sans-serif;
  --font-body: 'Inter', 'Noto Sans Devanagari', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-hindi);
  background: var(--cream);
  color: var(--text);
  line-height: 1.7;
}

a { text-decoration: none; color: inherit; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== NAVBAR ===== */
.navbar {
  background: var(--navy);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 4px solid var(--gold);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.nav-name {
  display: block;
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
}

.nav-handle {
  display: block;
  font-size: 13px;
  color: var(--gold-light);
  font-family: var(--font-body);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  color: #9fb8d0;
  font-size: 16px;
  font-weight: 500;
  transition: color 0.2s;
}

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

.nav-twitter {
  background: var(--gold) !important;
  color: var(--white) !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 14px !important;
  font-family: var(--font-body);
  font-weight: 600 !important;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--navy-mid);
  padding: 16px 24px;
  gap: 14px;
}

.nav-mobile.open { display: flex; }
.nav-mobile a { color: #9fb8d0; font-size: 17px; }

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 520px;
  overflow: hidden;
}

.hero-banner {
  position: absolute;
  inset: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(10,22,40,0.92) 0%,
    rgba(10,22,40,0.75) 50%,
    rgba(10,22,40,0.3) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px 0;
  max-width: 640px;
}

.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 2px;
  margin-bottom: 20px;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 18px;
}

.hero-title .gold { color: var(--gold-light); }

.hero-sub {
  font-size: 20px;
  color: #9fb8d0;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold);
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  font-family: var(--font-body);
  transition: background 0.2s, transform 0.1s;
  display: inline-block;
}

.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

.btn-secondary {
  background: transparent;
  color: var(--white);
  padding: 12px 28px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid rgba(255,255,255,0.4);
  font-family: var(--font-body);
  transition: border-color 0.2s;
}

.btn-secondary:hover { border-color: var(--white); }

/* ===== TICKER ===== */
.ticker-wrap {
  background: var(--navy);
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 44px;
  border-bottom: 3px solid var(--gold);
}

.ticker-label {
  background: var(--gold);
  color: var(--white);
  padding: 0 18px;
  font-size: 13px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1px;
  white-space: nowrap;
  height: 100%;
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.ticker-track {
  display: flex;
  gap: 40px;
  animation: ticker 30s linear infinite;
  white-space: nowrap;
  padding-left: 40px;
  color: #9fb8d0;
  font-size: 14px;
  font-family: var(--font-hindi);
}

.ticker-track span { flex-shrink: 0; }

@keyframes ticker {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== SECTION LABELS ===== */
.section-label {
  font-size: 12px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  border-left: 4px solid var(--gold);
  padding-left: 12px;
  margin-bottom: 28px;
}

/* ===== ARTICLE TAGS ===== */
.article-tag {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  margin-bottom: 12px;
}

.fuel { background: #1a3a5c; color: #7ec8f0; }
.temple { background: #3d1a0a; color: #f0a070; }
.defense { background: #1a3d1a; color: #7af07a; }

/* ===== FEATURED ===== */
.featured-section {
  padding: 64px 0 48px;
}

.featured-grid {
  display: grid;
  grid-template-columns: 3fr 2fr;
  gap: 40px;
  align-items: start;
}

.featured-main {
  background: var(--white);
  border-radius: 6px;
  padding: 36px;
  border-top: 5px solid var(--gold);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}

.featured-title {
  font-size: 32px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}

.featured-excerpt {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  gap: 20px;
  font-size: 14px;
  font-family: var(--font-body);
  color: #8a8a8a;
  margin-bottom: 20px;
}

.read-more {
  display: inline-block;
  color: var(--gold);
  font-weight: 700;
  font-size: 16px;
  font-family: var(--font-body);
  border-bottom: 2px solid var(--gold);
  padding-bottom: 2px;
  transition: opacity 0.2s;
}

.read-more:hover { opacity: 0.7; }

.featured-side {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.side-article {
  padding: 24px 0;
}

.side-article h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.4;
}

.side-article h3 a:hover { color: var(--gold); }

.side-article p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 10px;
}

.meta-date {
  font-size: 13px;
  font-family: var(--font-body);
  color: #8a8a8a;
}

.divider-line {
  height: 1px;
  background: var(--cream-dark);
}

/* ===== ARTICLES GRID ===== */
.articles-section {
  padding: 48px 0 64px;
  background: var(--cream-dark);
}

.articles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.article-card {
  background: var(--white);
  border-radius: 6px;
  padding: 28px;
  border-top: 4px solid var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  transition: transform 0.2s, box-shadow 0.2s;
}

.article-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

.article-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  line-height: 1.4;
}

.article-card h3 a:hover { color: var(--gold); }

.article-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.75;
  margin-bottom: 20px;
}

.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--cream-dark);
  padding-top: 14px;
}

.card-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-body);
  transition: opacity 0.2s;
}

.card-link:hover { opacity: 0.7; }

/* ===== QUOTE STRIP ===== */
.quote-strip {
  background: var(--navy);
  padding: 56px 0;
  text-align: center;
  border-top: 4px solid var(--gold);
  border-bottom: 4px solid var(--gold);
}

.quote-strip blockquote {
  font-size: 28px;
  font-weight: 700;
  color: var(--white);
  line-height: 1.5;
  max-width: 700px;
  margin: 0 auto 14px;
}

.quote-strip cite {
  font-size: 16px;
  color: var(--gold-light);
  font-style: normal;
  font-family: var(--font-body);
}

/* ===== ABOUT ===== */
.about-section {
  padding: 72px 0;
  background: var(--cream);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 60px;
  align-items: center;
}

.about-logo-wrap {
  display: flex;
  justify-content: center;
}

.about-logo {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 6px solid var(--gold);
  object-fit: cover;
  box-shadow: 0 8px 32px rgba(186,117,23,0.25);
}

.about-text h2 {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 20px;
  line-height: 1.3;
}

.about-text p {
  font-size: 18px;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 16px;
}

.about-tag {
  font-size: 15px !important;
  font-family: var(--font-body);
  color: #8a8a8a !important;
  margin-top: 8px;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--navy);
  border-top: 4px solid var(--gold);
  padding: 40px 0;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  object-fit: cover;
}

.footer-name {
  font-size: 18px;
  font-weight: 700;
  color: var(--white);
}

.footer-handle {
  font-size: 13px;
  color: var(--gold-light);
  font-family: var(--font-body);
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: #9fb8d0;
  font-size: 15px;
  transition: color 0.2s;
}

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

.footer-copy {
  text-align: right;
}

.footer-copy p {
  color: #9fb8d0;
  font-size: 14px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .featured-grid { grid-template-columns: 1fr; }
  .articles-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-logo-wrap { justify-content: center; }
  .hero-title { font-size: 38px; }
  .footer-grid { flex-direction: column; align-items: flex-start; }
  .footer-copy { text-align: left; }
}

@media (max-width: 600px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .articles-grid { grid-template-columns: 1fr; }
  .hero { height: auto; min-height: 480px; }
  .hero-content { padding: 60px 24px; }
  .hero-title { font-size: 30px; }
  .featured-title { font-size: 24px; }
  .quote-strip blockquote { font-size: 22px; }
  .about-text h2 { font-size: 26px; }
  .hero-cta { flex-direction: column; }
  .hero-overlay {
    background: linear-gradient(
      to bottom,
      rgba(10,22,40,0.85) 0%,
      rgba(10,22,40,0.7) 100%
    );
  }
}
