/* resources/css/footer.css */

/* === Основной футер === */
.site-footer {
  background: linear-gradient(180deg, #f8f5f0 0%, #e8e4dc 100%);
  border-top: 1px solid #d1cfc9;
  padding: 3rem 1rem 1.5rem;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

/* === Колонки футера === */
.footer-brand {
  grid-column: 1 / -1;
}

@media (min-width: 1024px) {
  .footer-brand {
    grid-column: 1 / 2;
  }
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin-bottom: 1rem;
  display: inline-block;
  text-decoration: none;
}

.footer-description {
  color: #64748b;
  line-height: 1.7;
  font-size: 0.95rem;
  margin-bottom: 1.25rem;
  max-width: 320px;
}

.footer-contact {
  font-size: 0.9rem;
  color: #64748b;
}

.footer-contact a {
  color: #4a7c59;
  text-decoration: none;
  font-weight: 500;
}

.footer-contact a:hover {
  text-decoration: underline;
}

/* === Секции ссылок === */
.footer-section-title {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 1rem;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: #64748b;
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.2s ease;
  line-height: 1.5;
}

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

/* === Секция поддержки === */
.footer-support {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
}

.footer-support-title {
  font-size: 1rem;
  font-weight: 600;
  color: #2d3748;
  margin-bottom: 0.75rem;
}

.footer-support-text {
  font-size: 0.9rem;
  color: #64748b;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.footer-donate-btn {
  display: inline-block;
  background: linear-gradient(135deg, #c9a961 0%, #b8964e 100%);
  color: #2d3748;
  padding: 0.5rem 1.25rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-donate-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(201, 169, 97, 0.4);
  background: linear-gradient(135deg, #b8964e 0%, #a38542 100%);
}

/* === Нижняя строка === */
.footer-bottom {
  max-width: 1200px;
  margin: 2rem auto 0;
  padding-top: 1.5rem;
  border-top: 1px solid #d1cfc9;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  text-align: center;
}

@media (min-width: 640px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-copyright {
  color: #94a3b8;
  font-size: 0.85rem;
}

.footer-legal {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

@media (min-width: 640px) {
  .footer-legal {
    justify-content: flex-end;
  }
}

.footer-legal a {
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.2s ease;
}

.footer-legal a:hover {
  color: #4a7c59;
}

.footer-legal span {
  color: #cbd5e1;
}
