/* 
 * Footer Fix CSS
 * Ensures footer styling is consistent across all pages
 */

/* Remove any bottom margin/padding from body and html */
html, body {
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
  overflow-x: hidden;
}

/* Fix footer styling and ensure it's the last element */
.footer {
  color: white;
  padding: 4rem 0 2rem;
  margin: 0 !important;
  position: relative;
  z-index: 1;
}

/* Ensure nothing appears after footer */
.footer::after {
  content: "";
  display: block;
  height: 0;
  margin: 0;
  padding: 0;
  clear: both;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: rgba(255,255,255,0.1);
  border-radius: 50%;
  margin-right: 0.75rem;
  color: white;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background-color: #2ec4b6;
  transform: translateY(-3px);
}

.footer-links a {
  color: rgba(255,255,255,0.8);
  margin-left: 1.5rem;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: white;
}

.footer h5 {
  color: white;
  margin-bottom: 1.5rem;
}

.footer hr.border-light {
  opacity: 0.1;
  margin: 2rem 0;
}

.footer .list-unstyled li {
  margin-bottom: 0.75rem;
}

.footer .list-unstyled a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer .list-unstyled a:hover {
  color: white;
}
