/* ===== FOOTER STYLES ===== */

.site-footer {
  background: #040B1A;
  border-top: 1px solid rgba(243, 154, 23, 0.15);
  padding: 4rem 0 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 400px; height: 1px;
  background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 3rem;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 3rem;
}

.footer-brand .footer-logos {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.footer-brand .footer-logos img.logo-invent-footer {
  height: 50px; width: auto;
  filter: drop-shadow(0 0 6px rgba(225, 105, 25, 0.3));
}

.footer-brand .footer-logos img.logo-aurodhan-footer {
  height: 40px; width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.footer-logo-divider {
  width: 1px; height: 36px;
  background: linear-gradient(to bottom, transparent, rgba(243,154,23,0.4), transparent);
}

.footer-tagline {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--white-dim);
  max-width: 320px;
}

.footer-col h4 {
  font-family: 'Cinzel', serif;
  font-size: 0.72rem;
  letter-spacing: 0.25em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 1.2rem;
  padding-bottom: 0.6rem;
  border-bottom: 1px solid rgba(243,154,23,0.15);
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.6rem; }

.footer-col ul li a {
  font-size: 0.95rem;
  color: var(--white-dim);
  text-decoration: none;
  transition: color 0.3s ease;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.footer-col ul li a::before { content: '›'; color: var(--orange); font-size: 1.1rem; }
.footer-col ul li a:hover { color: var(--gold); }

.footer-event-details { display: flex; flex-direction: column; gap: 0.8rem; }

.footer-detail-item {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  font-size: 0.95rem;
  color: var(--white-dim);
}

.footer-detail-item .detail-icon {
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-bottom {
  margin-top: 3rem;
  padding: 1.2rem 3rem;
  border-top: 1px solid rgba(243,154,23,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: var(--white-dim);
  opacity: 0.6;
  letter-spacing: 0.04em;
}
.footer-copy a { color: var(--gold); text-decoration: none; }

.footer-flame-quote {
  font-family: 'Cinzel', serif;
  font-style: italic;
  font-size: 0.82rem;
  color: var(--gold);
  opacity: 0.7;
  text-align: center;
  flex: 1;
  min-width: 200px;
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: span 2; }
}
@media (max-width: 600px) {
  .footer-inner { grid-template-columns: 1fr; padding: 0 1.5rem; }
  .footer-brand { grid-column: span 1; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1.2rem 1.5rem; }
  .footer-flame-quote { display: none; }
}
