/* -----------------------------------------
   PERMANENT DARK FOOTER
   Always has a dark background & light text,
   ignoring site-wide theme toggles.
------------------------------------------ */

/* Base footer styling */
.footer-custom {
  /* Always dark background */
  background-color: #1c1c1c !important;

  /* Always light text */
  color: #ffffff !important;

  padding: 2rem 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Footer links */
.footer-custom .footer-link {
  color: #ffffff !important;
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer-custom .footer-link:hover {
  color: #f0f0f0 !important; /* Slightly lighter on hover */
  text-decoration: underline;
}

/* Footer headings */
.footer-custom h5 {
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

/* Social media icons */
.footer-custom .social-links i {
  font-size: 1.5rem;
  vertical-align: middle;
}
.footer-custom .social-links i:hover {
  color: #f0f0f0 !important;
}

/* Adjust the small text size */
.footer-custom .small {
  font-size: 0.875rem;
}
