/* Live Fest shared footer styles. Keep footer HTML lean across pages. */
.lf-site-footer {
  margin-top: auto;
  border-top: 1px solid rgba(255,255,255,.10);
  background: linear-gradient(135deg, rgba(35,35,39,.98) 0%, rgba(18,18,23,.99) 48%, rgba(13,13,17,.99) 100%);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  color: #fff;
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
}
.lf-site-footer * { box-sizing: border-box; }
.lf-footer-container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 48px 16px 24px;
}
.lf-footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  color: #fff;
}
.lf-footer-brand-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: #fff;
}
.lf-footer-logo {
  width: 40px;
  height: 40px;
  border-radius: 9999px;
  object-fit: cover;
  box-shadow: 0 0 0 2px rgba(255,46,63,.30);
  flex: 0 0 auto;
}
.lf-footer-title {
  margin: 0;
  color: #fff;
  font-size: 20px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0;
}
.lf-footer-kicker {
  margin: 0;
  color: rgba(255,255,255,.45);
  font-size: 12px;
  line-height: 16px;
  font-weight: 500;
}
.lf-footer-copy {
  margin: 0;
  max-width: 448px;
  color: rgba(255,255,255,.70);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}
.lf-footer-heading {
  margin: 0 0 16px;
  color: #fff;
  font-size: 18px;
  line-height: 28px;
  font-weight: 700;
  letter-spacing: 0;
}
.lf-footer-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  line-height: 20px;
}
.lf-footer-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  text-decoration: none;
  transition: color .2s ease;
  font-weight: 600;
}
.lf-footer-link:hover { color: #fff; }
.lf-footer-link svg {
  width: 16px;
  height: 16px;
  flex: 0 0 auto;
}
.lf-footer-socials {
  display: flex;
  align-items: center;
  gap: 16px;
}
.lf-footer-social {
  display: inline-flex;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  transition: opacity .2s ease;
}
.lf-footer-social:hover { opacity: .8; }
.lf-footer-social svg {
  width: 24px;
  height: 24px;
  display: block;
}
.lf-footer-bottom {
  margin-top: 32px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,.10);
  text-align: center;
  color: rgba(255,255,255,.55);
  font-size: 14px;
  line-height: 20px;
  font-weight: 600;
}
@media (min-width: 640px) {
  .lf-footer-container { padding-left: 24px; padding-right: 24px; }
}
@media (min-width: 768px) {
  .lf-footer-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .lf-footer-brand { grid-column: span 2 / span 2; }
}
@media (min-width: 1024px) {
  .lf-footer-container { padding-left: 32px; padding-right: 32px; }
}
