/* ═══════════════════════════════════════════════════
   ARIO FOOTER CSS
   Plik: /wp-content/themes/astra-child/assets/css/ario-footer.css
   Ładowany: globalnie
═══════════════════════════════════════════════════ */

/* ── WYŁĄCZ ORYGINALNĄ STOPKĘ ASTRY ── */
.site-footer,
.ast-small-footer,
#colophon,
.footer-widget-area,
.ast-footer-copyright {
  display: none !important;
}

/* ── PASEK KOLOROWY NAD STOPKĄ ── */
.ario-footer-teal-bar {
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--c-accent) 0%,
    var(--c-accent2) 50%,
    var(--c-gold) 100%
  );
}

/* ── FOOTER WRAPPER ── */
.ario-footer {
  background: var(--c-ink);
  color: rgba(255,255,255,.6);
  padding: 64px 0 32px;
  font-family: var(--ff-body);
}

/* ── CONTAINER ── */
.ario-footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── GRID 4 KOLUMNY ── */
.ario-footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

/* ── KOLUMNA 1 — BRAND ── */
.ario-footer-logo {
  margin-bottom: 16px;
}
.ario-footer-logo img {
  height: 40px;
  width: auto;
  display: block;
  /* Zamień ciemne logo na białe */
  filter: brightness(0) invert(1);
}
.ario-footer-desc {
  font-size: 14px;
  line-height: 1.7;
  max-width: 260px;
  margin-bottom: 12px;
  color: rgba(255,255,255,.55);
}
.ario-footer-address {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  line-height: 1.6;
}
.ario-footer-address a {
  color: rgba(255,255,255,.4);
  transition: color .15s;
}
.ario-footer-address a:hover {
  color: var(--c-accent2);
}

/* ── KOLUMNY 2-4 ── */
.ario-footer-col-title {
  font-family: var(--ff-display) !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: .1em !important;
  text-transform: uppercase !important;
  color: rgba(255,255,255,.85) !important;
  margin-bottom: 16px !important;
  padding-bottom: 0 !important;
  border-bottom: none !important;
}

.ario-footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ario-footer-col li {
  margin-bottom: 10px;
}
.ario-footer-col a {
  font-size: 14px;
  color: rgba(255,255,255,.55);
  text-decoration: none;
  transition: color .15s;
  display: inline-block;
}
.ario-footer-col a:hover {
  color: var(--c-accent2);
}

/* Wyróżniony link SEO */
.ario-footer-featured {
  color: var(--c-accent2) !important;
  font-weight: 600 !important;
}

/* ── PASEK DOLNY ── */
.ario-footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .ario-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .ario-footer-brand {
    grid-column: 1 / -1;
  }
  .ario-footer-desc {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .ario-footer {
    padding: 48px 0 24px;
  }
  .ario-footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .ario-footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }
}
