/* === Основные стили футера === */
.thefallenmop-footer {
  width: 100%;
  background: linear-gradient(145deg, #0a0a0a 0%, #1a0a1a 100%);
  color: #ccc;
  font-family: 'Poppins', sans-serif;
  text-align: center;
  padding: 60px 20px 30px;
  border-top: 2px solid #330000;
  box-shadow: 0 -5px 25px rgba(139, 0, 0, 0.3);
  position: static;
  clear: both;
}

/* Контейнер */
.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto 30px;
}


  flex: 1 1 300px;          /* равномерно распределяет колонки */
  min-width: 250px;         /* предотвращает сжатие текста слишком сильно */
  max-width: 400px;         /* не растягивается слишком широко */
  box-sizing: border-box;   /* корректное вычисление ширины */
  height: auto !important;  /* адаптируется под содержимое */
  min-height: 0 !important; /* убираем ограничения */
  margin: 0 auto;           /* центрируем колонку */
  padding: 0 10px;          /* сбалансированные внутренние отступы */
  display: flex;
  flex-direction: column;
  align-items: center;      /* контент по центру */
  justify-content: flex-start;
  text-align: center;
}

/* === Мобильная адаптация footer-col === */
@media (max-width: 900px) {
  .footer-col {
    flex: 1 1 100%;
    max-width: 340px;
    width: 100%;
    padding: 0;
    margin-bottom: 10px;
  }
}

/* === Логотип и описание === */
.footer-logo {
  color: #ff4444;
  font-size: 26px;
  font-weight: bold;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}
.footer-about p {
  font-size: 15px;
  color: #bbb;
  line-height: 1.6;
}

/* === Заголовки секций === */
.footer-col h4 {
  color: #ff4444;
  margin-bottom: 12px;
  text-transform: uppercase;
  font-size: 15px;
  letter-spacing: 1px;
}

/* === Навигация === */
.footer-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.footer-nav li {
  margin: 5px 0;
}
.footer-nav a {
  color: #bbb;
  text-decoration: none;
  font-size: 15px;
  transition: all 0.3s;
}
.footer-nav a:hover {
  color: #ff6666;
}

/* === Соцсети === */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
}
.footer-social a {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #1a0000;
  color: #fff;
  border-radius: 50%;
  border: 1px solid #660000;
  font-size: 18px;
  transition: all 0.3s ease;
}
.footer-social a:hover {
  background: #8b0000;
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.4);
  transform: translateY(-3px);
}

/* === Нижняя часть === */
.footer-bottom {
  border-top: 1px solid #330000;
  padding-top: 20px;
  color: #888;
  font-size: 14px;
  margin-top: 10px;
}

/* === Адаптив для мобильных === */
@media (max-width: 900px) {
  .footer-container {
    flex-direction: column !important;
    align-items: center !important;
    gap: 18px !important;
  }

  .footer-col {
    width: 100%;
    max-width: 320px;
  }

  /* уменьшение блока с логотипом */
  .footer-about {
    flex: 0 1 auto !important;
    height: auto !important;
    min-height: 0 !important;
    margin-bottom: 10px !important;
    padding: 0 !important;
  }

  .footer-logo {
    font-size: 20px !important;
    margin-bottom: 6px !important;
  }

  .footer-about p {
    font-size: 13px !important;
    color: #aaa;
    line-height: 1.4 !important;
    margin: 0 auto !important;
    max-width: 90%;
  }

  /* полностью скрываем навигацию */
  .footer-nav,
  .footer-col.footer-nav,
  footer.thefallenmop-footer .footer-nav {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  .footer-social a {
    width: 34px;
    height: 34px;
    font-size: 17px;
  }

  .footer-bottom {
    font-size: 12.5px;
    color: #999;
  }
}
