.main-footer {
  background-color: var(--dark-gray);
  color: #94a3b8;
  border-top: 2px solid var(--vibrant-orange);
  padding: 2.5rem 5% 1.5rem 5%;
  font-family: var(--font-sans);
  font-size: 0.85rem;
}

.footer-container {
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .footer-container {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.footer-info h3 {
  font-family: var(--font-logo);
  font-size: 1.25rem;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.footer-info p {
  color: #94a3b8;
  font-size: 0.8rem;
  margin: 0;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .footer-links {
    margin-left: auto;
  }
}

.footer-links a {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s;
}

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

.social-link {
  display: inline-flex;
  align-items: center;
}

.social-link img {
  height: 18px;
  width: auto;
  vertical-align: middle;
  filter: brightness(0) invert(0.85);
  transition: filter 0.2s ease, transform 0.2s ease;
}

.social-link:hover img {
  filter: none;
  transform: scale(1.1);
}

.footer-bottom-bar {
  max-width: 1300px;
  width: 100%;
  margin: 2rem auto 0 auto;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-sponsor-img {
  height: 28px;
  width: auto;
  display: block;
  opacity: 0.6;
  filter: grayscale(100%);
  transition: opacity 0.2s ease, filter 0.2s ease;
}

.footer-sponsor-img:hover {
  opacity: 1;
  filter: grayscale(0%);
}

.footer-admin-link {
  color: #cbd5e1;
  text-decoration: none;
  font-size: 0.85rem;
  font-family: var(--font-sans);
  font-weight: 400;
  border: none;
  padding: 0;
  transition: color 0.2s ease;
}

.footer-admin-link:hover {
  color: var(--vibrant-orange);
}