@import url(interactions.css);
/* Footer - full width, compact */

#footer {
  background: #1a1a1a !important;
  color: #fff !important;
  padding: 30px 0 15px !important;
  margin-top: 60px !important;
  border: none !important;
  box-shadow: none !important;
}

.footer-main {
  padding: 0 60px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.footer-logo {
  flex-shrink: 0;
}

.footer-logo img {
  height: 50px;
  width: auto;
  background: #fff;
  padding: 8px;
  border-radius: 4px;
}

.footer-columns {
  display: flex;
  flex-grow: 1;
  justify-content: space-evenly;
}

.footer-column h4 {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 12px 0;
  color: #fff;
}

.footer-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-column li {
  margin-bottom: 5px;
}

.footer-column a {
  color: #888;
  text-decoration: none;
  font-size: 12px;
  line-height: 1.5;
}

.footer-column a:hover {
  color: #fff;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid #555;
  border-radius: 50%;
  color: #888;
}

.social-links a:hover {
  border-color: #fff;
  color: #fff;
}

.social-links svg {
  width: 16px;
  height: 16px;
}

.newsletter { display: none; }

.footer-legal {
  margin: 20px 0 0;
  padding: 15px 60px 0;
  border-top: 1px solid #333;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-legal p {
  color: #666;
  font-size: 11px;
  margin: 0;
}

.footer-legal ul {
  display: flex;
  gap: 20px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-legal a {
  color: #666;
  font-size: 11px;
  text-decoration: none;
}

.footer-legal a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .footer-main { flex-wrap: wrap; justify-content: center; padding: 0 30px; }
  .footer-logo { width: 100%; text-align: center; margin-bottom: 20px; }
  .footer-columns { flex-wrap: wrap; justify-content: center; gap: 30px; }
  .footer-column { text-align: center; }
  .social-links { justify-content: center; }
  .footer-legal { flex-direction: column; gap: 10px; text-align: center; padding: 15px 30px 0; }
  .footer-legal ul { justify-content: center; }
}
