/* Footer */
/* footer.css */
.site-footer {
  position: relative;
  width: 100vw;       /* viewport-width so it spans edge-to-edge */
  left: 50%;           /* shift its left edge halfway across… */
  margin-left: -50vw;  /* …then pull it back half the viewport width */
  background-color: white; /* or whatever your footer background is */
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}
/* keep your content constrained as before */
.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer-brand {
  flex: 1 1 200px;
  margin-right: 2rem;
}
.footer-logo {
  max-width: 150px;
  margin-bottom: 0.5rem;
}
.tagline {
  font-style: italic;
  font-size: 0.9rem;
}
.footer-nav {
  flex: 1 1 150px;
  margin-right: 2rem;
}
.footer-nav h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.footer-nav ul {
  list-style: none;
  padding: 0;
}
.footer-nav li {
  margin-bottom: 0.5rem;
}
.footer-nav a {
  color: #333;
  text-decoration: none;
}
.footer-nav a:hover {
  text-decoration: underline;
}
.footer-contact {
  flex: 1 1 200px;
}
.footer-contact h4 {
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}
.footer-contact p {
  margin: 0.3rem 0;
}
.footer-contact a {
  color: #333;
  text-decoration: none;
}
.social-icons a {
  margin-right: 0.5rem;
  display: inline-block;
  vertical-align: middle;
}
.social-icons img {
  width: 24px;
  height: 24px;
}
/* Add this (or update your existing) */
.footer-bottom {
  position: relative;
  width: 100vw;
  left: 50%;
  margin-left: -50vw;
  max-width: none;
  background-color: var(--highlight);
  text-align: center;
  padding: 1rem 0;
  font-size: 0.9rem;
}

@media (max-width: 600px) {
  .footer-container {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
  }
  .footer-brand,
  .footer-nav,
  .footer-contact {
    margin: 0;
    width: 100%;
  }
  .footer-nav ul, .footer-contact ul {
    justify-content: center;
  }
  .social-icons, .contact-list {
    justify-content: center;
  }
}