@import url('globals.css');

footer {
  font-family: 'Nunito', system-ui, sans-serif;
  background: rgba(255, 255, 255, 0.5);
  border-top: 1px solid #77778f;
  /* margin-top: 2rem; */
}

.footer-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.0rem;
  font-size: 0.8rem;
  color: #666;
}

.footer-inner a {
  color: #555;
  transition: color var(--transition);
  text-decoration: none;
}

.footer-inner a:hover {
  color: var(--brand);
}

.footer-links {
  display: flex;
  gap: 1.25rem;
  font-weight: 800;
  color: var(--brand);
}

.footer-address {
  text-align: center;
  line-height: 1.5;
}

.footer-logo img {
  max-width: 90px;
  height: auto;
  opacity: 0.6;
  transition: opacity var(--transition);
}

.footer-logo img:hover {
  opacity: 1;
}

@media (max-width: 640px) {
  .footer-inner {
    flex-direction: column;
    gap: 0.5rem;
    text-align: center;
    padding: 0.75rem 1rem;
  }

  .footer-links {
    justify-content: center;
  }
}