/**
 * footer.css — mamasitataro.ro
 * 3-column editorial footer (mt- prefix, deep red)
 */

.mt-footer {
  background: var(--mt-text);
  color: rgba(255,255,255,.75);
  margin-top: 0;
}

.mt-footer-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--mt-rose) 0%, var(--mt-rose-dark) 100%);
}

.mt-footer-inner {
  max-width: var(--mt-container);
  margin: 0 auto;
  padding: 0 var(--mt-gap);
}

.mt-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  padding: 52px 0 40px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.mt-footer-brand-name {
  font-family: var(--mt-ff-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}
.mt-footer-brand-name:hover { color: var(--mt-rose-light); }

.mt-footer-about {
  font-size: .88rem;
  line-height: 1.75;
  color: rgba(255,255,255,.62);
  margin-bottom: 24px;
  max-width: 320px;
}

.mt-footer-socials { display: flex; gap: 10px; }

.mt-footer-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease;
}
.mt-footer-social-btn:hover {
  border-color: var(--mt-rose-light);
  color: var(--mt-rose-light);
  background: rgba(198,40,40,.15);
}
.mt-footer-social-btn svg { width: 16px; height: 16px; }

.mt-footer-col-heading {
  font-family: var(--mt-ff-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--mt-rose-light);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

.mt-footer-links { display: flex; flex-direction: column; gap: 2px; }
.mt-footer-links a {
  font-size: .85rem;
  color: rgba(255,255,255,.58);
  padding: 5px 0;
  transition: color 180ms ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.mt-footer-links a::before {
  content: '→';
  font-size: .7rem;
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
  transform: translateX(-4px);
}
.mt-footer-links a:hover { color: #fff; }
.mt-footer-links a:hover::before { opacity: 1; transform: translateX(0); }

.mt-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  font-size: .75rem;
  color: rgba(255,255,255,.38);
}

.mt-footer-legal {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.mt-footer-legal a { color: rgba(255,255,255,.42); transition: color 180ms ease; }
.mt-footer-legal a:hover { color: rgba(255,255,255,.75); }

@media (max-width: 900px) {
  .mt-footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .mt-footer-grid > *:first-child { grid-column: span 2; }
}
@media (max-width: 540px) {
  .mt-footer-grid { grid-template-columns: 1fr; gap: 32px; padding: 36px 0 28px; }
  .mt-footer-grid > *:first-child { grid-column: span 1; }
  .mt-footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
  .mt-footer-legal { gap: 12px; }
}
