/* styles/footer.css – Стили подвала */

footer {
  background: #0a0a0a;
  color: #aaa;
  padding: 1rem 2rem;
  font-size: 1rem;
  border-top: 1px solid #333;
  margin-top: 1rem;
}

#footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

#footer-content p {
  margin: 0;
  white-space: nowrap;
}

.footer-social {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.social-icon img {
  width: 48px;
  height: 48px;
  filter: grayscale(100%) brightness(0.8);
  transition: filter 0.2s, transform 0.2s;
}

.social-icon img:hover {
  filter: grayscale(0%) brightness(1);
  transform: scale(1.1);
}

/* Адаптивность */
@media (max-width: 700px) {
  footer {
    padding: 1rem 1rem;
  }
  #footer-content {
    flex-direction: column;
    gap: 0.8rem;
    align-items: center;
    text-align: center;
  }
  #footer-content p {
    white-space: normal !important;
  }
  .footer-social {
    justify-content: center;
  }
}