/* ═══════════════════════════════════════════════════════════════
   FOOTER.CSS — Bádminton Perú
   Footer: grid 4 columnas + barra inferior
   → En Angular: footer.component.scss
   ═══════════════════════════════════════════════════════════════ */

/* ── Sección ──────────────────────────────────────────────────── */
.bp-footer {
  background: var(--bp-black);
  border-top: 3px solid var(--bp-red);
  padding: 48px 0 0;
}

/* ── Grid 4 columnas ──────────────────────────────────────────── */
.bp-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
}

/* ── Columna 1: marca ─────────────────────────────────────────── */
.bp-footer-logo {
  height: 40px;
  width: auto;
  display: block;
  margin-bottom: 14px;
}

.bp-footer-brand-name {
  font-weight: 800;
  font-size: 22px;
  color: var(--bp-white);
  margin-bottom: 10px;
}

.bp-footer-desc {
  font-size: 12px;
  color: var(--bp-gray);
  line-height: 1.7;
  margin-bottom: 14px;
}

.bp-footer-contact {
  font-size: 12px;
  color: #666;
  line-height: 1.9;
}

/* ── Columnas de links ────────────────────────────────────────── */
.bp-footer-col-title {
  font-weight: 700;
  font-size: 13px;
  color: var(--bp-white);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

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

.bp-footer-links a {
  font-size: 12px;
  color: var(--bp-gray);
  transition: color 0.2s;
}

.bp-footer-links a:hover {
  color: #aaa;
}

/* ── Barra inferior ───────────────────────────────────────────── */
.bp-footer-bottom {
  border-top: 1px solid var(--bp-gray-dark);
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.bp-footer-copy {
  font-size: 11px;
  color: #444;
}

.bp-footer-logo-sm {
  height: 32px;
  width: auto;
  opacity: 0.5;
}

/* ── Responsive ───────────────────────────────────────────────── */
@media (max-width: 768px) {
  .bp-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .bp-footer-brand {
    grid-column: span 2;
  }
}

@media (max-width: 480px) {
  .bp-footer-grid {
    grid-template-columns: 1fr;
  }

  .bp-footer-brand {
    grid-column: span 1;
  }
}
