/* InboxScout — Shared Footer Styles */

.app-footer {
  background: #1c2e38;
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 2.5rem 4rem;
  margin-top: auto;
  position: relative;
  z-index: 1;
}

.app-footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.app-footer-logo img {
  height: 22px;
  width: auto;
  display: block;
  opacity: 0.75;
  transition: opacity 0.2s;
}
.app-footer-logo:hover img { opacity: 1; }

.app-footer-legal {
  display: flex;
  gap: 2rem;
  list-style: none;
  flex-wrap: wrap;
}

.app-footer-legal a {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.82rem;
  color: #6a9aaa;
  text-decoration: none;
  transition: color 0.2s;
}
.app-footer-legal a:hover { color: #c8dfe8; }

.app-footer-copy {
  width: 100%;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem;
  color: #4a7a8a;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 0.5rem;
}



/* Auth/onboarding pages */
.app-footer.centered {
  background: transparent;
  border-top: none;
}
.app-footer.centered .app-footer-inner {
  justify-content: center;
  text-align: center;
}
.app-footer.centered .app-footer-legal { justify-content: center; }
.app-footer.centered .app-footer-copy {
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.07);
}

@media (max-width: 700px) {
  .app-footer { padding: 2rem 1.5rem; }
  .app-footer-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .app-footer-legal { gap: 1.25rem; }
}
