/* Footer */
.footer-wrapper {
  background: #f5f5f5;
  margin-top: auto;
  padding: 40px 20px 20px;
  flex-shrink: 0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 30px;
}

.footer-branding {
  max-width: 300px;
}

.footer-logo a {
  display: block;
  line-height: 0;
}

.footer-logo img,
.footer-logo svg {
  height: 60px;
  margin-bottom: 15px;
}

.footer-tagline {
  font-family: "Roboto Slab", sans-serif;
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-social {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 15px 0;
}

.footer-social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--primary-color);
  color: white;
  font-size: 16px;
  transition: background 0.3s;
  text-decoration: none;
  overflow: hidden;
}

.footer-social a > img {
  width: 36px;
  height: 36px;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.1);
}

.footer-social a:hover {
  background: var(--primary-color-light);
  text-decoration: none;
}

.footer-nav-container {
  background: transparent;
  padding: 0;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.footer-nav-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.footer-nav-links a {
  font-family: "Roboto Slab", sans-serif;
  font-size: 13px;
  color: var(--primary-color);
}

.footer-copyright,
.footer-disclaimer {
  text-align: center;
  font-family: "Roboto Slab", sans-serif;
  font-size: 12px;
  color: #888;
  margin-top: -20px;
  /* padding-top: 10px; */
  border-top: 1px solid #ddd;
}

.footer-disclaimer {
  border-top: none;
  margin-top: 10px;
  padding-top: 0;
}

/* On mobile */
@media (max-width: 688px) {
  .footer-container {
    gap: 0px;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-nav-container {
    align-items: center;
  }
}