﻿/*
   Talkiva - css\components\footer.css
   Footer
   Extracted verbatim from the original style.css. No rules altered.
*/

/* ---------- 13. Footer ---------- */
.footer {
  background: var(--bg-deep);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 80px 0 0;
  position: relative;
  z-index: 2;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.footer-brand p {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.92rem;
  margin: 16px 0 24px;
  max-width: 300px;
}
/* ---- Image logo in the footer brand column ---- */
.footer-brand .logo { align-items: flex-start; }
.footer-brand .logo-img {
  display: block;
  height: 44px;
  width: auto;
  transition: transform 0.4s var(--ease-out);
}
.footer-brand .logo:hover .logo-img { transform: scale(1.04); }
@media (max-width: 480px) {
  .footer-brand .logo-img { height: 36px; }
}
.social { display: flex; gap: 16px; }
.social a {
  width: 42px; height: 42px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all 0.35s var(--ease-out);
}
.social a:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(239, 27, 67, 0.4);
}
.footer h4 {
  font-family: var(--font-head);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: #fff;
}
.footer-links a {
  display: flex;
  align-items: center;
  gap: 0;
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.9rem;
  transition: color 0.3s, transform 0.3s var(--ease-out);
}
.footer-links a:hover { color: #fff; transform: translateX(6px); }
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.85rem;
}
.footer-bottom a { color: rgba(255, 255, 255, 0.65); transition: color 0.3s; }
.footer-bottom a:hover { color: var(--primary-soft); }
.footer-legal { display: flex; gap: 24px; flex-wrap: wrap; }

