/**
 * footer.css — locuiestibine.ro
 * 3-column editorial footer
 */

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

/* Top divider strip */
.lb-footer-strip {
  height: 4px;
  background: linear-gradient(90deg, var(--lb-terra) 0%, var(--lb-forest) 100%);
}

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

/* ============================================================
   3-COLUMN GRID
   ============================================================ */
.lb-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);
}

/* Column 1 — about */
.lb-footer-brand-name {
  font-family: var(--lb-ff-heading);
  font-size: 1.8rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 14px;
  display: block;
}
.lb-footer-brand-name:hover { color: var(--lb-terra-pale); }

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

.lb-footer-socials {
  display: flex;
  gap: 10px;
}
.lb-footer-social-btn {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  transition: border-color var(--lb-transition), color var(--lb-transition), background var(--lb-transition);
}
.lb-footer-social-btn:hover {
  border-color: var(--lb-terra);
  color: var(--lb-terra);
  background: rgba(193,105,79,.1);
}
.lb-footer-social-btn svg { width: 16px; height: 16px; }

/* Column 2 & 3 — category links */
.lb-footer-col-heading {
  font-family: var(--lb-ff-body);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--lb-terra-pale);
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}

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

/* ============================================================
   BOTTOM BAR
   ============================================================ */
.lb-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);
}

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

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .lb-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .lb-footer-grid > *:first-child { grid-column: span 2; }
}

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