/* FOOTER */
.footer {
  background: #111; /* dark background */
  color: #aaa; /* light text */
  padding: 40px 8%;
  font-size: 0.9rem;
  text-align: center;
  display: flex;
  justify-content: center;
}

.footer-content {
  max-width: 1200px;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
}

/* Logo */
.footer-logo img {
  height: 40px;
  margin-bottom: 10px;
}

/* Navigation Links */
.footer-links {
  display: flex;
  gap: 25px;
}

.footer-links a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #1aff1a; /* match site accent */
}

/* Social Media Icons */
.footer-socials {
  display: flex;
  gap: 20px;
  font-size: 1.5rem;
}

.footer-socials a {
  color: #fff;
  transition: color 0.3s;
}

.footer-socials a:hover {
  color: #1aff1a;
}

/* Info / Compliance Text */
.footer-info p {
  margin-top: 5px;
  color: #aaa;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

.footer-socials a img {
  width: 40px;
  height: 40px;
  transition:
    transform 0.3s,
    filter 0.3s;
}

.footer-socials a:hover img {
  transform: scale(1.2);
  filter: brightness(1.2);
}
