/* OmPanchang Main Stylesheet - Exact App Header (White/Light) + Cosmic Hero + Clean Content */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@600;700;800;900&family=Manrope:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

:root {
  --font-sans: 'Plus Jakarta Sans', 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: 'Cinzel', serif;

  /* Sacred Light Content & Header Palette (White/Clean) */
  --bg-main: #fcfaf6;
  --bg-card: #ffffff;
  --bg-muted: #f8f5ee;
  --bg-warm: #fff7ed;
  --bg-saffron-subtle: #ffedd5;

  /* Typography Colors */
  --text-primary: #1e293b;
  --text-secondary: #475569;
  --text-muted: #64748b;
  --text-light: #94a3b8;

  /* Saffron, Gold & Accent Colors */
  --saffron-primary: #ea580c;
  --saffron-dark: #c2410c;
  --saffron-light: #fb923c;
  --gold-primary: #d97706;
  --gold-light: #fbbf24;
  --emerald-shubh: #059669;
  --rose-ashubh: #dc2626;

  /* Borders & Shadows */
  --border-hairline: #e2e8f0;
  --border-warm: #fed7aa;
  --border-gold: #fde68a;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.05), 0 1px 2px rgba(0,0,0,0.03);
  --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.06), 0 2px 4px -1px rgba(0,0,0,0.03);
  --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.07), 0 4px 6px -2px rgba(0,0,0,0.03);
  --shadow-dropdown: 0 1px 2px rgba(15, 23, 42, 0.04), 0 16px 36px -8px rgba(15, 23, 42, 0.16);
  --shadow-saffron: 0 4px 14px rgba(234, 88, 12, 0.28);
  --shadow-cosmos: 0 8px 32px 0 rgba(0, 0, 0, 0.37);

  /* Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  -webkit-font-smoothing: antialiased;
}

a {
  color: var(--saffron-primary);
  text-decoration: none;
  transition: all 0.2s ease;
}

a:hover {
  color: var(--saffron-dark);
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ══════════════════════════════════════════════════════════════════════
   1. TOP FESTIVAL MARQUEE BANNER (Clean White/Light BG matching App)
   ══════════════════════════════════════════════════════════════════════ */
.festival-marquee {
  background: #ffffff;
  color: #334155;
  border-bottom: 1px solid var(--border-hairline);
  padding: 0.42rem 0;
  font-size: 0.82rem;
  font-weight: 500;
  overflow: hidden;
  white-space: nowrap;
}

.marquee-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: marquee 35s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.5rem;
}

.marquee-item strong {
  color: var(--saffron-dark);
  font-weight: 700;
}

.marquee-sep {
  color: #cbd5e1;
  margin: 0 0.4rem;
  font-size: 0.75rem;
}

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

/* ══════════════════════════════════════════════════════════════════════
   2. MAIN SITE HEADER (Clean White/Light BG matching App)
   ══════════════════════════════════════════════════════════════════════ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-hairline);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

/* Refined Brand Logo */
.site-brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  text-decoration: none;
}

.brand-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(234, 88, 12, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.brand-om {
  font-size: 1.45rem;
  color: #fff7ed;
  font-weight: 700;
  line-height: 1;
}

.brand-text-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: #1e293b;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.brand-name-accent {
  color: var(--saffron-primary);
}

.brand-tagline {
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #64748b;
  margin-top: 0.1rem;
}

/* Desktop Navigation Groups */
.desktop-nav {
  display: flex;
  align-items: center;
  height: 100%;
}

.nav-groups {
  display: flex;
  list-style: none;
  align-items: center;
  height: 100%;
  gap: 0.15rem;
}

.nav-group-item {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}

.nav-trigger {
  color: #334155;
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.5rem 0.8rem;
  border-radius: var(--radius-sm);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  transition: color 0.15s ease;
  position: relative;
}

/* Saffron hover underline bar */
.nav-trigger::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.15rem;
  height: 2px;
  width: 0;
  background: linear-gradient(90deg, #c2410c, #ea580c, #c2410c);
  border-radius: 2px;
  transform: translateX(-50%);
  transition: width 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0.9;
}

