


/* Футер */
.footer {
  background-color: #23272f;
  color: #e5e7eb;
  padding: 48px 0 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: flex-start;
  margin-bottom: 0;
}
.footer-logo {
  font-family: 'Pacifico', cursive;
  font-size: 2rem;
  margin-bottom: 18px;
  color: #27ae60;
  letter-spacing: 0.03em;
}
.footer-about {
  color: #a0aec0;
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
}
.footer-contacts {
  margin-bottom: 1.2rem;
}
.footer-heading {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-link {
  color: #a0aec0;
  transition: color 0.3s;
}

.footer-link:hover {
  color: white;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 8px;
  color: #e5e7eb;
  font-size: 1rem;
}
.contact-item i {
  color: #27ae60;
  font-size: 1.2rem;
}
.contact-item a {
  color: #e5e7eb;
  text-decoration: none;
  transition: color 0.2s;
}
.contact-item a:hover {
  color: #27ae60;
}
.social-links {
  display: flex;
  gap: 18px;
  margin-top: 0.5rem;
}
.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: #a0aec0;
  background: #23272f;
  border-radius: 50%;
  font-size: 1.3rem;
  transition: background 0.2s, color 0.2s;
}
.social-link:hover {
  background: #27ae60;
  color: #fff;
}
.footer-bottom {
  border-top: 1px solid #374151;
  padding: 22px 0 12px 0;
  text-align: center;
  color: #a0aec0;
  font-size: 0.98rem;
  margin-top: 36px;
}

/* Адаптивность */
@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .footer-logo {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .footer {
    padding: 32px 0 0 0;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .footer-logo {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  .footer-about {
    font-size: 0.97rem;
  }
  .footer-bottom {
    font-size: 0.92rem;
    margin-top: 18px;
    padding: 16px 0 8px 0;
  }
}