/* ============================================================
   ManaHindu — main.css
   Global styles: reset, header, nav, footer, ticker, topbar
   Used by: ALL pages
   ============================================================ */

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* ── CSS Variables ───────────────────────────────────────── */
:root {
  --maroon:       #7c1c1c;
  --maroon-dark:  #5a1212;
  --saffron:      #f59e0b;
  --saffron-deep: #ea7a0c;   /* richer warm saffron for accents */
  --gold:         #d97706;
  --gold-rich:    #b45309;   /* deeper antique gold */
  --gold-light:   #fbbf24;   /* luminous highlight gold */
  --cream:        #fdf8f0;
  --cream-dark:   #f5ede0;
  --white:        #ffffff;
  --text:         #1a1a1a;
  --text-muted:   #5a4a3a;
  --border:       #e8d5c0;
  --radius:       10px;
  --shadow:       0 2px 12px rgba(124,28,28,0.08);
  --shadow-lg:    0 4px 24px rgba(124,28,28,0.12);

  /* Saffron-gold gradient accents */
  --grad-saffron: linear-gradient(135deg, #fbbf24 0%, #f59e0b 45%, #d97706 100%);
  --grad-gold:    linear-gradient(135deg, #f59e0b 0%, #d97706 55%, #b45309 100%);
  --grad-warm:    linear-gradient(135deg, #fef3c7 0%, #fde8c4 100%);

  /* Depth levels */
  --z-nav:        100;
  --z-mobile-nav: 200;
}

/* ── Base ────────────────────────────────────────────────── */
body {
  font-family: 'Poppins', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  min-height: 100vh;
}

/* ── Container ───────────────────────────────────────────── */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.2rem;
}

/* ── Topbar ──────────────────────────────────────────────── */
.topbar {
  background: var(--maroon-dark);
  color: #f5c98e;
  font-size: 0.78rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.35rem 1.5rem;
}
.topbar a { color: #f5c98e; text-decoration: none; }
.topbar a.active { color: var(--saffron); font-weight: 600; }

/* ── Header ──────────────────────────────────────────────── */
.header {
  background: var(--white);
  border-bottom: 3px solid transparent;
  border-image: var(--grad-gold) 1;
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1.2rem;
  gap: 1rem;
}

/* ── Logo ────────────────────────────────────────────────── */
.logo { display: flex; align-items: center; gap: 0.7rem; text-decoration: none; }
.logo-om    { font-size: 2.2rem; color: var(--saffron); line-height: 1; }
.logo-title { font-family: 'Tiro Telugu', serif; font-size: 1.4rem; color: var(--maroon); font-weight: 700; line-height: 1.1; }
.logo-sub   { font-size: 0.72rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

/* ── Nav ─────────────────────────────────────────────────── */
.nav { display: flex; gap: 0.2rem; }
.nav a {
  color: var(--maroon);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  padding: 0.4rem 0.75rem;
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
}
.nav a:hover     { background: var(--cream); color: var(--maroon-dark); }
.nav a.active    { background: var(--grad-saffron); color: var(--maroon-dark); font-weight: 700; }

/* ── Mobile Nav ──────────────────────────────────────────── */
.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  color: var(--maroon);
  cursor: pointer;
}
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 0.5rem 1.2rem 1rem;
  z-index: var(--z-mobile-nav);
}
.mobile-nav a {
  color: var(--maroon);
  text-decoration: none;
  padding: 0.55rem 0;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--cream-dark);
}
.mobile-nav a.active { color: var(--saffron); font-weight: 700; }
.mobile-nav.open { display: flex; }

/* ── News Ticker ─────────────────────────────────────────── */
.ticker-wrap {
  background: var(--maroon);
  color: #f5e0bb;
  display: flex;
  align-items: center;
  overflow: hidden;
  height: 38px;
}
.ticker-label {
  background: var(--saffron);
  color: var(--maroon-dark);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 0 1rem;
  height: 100%;
  display: flex;
  align-items: center;
  white-space: nowrap;
  flex-shrink: 0;
}
.ticker-track {
  display: flex;
  white-space: nowrap;
  animation: ticker 30s linear infinite;
  font-size: 0.82rem;
}
.ticker-track span { display: inline-block; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Page Hero (inner pages) ─────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #3d0c0c 0%, #7c1c1c 50%, #4a0e0e 100%);
  padding: 2.5rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid transparent;
  border-image: var(--grad-gold) 1;
}
.page-hero::before {
  content: 'ॐ';
  position: absolute;
  right: 3%;
  top: 50%;
  transform: translateY(-50%);
  font-size: 14rem;
  color: rgba(245,158,11,0.06);
  pointer-events: none;
}
.page-hero h1 { font-family: 'Tiro Telugu', serif; color: #fff; font-size: clamp(1.6rem,3vw,2.2rem); position: relative; }
.page-hero p  { color: #f5ddb0; font-size: 0.9rem; margin-top: 0.4rem; position: relative; }

/* ── Breadcrumb ──────────────────────────────────────────── */
.breadcrumb { font-size: 0.8rem; color: #f5c98e; margin-bottom: 1rem; }
.breadcrumb a { color: #f5c98e; text-decoration: none; }
.breadcrumb a:hover { color: var(--saffron); }
.breadcrumb span { margin: 0 0.4rem; }

/* ── Footer ──────────────────────────────────────────────── */
.footer { background: #1a0505; color: #c9a07a; padding: 2.5rem 0 0; border-top: 4px solid transparent; border-image: var(--grad-gold) 1; }
.footer-inner { display: flex; gap: 3rem; flex-wrap: wrap; padding-bottom: 2rem; }
.footer-brand { display: flex; align-items: center; gap: 0.8rem; }
.footer-links { display: flex; gap: 3rem; flex-wrap: wrap; }
.footer-links div { display: flex; flex-direction: column; gap: 0.4rem; }
.footer-links h4 { color: var(--saffron); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.4rem; }
.footer-links a { color: #c9a07a; text-decoration: none; font-size: 0.83rem; }
.footer-links a:hover { color: var(--saffron); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); text-align: center; padding: 1rem; font-size: 0.8rem; color: #8a6050; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav        { display: none; }
  .hamburger  { display: block; }
  .footer-inner { flex-direction: column; gap: 1.5rem; }
  .footer-links { gap: 1.5rem; }
  .page-hero::before { font-size: 6rem; }
}


/* ── Dropdown Nav ─────────────────────────────────────── */
.nav-item { position: relative; }
.nav-item > a { display: flex; align-items: center; gap: 0.3rem; }
.nav-item > a::after { content: "▾"; font-size: 0.7rem; }
.dropdown {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--saffron);
  border-radius: 0 0 10px 10px;
  min-width: 290px;
  max-height: 70vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  z-index: 500;
  padding: 0.5rem 0;
  scrollbar-width: thin;
  scrollbar-color: var(--saffron) var(--cream);
}
.dropdown::-webkit-scrollbar { width: 4px; }
.dropdown::-webkit-scrollbar-track { background: var(--cream); }
.dropdown::-webkit-scrollbar-thumb { background: var(--saffron); border-radius: 4px; }
.dropdown a.active { color: var(--maroon); font-weight: 600; background: var(--cream); }
.nav-item:hover .dropdown { display: block; }
.dropdown a {
  display: block;
  padding: 0.48rem 1.2rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.78rem;
  border-bottom: 1px solid var(--cream-dark);
  transition: background 0.15s, color 0.15s;
}
.dropdown a:last-child { border-bottom: none; }
.dropdown a:hover { background: var(--cream); color: var(--maroon); padding-left: 1.5rem; }
.dropdown a.active { color: var(--maroon); font-weight: 600; }
.dropdown-divider { height: 1px; background: var(--border); margin: 0.3rem 0; }
.dropdown-header {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  padding: 0.4rem 1.2rem 0.2rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* ── Temple Reactions Widget ──────────────────────────────── */
.mh-reaction-box {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
  text-align: center;
}
.mh-reaction-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 1rem;
  font-family: 'Tiro Telugu', serif;
}
.mh-reaction-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 1rem;
}
.mh-btn-like, .mh-btn-dislike {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.6rem 1.4rem;
  border: 2px solid var(--border);
  border-radius: 50px;
  background: var(--white);
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s;
}
.mh-btn-like:hover { border-color: #22c55e; color: #22c55e; }
.mh-btn-dislike:hover { border-color: #ef4444; color: #ef4444; }
.mh-btn-like.active { background: #22c55e; color: white; border-color: #22c55e; }
.mh-btn-dislike.active { background: #ef4444; color: white; border-color: #ef4444; }
.mh-btn-like span, .mh-btn-dislike span {
  background: rgba(0,0,0,0.1);
  border-radius: 50px;
  padding: 0.1rem 0.5rem;
  font-size: 0.8rem;
}
.mh-visit-count {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ── Temple Comments Widget ───────────────────────────────── */
.mh-comments-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
}
.mh-comments-box h3 {
  color: var(--maroon);
  font-size: 1.1rem;
  margin-bottom: 1.2rem;
  font-family: 'Tiro Telugu', serif;
}
.mh-comment-form { margin-bottom: 1.5rem; }
.mh-comment-form h4 { font-size: 0.95rem; color: var(--text); margin-bottom: 0.8rem; }
.mh-comment-input {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  margin-bottom: 0.6rem;
  box-sizing: border-box;
  background: var(--cream);
}
.mh-comment-textarea {
  width: 100%;
  padding: 0.6rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 0.9rem;
  font-family: inherit;
  margin-bottom: 0.8rem;
  box-sizing: border-box;
  resize: vertical;
  background: var(--cream);
}
.mh-comment-input:focus, .mh-comment-textarea:focus {
  outline: none;
  border-color: var(--saffron);
}
.mh-comment-btn {
  background: var(--maroon);
  color: white;
  border: none;
  padding: 0.6rem 1.4rem;
  border-radius: 8px;
  cursor: pointer;
  font-size: 0.85rem;
  font-family: inherit;
  font-weight: 600;
  white-space: nowrap;
  transition: background 0.2s;
}
.mh-comment-btn:hover { background: var(--saffron); }
.mh-comment-btn:disabled { background: var(--text-muted); cursor: not-allowed; }
.mh-comment-submitted {
  background: #f0fdf4;
  border: 1px solid #86efac;
  border-radius: 8px;
  padding: 0.8rem 1rem;
  font-size: 0.85rem;
  color: #166534;
  margin-bottom: 1rem;
}
.mh-comments-list { display: flex; flex-direction: column; gap: 1rem; }
.mh-comment-item {
  background: var(--cream);
  border-radius: 10px;
  padding: 1rem;
  border-left: 3px solid var(--saffron);
}
.mh-comment-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 0.5rem;
}
.mh-comment-avatar {
  width: 36px; height: 36px;
  background: var(--maroon);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
}
.mh-comment-name { font-weight: 600; font-size: 0.9rem; color: var(--text); display: block; }
.mh-comment-date { font-size: 0.75rem; color: var(--text-muted); }
.mh-comment-text { font-size: 0.88rem; color: var(--text); line-height: 1.6; }

/* ── Mobile Accordion Submenu ─────────────────────────────── */
.mobile-nav-group { border-bottom: 1px solid var(--cream-dark); }
.mobile-nav-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  color: var(--maroon);
  font-family: inherit;
  font-size: 0.95rem;
  padding: 0.55rem 0;
  cursor: pointer;
  text-align: left;
}
.mobile-nav-toggle .arrow { font-size: 0.7rem; transition: transform 0.2s; color: var(--saffron); }
.mobile-nav-toggle.open .arrow { transform: rotate(180deg); }
.mobile-nav-submenu {
  display: none;
  flex-direction: column;
  padding-left: 1rem;
  background: var(--cream);
  border-radius: 8px;
  margin-bottom: 0.4rem;
}
.mobile-nav-submenu.open { display: flex; }
.mobile-nav-submenu a {
  font-size: 0.85rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-nav-submenu a:last-child { border-bottom: none; }
.mobile-nav a.mobile-plain {
  display: block;
}

/* ── Dropdown Section Group Headers ──────────────────────── */
.dropdown-group-label {
  display: block;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--saffron);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 0.5rem 1.2rem 0.25rem;
  background: var(--cream);
}
.dropdown-group-label:first-child { padding-top: 0.35rem; }

/* ── Nested "మరిన్ని" submenu + highlighted dropdown item ──── */
.dropdown-submenu {
  position: relative;
}
.dropdown-submenu > .submenu-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.55rem 1.2rem;
  font-size: 0.85rem;
  color: var(--text);
  cursor: pointer;
}
.dropdown-submenu > .submenu-trigger:hover { background: var(--cream); color: var(--maroon); }
.dropdown-submenu .submenu-panel {
  display: none;
  position: absolute;
  left: 100%;
  top: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-top: 3px solid var(--saffron);
  border-radius: 0 10px 10px 10px;
  min-width: 220px;
  box-shadow: var(--shadow-lg);
  padding: 0.5rem 0;
  z-index: 600;
}
.dropdown-submenu:hover .submenu-panel { display: block; }
@media (max-width: 1100px) {
  .dropdown-submenu .submenu-panel { left: auto; right: 100%; border-radius: 10px 0 10px 10px; }
}
.dropdown a.highlight-item {
  background: linear-gradient(90deg, #fef3c7, transparent);
  font-weight: 700;
  color: var(--maroon);
  border-left: 3px solid var(--saffron);
}
.dropdown a.highlight-item::after {
  content: "⭐";
  margin-left: 0.4rem;
  font-size: 0.75rem;
}

/* ── Universal Share Widget ───────────────────────────────── */
.mh-share-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.2rem 1.5rem;
  margin: 2rem 0;
}
.mh-share-title {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--maroon);
  margin-bottom: 0.9rem;
}
.mh-share-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}
.mh-share-btn {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.95rem;
  border-radius: 50px;
  border: 1px solid var(--border);
  background: var(--cream);
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  color: var(--text);
  cursor: pointer;
  transition: all 0.2s;
}
.mh-share-btn:hover { transform: translateY(-1px); box-shadow: var(--shadow-sm); }
.mh-share-icon { font-size: 1rem; }
.mh-share-wa:hover { background: #25d366; color: #fff; border-color: #25d366; }
.mh-share-email:hover { background: #ea4335; color: #fff; border-color: #ea4335; }
.mh-share-fb:hover { background: #1877f2; color: #fff; border-color: #1877f2; }
.mh-share-tw:hover { background: #000; color: #fff; border-color: #000; }
.mh-share-tg:hover { background: #229ed9; color: #fff; border-color: #229ed9; }
.mh-share-copy:hover { background: var(--maroon); color: #fff; border-color: var(--maroon); }
@media (max-width: 480px) {
  .mh-share-btn { font-size: 0.76rem; padding: 0.45rem 0.8rem; }
}

/* ═══════════════════════════════════════════════════════════
   THEME POLISH — saffron-gold richness (appended)
   Self-contained enhancement layer. Adds warmth & depth to
   heroes, cards, padyam blocks, nav accents. Structure unchanged.
   ═══════════════════════════════════════════════════════════ */

/* Warm paper texture on body — very subtle gold wash */
body {
  background:
    radial-gradient(circle at 12% 8%, rgba(245,158,11,0.05) 0%, transparent 42%),
    radial-gradient(circle at 88% 92%, rgba(217,119,6,0.05) 0%, transparent 42%),
    var(--cream);
  background-attachment: fixed;
}

/* Heroes — richer maroon-to-saffron depth + soft gold glow at base */
.life-hero, .page-hero {
  background:
    radial-gradient(ellipse at 50% 140%, rgba(245,158,11,0.28) 0%, transparent 60%),
    linear-gradient(135deg, #3d0c0c 0%, var(--maroon) 48%, #4a0e0e 100%) !important;
  position: relative;
}
.life-hero h1, .page-hero h1 {
  text-shadow: 0 2px 14px rgba(0,0,0,0.35);
  letter-spacing: 0.3px;
}
/* gold hairline shimmer under hero text */
.life-hero h1::after, .page-hero h1::after {
  content: '';
  display: block;
  width: 70px; height: 3px;
  margin: 0.7rem auto 0;
  border-radius: 3px;
  background: var(--grad-saffron);
  box-shadow: 0 0 12px rgba(245,158,11,0.6);
}

/* Padyam (mantra) cards — antique-gold framing + warm fill */
.padyam-card {
  background: linear-gradient(135deg, #fffdf8 0%, var(--cream) 100%) !important;
  border-left: 4px solid transparent !important;
  border-image: var(--grad-gold) 1 !important;
  box-shadow: 0 3px 16px rgba(180,83,9,0.10), inset 0 1px 0 rgba(255,255,255,0.6);
  position: relative;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.padyam-card:hover {
  box-shadow: 0 6px 22px rgba(180,83,9,0.16);
  transform: translateY(-1px);
}
.padyam-text {
  color: #4a2810;
}

/* Satakam / intro band — soft saffron gradient edge */
.satakam-intro {
  background: var(--grad-warm) !important;
  border-left: 4px solid transparent;
  border-image: var(--grad-saffron) 1;
  box-shadow: var(--shadow);
}

/* Chapter nav — active item gets a rich gold gradient pill */
.chapter-nav-item.active {
  background: var(--grad-gold) !important;
  color: #fff !important;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(180,83,9,0.30);
}
.chapter-nav-item {
  transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}
.chapter-nav-item:hover:not(.active) {
  background: var(--cream-dark);
  padding-left: 1rem;
  color: var(--maroon);
}

/* Source-note — parchment look */
.source-note {
  background: linear-gradient(135deg, #fdf6e9 0%, #f9edd6 100%);
  border: 1px solid var(--border);
  border-left: 4px solid var(--gold-rich);
  border-radius: 8px;
  padding: 0.9rem 1.1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

/* Dropdown group labels — gold uppercase elegance */
.dropdown-group-label {
  color: var(--gold-rich) !important;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Header logo Om — subtle gold glow */
.logo-om {
  text-shadow: 0 0 16px rgba(245,158,11,0.35);
}

/* Footer — warm gold top accent already present; enrich brand Om */
.footer .logo-om {
  text-shadow: 0 0 18px rgba(245,158,11,0.45);
}

/* Info tables (festival pages) — warm header, gold gridlines */
.info-table th {
  background: var(--grad-gold) !important;
  color: #fff !important;
  border-color: var(--gold-rich) !important;
}
.info-table td { border-color: var(--border) !important; }
.info-table tr:nth-child(even) td { background: rgba(253,248,240,0.6); }

/* ═══════════════════════════════════════════════════════════
   FESTIVAL & HINDUISM CARD GRID (shared — homepage + festivals hub)
   ═══════════════════════════════════════════════════════════ */
.fest-card-grid, .topic-card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.4rem;
  margin-top: 1.5rem;
}
.fest-card, .topic-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, #fffdf8 0%, var(--cream) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.6rem 1.4rem;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(180,83,9,0.07);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}
.fest-card::before, .topic-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 5px;
  background: var(--grad-saffron);
}
.fest-card:hover, .topic-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 28px rgba(180,83,9,0.16);
}
.fest-card-icon, .topic-card-icon { font-size: 2.6rem; line-height: 1; margin-bottom: 0.8rem; }
.fest-card-title, .topic-card-title {
  font-family: 'Tiro Telugu', serif;
  font-size: 1.2rem;
  color: var(--maroon);
  margin: 0 0 0.4rem;
  font-weight: 700;
}
.fest-card-en, .topic-card-en {
  font-size: 0.76rem;
  color: var(--gold-rich);
  letter-spacing: 0.4px;
  text-transform: uppercase;
  margin-bottom: 0.7rem;
}
.fest-card-desc, .topic-card-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}
.fest-card-cta, .topic-card-cta {
  margin-top: 1rem;
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--saffron-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  transition: gap 0.2s ease;
}
.fest-card:hover .fest-card-cta, .topic-card:hover .topic-card-cta { gap: 0.6rem; }
.fest-intro-band {
  background: var(--grad-warm);
  border-radius: 14px;
  padding: 1.5rem 1.8rem;
  margin-bottom: 0.5rem;
  border-left: 4px solid var(--saffron);
  line-height: 1.8;
}
.fest-intro-band h2 {
  font-family: 'Tiro Telugu', serif;
  color: var(--maroon);
  font-size: 1.3rem;
  margin: 0 0 0.5rem;
}
.fest-intro-band p { color: var(--text); font-size: 0.95rem; margin: 0; }
.homepage-section-title {
  font-family: 'Tiro Telugu', serif;
  font-size: 1.7rem;
  color: var(--maroon);
  margin-bottom: 0.3rem;
}
.homepage-section-sub {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
}
.section-view-all {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.6rem;
  font-weight: 600;
  color: var(--maroon);
  text-decoration: none;
  font-size: 0.95rem;
}
