/* style.css — Footer v2 Glass Premium */
/* Тёмное стекло, золотые акценты, лёгкий код, 100% адаптивный */

.footer-v2 {
  background: var(--background-color, rgba(20, 20, 60, 0.75));
  border-top: 1px solid rgba(255, 215, 0, 0.25);
  color: var(--text-color, #d0d0ff);
  padding: 5rem 0 3rem;
  position: relative;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 2rem;
  position: relative;
  z-index: 1;
}

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

/* Логотип и слоган */
.logo-column {
  text-align: center;
}

.footer-logo {
  font-size: 2.8rem;
  font-weight: 900;
  margin-bottom: 1rem;
  background: linear-gradient(90deg, #ffd700, #ffaa00);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.slogan {
  font-size: 1.1rem;
  opacity: 0.9;
}

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

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

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

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

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

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

.social-link {
  font-size: 1.8rem;
  color: #d0d0ff;
  transition: all 0.3s;
}

.social-link:hover {
  color: #ffd700;
  transform: translateY(-4px);
}

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

/* Адаптивность */
@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: 2.2rem;
  }
}