/* Base footer styling */
.footer {
  background-color: #111;
  color: #fff;
  padding: 2rem 1rem;
  text-align: center;
  font-family: system-ui, sans-serif;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-social {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

a,
.footer-social a {
  color: #ccc;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

a:hover,
.footer-social a:hover {
  color: #fff;
}

/* Logo in center */
.footer-logo img {
  width: 100px;
  height: auto;
  filter: brightness(90%);
}

/* Footer bottom bar */
.footer-bottom {
  margin-top: 2rem;
  font-size: 1rem;
  color: #f9f9f9;
  border-top: 1px solid #333;
  padding-top: 1rem;
}

/* Responsive layout */
@media (max-width: 768px) {
  .footer-content {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-social {
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
  }

  .footer-logo img {
    width: 60px;
  }
}