.nav-chevron {
  font-size: 0.72rem;
  color: #94a3b8;
  transition: transform 0.2s ease;
}

.nav-group-item:hover .nav-trigger {
  color: var(--saffron-dark);
}

.nav-group-item:hover .nav-trigger::after {
  width: 70%;
}

.nav-group-item:hover .nav-chevron {
  transform: rotate(180deg);
  color: var(--saffron-dark);
}

/* Mega-Dropdown Panel (Clean Light Popover matching App) */
.mega-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: #ffffff;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-dropdown);
  width: 560px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.2s ease;
  pointer-events: none;
  z-index: 250;
  overflow: hidden;
}

/* Dropdown top saffron accent bar */
.mega-dropdown::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #c2410c 0%, #ea580c 50%, #c2410c 100%);
}

.nav-group-item:hover .mega-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.mega-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
}

.mega-links-col {
  padding: 0.85rem;
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.mega-link-item {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  padding: 0.55rem 0.75rem;
  border-radius: var(--radius-md);
  transition: all 0.15s ease;
}

.mega-link-item:hover {
  background: var(--bg-warm);
  transform: translateX(2px);
}

.ml-icon {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

.ml-title {
  font-size: 0.875rem;
  font-weight: 700;
  color: #0f172a;
}

.ml-desc {
  font-size: 0.75rem;
  color: #64748b;
  margin-top: 0.1rem;
  line-height: 1.35;
}

.mega-featured-card {
  background: linear-gradient(135deg, #fff7ed 0%, #ffedd5 100%);
  border-left: 1px solid var(--border-hairline);
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mf-badge {
  font-size: 0.68rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--saffron-primary);
  margin-bottom: 0.35rem;
}

.mf-title {
  font-size: 0.95rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.35rem;
}

.mf-desc {
  font-size: 0.78rem;
  color: #475569;
  line-height: 1.45;
  margin-bottom: 0.85rem;
}

.mf-cta {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--saffron-dark);
}

.mf-cta:hover {
  color: var(--saffron-primary);
  text-decoration: underline;
}

/* Right Header Utilities (Clean Light Pills) */
.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.header-pill-btn {
  background: #f8fafc;
  border: 1px solid var(--border-hairline);
  color: #334155;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.header-pill-btn:hover {
  background: var(--bg-warm);
  border-color: var(--border-warm);
  color: var(--saffron-dark);
}

.app-portal-btn {
  background: linear-gradient(135deg, #ea580c, #d97706);
  color: #ffffff !important;
  padding: 0.5rem 1.15rem;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-saffron);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  transition: all 0.2s ease;
}

.app-portal-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.4);
}

.mobile-menu-toggle {
  display: none;
  background: #f8fafc;
  border: 1px solid var(--border-hairline);
  color: #1e293b;
  font-size: 1.25rem;
  padding: 0.35rem 0.65rem;
  border-radius: var(--radius-md);
  cursor: pointer;
}

/* Mobile Drawer (Clean Light BG) */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -320px;
  width: 320px;
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid var(--border-hairline);
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
  z-index: 300;
  transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  right: 0;
}

.drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem;
  border-bottom: 1px solid var(--border-hairline);
}

.drawer-close-btn {
  background: transparent;
  border: none;
  color: #64748b;
  font-size: 1.75rem;
  cursor: pointer;
}

.drawer-content {
  padding: 1.25rem;
  overflow-y: auto;
  flex: 1;
}

.drawer-section-title {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--saffron-primary);
  letter-spacing: 0.6px;
  margin: 1rem 0 0.5rem;
}

.drawer-link {
  display: block;
  color: #1e293b;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.45rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.drawer-link:hover {
  color: var(--saffron-dark);
}

.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 290;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

/* ══════════════════════════════════════════════════════════════════════
   3. COSMIC UNIVERSE HERO SECTION
   ══════════════════════════════════════════════════════════════════════ */
