/* style.css — Footer v5 Clean Minimal */
/* Максимально лёгкий, минималистичный, без анимаций и лишних эффектов */

.footer-v5 {
  background: var(--background-color, #0f0f1a);
  color: var(--text-color, #d0d0ff);
  padding: 4rem 0 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-family: system-ui, -apple-system, sans-serif;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Верхняя часть */
.footer-top {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2.5rem;
  margin-bottom: 3rem;
}

/* Логотип */
.footer-logo {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #ffffff;
}

.slogan {
  font-size: 1rem;
  opacity: 0.8;
  margin: 0;
}

/* Заголовки колонок */
.footer-column h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1.2rem;
}

/* Ссылки */
.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: #d0d0ff;
  text-decoration: none;
  font-size: 1rem;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: #ffffff;
}

/* Социальные сети */
.footer-social {
  display: flex;
  gap: 1.2rem;
  margin-top: 1rem;
}

.footer-social a {
  font-size: 1.5rem;
  color: #d0d0ff;
  transition: color 0.2s;
}

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

/* Нижняя часть */
.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  font-size: 0.95rem;
  opacity: 0.8;
}

/* Адаптивность */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}

@media (max-width: 576px) {
  .container {
    padding: 0 1.5rem;
  }

  .footer-logo {
    font-size: 1.8rem;
  }
}