/* Footer (site-footer)
   Ładowany bezpośrednio (nie wymaga npm run build).
   Zakres pod .site-footer, żeby nie kolidować ze starym footer.scss. */

.site-footer {
  background: #0e0d0b;
  padding: 0;
  display: block;
  width: 100%;
}

.site-footer .sf-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding: 60px 0 50px;
}

/* Kolumna z logo */
.site-footer .sf-logo {
  display: inline-block;
  margin-bottom: 18px;
}
.site-footer .sf-logo svg {
  height: 34px;
  width: auto;
}
.site-footer .sf-logo svg path {
  fill: #fff !important;
}
.site-footer .sf-desc {
  color: rgba(255, 255, 255, 0.6);
  font-size: 15px;
  line-height: 1.6;
  margin: 0 0 16px;
  max-width: 340px;
}
.site-footer .sf-email {
  display: inline-block;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color .25s ease;
}
.site-footer .sf-email:hover {
  color: #ffb900;
}

/* Ikony social */
.site-footer .sf-social {
  display: flex;
  gap: 10px;
  margin-top: 22px;
  
}
.site-footer .sf-social a {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: border-color .25s ease, background .25s ease;
}
.site-footer .sf-social a:hover {
  border-color: #ffb900;
}
.site-footer .sf-social img {
  width: 21px;
  height: 21px;
  object-fit: contain;
  filter:invert(1);
}

/* Nagłówki kolumn */
.site-footer .sf-heading {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0 0 18px;
}

/* Menu */
.site-footer .footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-nav li {
  margin-bottom: 12px;
}
.site-footer .footer-nav a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color .25s ease;
}
.site-footer .footer-nav a:hover {
  color: #fff;
}

/* Newsletter (na razie sam tekst) */
.site-footer .sf-newsletter .sf-desc {
  max-width: none;
}

/* Dolny pasek */
.site-footer .sf-copy {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 18px 0;
}
.site-footer .sf-copy p {
  margin: 0;
  text-align: center;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
}

/* Responsywność */
@media (max-width: 991px) {
  .site-footer .sf-top {
    grid-template-columns: 1fr 1fr;
    gap: 32px 40px;
    padding: 48px 0 40px;
  }
}
@media (max-width: 575px) {
  .site-footer .sf-top {
    grid-template-columns: 1fr;
  }
}
