/* footer.css - Footer and Legal Styling */

.site-footer {
  background-color: var(--bg-surface);
  border-top: 1px solid var(--border-color);
  padding: var(--space-16) 0 var(--space-8) 0;
  /* margin-top: var(--space-8); */
}

.footer-top {
  margin-bottom: var(--space-12);
}

.footer-brand {
  margin-bottom: var(--space-6);
}

.footer-logo img {
  height: 40px;
  width: auto;
  margin-bottom: var(--space-4);
}

.footer-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  max-width: 320px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-heading);
  margin-bottom: var(--space-6);
  letter-spacing: 0.05em;
  position: relative;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 24px;
  height: 2px;
  background-color: var(--primary);
}

.footer-links {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-link a {
  font-size: 0.9rem;
  color: var(--text-muted);
  display: inline-block;
}

.footer-link a:hover {
  color: var(--primary);
  transform: translateX(4px);
}

/* Contact List specific */
.footer-contact-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-2);
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-contact-item i {
  color: var(--primary);
  font-size: 1rem;
  margin-top: 2px;
}

.footer-contact-item a:hover {
  color: var(--primary);
}

/* Social icons layout */
.footer-social-links {
  display: flex;
  gap: var(--space-3);
}

.social-link-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #f1f5f9;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition-normal);
}

.social-link-btn:hover {
  background-color: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

/* Bottom licensing area */
.footer-bottom {
  border-top: 1px solid var(--border-color);
  padding-top: var(--space-6);
}

.copyright-text {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-2);
}

.license-box {
  background-color: transparent;
  border-left: none;
  border-radius: 0;
  padding: 0;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0;
  line-height: 1.5;
}

.license-box strong {
  color: var(--text-heading);
}

.license-link {
  color: var(--secondary);
}

.license-link:hover {
  text-decoration: underline;
}