.hero-cosmos-section {
  position: relative;
  background: radial-gradient(circle at 10% 20%, #1e1b4b 0%, #0a0f1d 70%, #060913 100%);
  color: #ffffff;
  padding: 3.5rem 0 4.5rem;
  overflow: hidden;
}

.hero-cosmos-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: 
    radial-gradient(1.5px 1.5px at 20px 30px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 70px 140px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 150px 80px, #f59e0b, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 220px 220px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 320px 110px, #38bdf8, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 450px 290px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 550px 170px, #fbbf24, rgba(0,0,0,0)),
    radial-gradient(1px 1px at 680px 250px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 800px 90px, #f43f5e, rgba(0,0,0,0)),
    radial-gradient(1.5px 1.5px at 920px 210px, #ffffff, rgba(0,0,0,0)),
    radial-gradient(2px 2px at 1050px 140px, #fbbf24, rgba(0,0,0,0));
  background-repeat: repeat;
  background-size: 600px 350px;
  opacity: 0.65;
  pointer-events: none;
}

.hero-cosmos-section::after {
  content: 'ॐ';
  position: absolute;
  right: -2rem;
  bottom: -4rem;
  font-family: var(--font-serif);
  font-size: 28rem;
  font-weight: 900;
  color: rgba(245, 158, 11, 0.04);
  line-height: 1;
  pointer-events: none;
}

.hero-cosmos-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 2.5rem;
  align-items: center;
  position: relative;
  z-index: 10;
}

.sanskrit-shloka-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  padding: 0.35rem 0.95rem;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  color: #fcd34d;
  margin-bottom: 1.25rem;
}

.hero-cosmos-title {
  font-family: var(--font-serif);
  font-size: 2.85rem;
  font-weight: 800;
  line-height: 1.15;
  color: #ffffff;
  margin-bottom: 1rem;
}

.gradient-text-saffron {
  background: linear-gradient(135deg, #fbbf24 0%, #ea580c 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-cosmos-desc {
  font-size: 1.05rem;
  color: #cbd5e1;
  line-height: 1.65;
  margin-bottom: 1.75rem;
  max-width: 520px;
}

.city-search-bar {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  max-width: 480px;
}

.city-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #ffffff;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.95rem;
  outline: none;
  backdrop-filter: blur(8px);
}

.city-input::placeholder {
  color: #94a3b8;
}

.city-search-btn {
  background: linear-gradient(135deg, #ea580c, #d97706);
  border: none;
  color: #ffffff;
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-md);
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(234, 88, 12, 0.35);
}

.popular-cities-wrap {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.4rem;
}

.popular-label {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
  margin-right: 0.25rem;
}

.cosmos-city-pill {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #e2e8f0;
  padding: 0.25rem 0.65rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: all 0.2s ease;
}

.cosmos-city-pill.active,
.cosmos-city-pill:hover {
  background: #ea580c;
  border-color: #ea580c;
  color: #ffffff;
  box-shadow: 0 0 10px rgba(234, 88, 12, 0.5);
}

/* Right Side: 6 Cosmic Glassmorphism Cards */
.hero-cosmos-cards-container {
  background: rgba(15, 23, 42, 0.65);
  border: 1px solid rgba(245, 158, 11, 0.25);
  border-radius: var(--radius-xl);
  padding: 1.75rem;
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow-cosmos);
}

.cosmos-header-strip {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 1rem;
  margin-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cosmos-date-title {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  color: #fcd34d;
  font-weight: 700;
}

.cosmos-badge-live {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(5, 150, 105, 0.25);
  border: 1px solid rgba(5, 150, 105, 0.5);
  color: #34d399;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.cosmos-six-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.85rem;
  margin-bottom: 1.25rem;
}

.cosmos-meta-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-md);
  padding: 0.9rem;
  transition: all 0.2s ease;
}

.cosmos-meta-card:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(245, 158, 11, 0.4);
}

.cm-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #94a3b8;
  letter-spacing: 0.5px;
  margin-bottom: 0.2rem;
}

.cm-value {
  font-size: 1.1rem;
  font-weight: 800;
  color: #ffffff;
}

.cm-sub {
  font-size: 0.78rem;
  color: #fbbf24;
  font-weight: 600;
}

.cosmos-timings-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.65rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 0.85rem;
  margin-bottom: 1rem;
}

.ct-col {
  text-align: center;
}

