/* footer.css */

/* Общий контейнер футера */
.site-footer {
  background-color: #111827; /* тёмно-синий фон */
  color: #FFFFFF;
  padding-top: 64px;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Верхняя часть футера: логотип + колонки */
.site-footer__top {
  display: flex;
  flex-wrap: wrap;

  align-items: flex-start;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;

}

/* Логотип */
.site-footer__logo img {
    height: 60px;
    display: block;
    margin-top: 12px;
}

/* Обычные колонки ссылок */
.site-footer__col {
  min-width: 160px;
}

/* Заголовки колонок */
.site-footer__heading {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #FFFFFF;
}

/* Список ссылок */
.site-footer__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-footer__list li + li {
  margin-top: 8px;
}
.site-footer__list a {
  color: #9CA3AF;
  text-decoration: none;
  transition: color 0.2s ease-in-out;
}
.site-footer__list a:hover {
  color: #FFFFFF;
}

/* Колонка соцсетей */
.site-footer__col--social .site-footer__social {
  display: flex;
  gap: 16px;
}
.site-footer__social a {
  display: inline-block;
}
.site-footer__social a img {
  width: 24px;
  height: 24px;
  filter: brightness(0) invert(1);
  transition: opacity 0.2s ease-in-out;
}
.site-footer__social a:hover img {
  opacity: 0.7;
}

/* Нижняя часть футера: копирайт */
.site-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  margin-top: 40px;
  padding: 20px 0;
  text-align: center;
}
.site-footer__bottom p {
  margin: 0;
  color: #8892A7;
  font-size: 0.85rem;
}

/* Адаптив для мобильных */
@media (max-width: 768px) {
  .site-footer__top {
    flex-direction: column;
    align-items: center;
  }
  .site-footer__col {
    text-align: center;
  }
  .site-footer__col--social .site-footer__social {
    justify-content: center;
  }
}
