/* ===== FOOTER ===== */
.bat-footer {
  background-color: var(--bat-bg-footer);
  color: var(--bat-text-on-dark);
  margin-top: auto;
}

.bat-footer-logo {
  height: 32px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.bat-footer-heading {
  color: var(--bat-white);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1rem;
}

.bat-footer-text {
  color: var(--bat-gray-500);
  font-size: 0.875rem;
  line-height: 1.75;
}

.bat-footer-links li {
  margin-bottom: 0.5rem;
}
.bat-footer-links a {
  color: var(--bat-gray-500) !important;
  text-decoration: none !important;
  font-size: 0.875rem;
  transition: color 150ms ease;
}
.bat-footer-links a:hover {
  color: var(--bat-blue) !important;
}

/* Social icons */
.bat-footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--bat-gray-600);
  color: var(--bat-gray-500) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  transition: all 150ms ease;
}
.bat-footer-social:hover {
  background: var(--bat-blue);
  border-color: var(--bat-blue);
  color: var(--bat-white) !important;
}

/* Newsletter form */
.bat-footer-newsletter .form-control {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid var(--bat-gray-600);
  color: var(--bat-white);
  font-size: 0.8rem;
}
.bat-footer-newsletter .form-control::placeholder {
  color: var(--bat-gray-500);
}
.bat-footer-newsletter .form-control:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--bat-blue);
  box-shadow: none;
  color: var(--bat-white);
}
.bat-footer-newsletter-btn {
  background: var(--bat-blue);
  color: var(--bat-white);
  border: none;
  transition: all 150ms ease;
}
.bat-footer-newsletter-btn:hover {
  background: var(--bat-blue-dark);
  color: var(--bat-white);
}

/* Bottom bar links */
.bat-footer-text-link {
  color: var(--bat-gray-500) !important;
  text-decoration: none !important;
  font-size: 0.75rem;
  transition: color 150ms ease;
}
.bat-footer-text-link:hover {
  color: var(--bat-blue) !important;
}
