/* ============================================================
   FOOTER STYLES
   webbuilddev-theme/assets/css/footer.css
   ============================================================ */

/* ── FOOTER WRAPPER ─────────────────────────────────────────── */
.wbd-footer {
  background: var(--surface);
  border-top: 1px solid var(--border);
  padding: 60px 6vw 30px;
}

/* ── TOP GRID (brand + link columns) ───────────────────────── */
.wbd-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 4rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}

/* ── BRAND COLUMN ───────────────────────────────────────────── */
.wbd-footer__brand p {
  font-size: .83rem;
  color: var(--white-soft);
  line-height: 1.8;
  margin-top: 1rem;
  max-width: 280px;
}

/* ── LINK COLUMNS ───────────────────────────────────────────── */
.wbd-footer__col h5 {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 1rem;
  letter-spacing: .14em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.wbd-footer__col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.wbd-footer__col a {
  font-size: .82rem;
  color: var(--white-soft);
  text-decoration: none;
  transition: color .2s;
}

.wbd-footer__col a:hover,
.wbd-footer__col a:focus {
  color: var(--orange-bright);
}

/* ── BOTTOM BAR ─────────────────────────────────────────────── */
.wbd-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.wbd-footer__bottom p {
  font-size: .75rem;
  color: rgba(255,255,255,.35);
}

.wbd-footer__bottom a {
  color: var(--orange);
  text-decoration: none;
}

.wbd-footer__bottom a:hover {
  color: var(--orange-bright);
}

/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 900px) {
  .wbd-footer__top {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 560px) {
  .wbd-footer__top {
    grid-template-columns: 1fr;
  }

  .wbd-footer__bottom {
    flex-direction: column;
    text-align: center;
  }
}