.ct-col .ct-label {
  font-size: 0.72rem;
  color: #94a3b8;
  font-weight: 600;
}

.ct-col .ct-val {
  font-size: 0.9rem;
  font-weight: 800;
  color: #ffffff;
  margin-top: 0.1rem;
}

.ct-col.shubh .ct-val { color: #34d399; }
.ct-col.rahu .ct-val { color: #f87171; }

/* ══════════════════════════════════════════════════════════════════════
   4. SECTIONS COMMON & CONTENT STYLING
   ══════════════════════════════════════════════════════════════════════ */
.section {
  padding: 3.5rem 0;
}

.section-alt {
  background: #ffffff;
  border-top: 1px solid var(--border-hairline);
  border-bottom: 1px solid var(--border-hairline);
}

.section-head {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 2.5rem;
}

.section-head-title {
  font-size: 1.95rem;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: -0.015em;
}

.section-head-sub {
  color: var(--text-secondary);
  font-size: 0.95rem;
  margin-top: 0.4rem;
}

/* Tools Grid */
.tools-grid-4 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}

.card-tool {
  background: #ffffff;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.card-tool:hover {
  transform: translateY(-3px);
  border-color: var(--border-warm);
  box-shadow: var(--shadow-md);
}

.tool-badge-icon {
  width: 50px;
  height: 50px;
  border-radius: var(--radius-md);
  background: var(--bg-warm);
  color: var(--saffron-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.card-tool h3 {
  font-size: 1.2rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.4rem;
}

.card-tool p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.tool-action-link {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--saffron-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

/* 12 Rashi Grid */
.rashi-grid-12 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 0.85rem;
}

.rashi-box-btn {
  background: #ffffff;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: 1.15rem 0.75rem;
  text-align: center;
  transition: all 0.2s ease;
  box-shadow: var(--shadow-sm);
}

.rashi-box-btn:hover {
  background: var(--bg-warm);
  border-color: var(--border-warm);
  transform: translateY(-2px);
}

.rashi-icon-large {
  font-size: 2rem;
  display: block;
  margin-bottom: 0.35rem;
}

.rashi-hi {
  font-size: 1rem;
  font-weight: 800;
  color: #0f172a;
}

.rashi-en {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

/* Festivals / Articles Grid */
.festivals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.75rem;
}

.festival-item-card {
  background: #ffffff;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.25s ease;
}

.festival-item-card:hover {
  transform: translateY(-3px);
  border-color: var(--border-warm);
  box-shadow: var(--shadow-md);
}

.festival-banner-wrap {
  height: 180px;
  background: linear-gradient(135deg, #fff7ed 0%, #fed7aa 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  color: var(--saffron-primary);
}

.festival-content-body {
  padding: 1.5rem;
}

.festival-date-tag {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--saffron-primary);
  letter-spacing: 0.5px;
  margin-bottom: 0.35rem;
}

.festival-item-card h3 {
  font-size: 1.25rem;
  font-weight: 800;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.festival-item-card p {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* FAQ Accordion Section */
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-card {
  background: #ffffff;
  border: 1px solid var(--border-hairline);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 0.5rem;
}

.faq-answer {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.65;
}

/* Site Footer */
.site-footer {
  margin-top: auto;
  background: #0a0f1d;
  color: #cbd5e1;
  border-top: 3px solid var(--saffron-primary);
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.footer-col h5 {
  font-family: var(--font-serif);
  color: #fcd34d;
  font-size: 1.1rem;
  margin-bottom: 1.25rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a {
  color: #94a3b8;
  font-size: 0.9rem;
  font-weight: 500;
}

.footer-col a:hover {
  color: #fcd34d;
  padding-left: 3px;
}

.footer-bottom {
  text-align: center;
  border-top: 1px solid #1e293b;
  padding-top: 1.5rem;
  color: #64748b;
  font-size: 0.85rem;
}

/* Mobile Responsiveness */
@media (max-width: 1024px) {
  .desktop-nav {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-cosmos-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .cosmos-six-grid {
    grid-template-columns: 1fr;
  }

  .cosmos-timings-strip {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }
}
