/*
 * Footer CSS: Background, credits, and Mayor's office logo
 */

.main-footer {
  background-color: #1a1a1a;
  color: #fff;
  padding: 5rem 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-left {
  flex: 1;
}

.footer-left p {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

.footer-left p:first-child {
  color: #fff;
  font-weight: 500;
  margin-bottom: 0.75rem;
}

.footer-right {
  flex: 0 0 auto;
}

.footer-logo {
  max-height: 85px;
  width: auto;
  object-fit: contain;
  transition: var(--transition-smooth);
}

.footer-logo:hover {
  filter: grayscale(0) brightness(1);
  transform: scale(1.05);
}

/* Responsive Footer */
@media (max-width: 1024px) {
  .footer-container {
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .main-footer {
    padding: 4rem 0;
    text-align: center;
  }
  
  .footer-container {
    flex-direction: column;
    gap: 3.5rem;
  }
  
  .footer-left p {
    font-size: 0.9rem;
  }
  
  .footer-logo {
    max-height: 70px;
  }
}

@media (max-width: 480px) {
  .footer-logo {
    max-height: 60px;
  }
}
