/* footer.css */
.site-footer {
  padding: 4rem 0;
  background-color: var(--clr-bg);
  border-top: 1px solid var(--clr-glass-border);
}

.footer-container {
  text-align: center;
}

.footer-logo {
  height: 180px;
  width: auto;
  margin-bottom: 0px;
}

.footer-subtitle {
  color: var(--clr-text-muted);
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  gap: 2rem;
  justify-content: center;
  margin-bottom: 3rem;
}

.footer-email {
  color: var(--clr-accent);
  text-decoration: none;
  font-weight: 600;
}

.footer-social {
  color: var(--clr-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-social:hover {
  color: var(--clr-accent);
}

.footer-copyright {
  font-size: 0.8rem;
  color: var(--clr-text-muted);
}

@media (max-width: 768px) {
  .footer-links {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .footer-logo {
    height: 120px;
  }
}