/*
 Theme Name: Muła
 Theme URI: https://mula.com.pl
 Description: Motyw potomny dla Zarządca Nieruchomościami Marcin Muła
 Author: Krzysztof Grzelak
 Author URI: https://krzysztofgrzelak.pl
 Template: kadence
 Version: v1
 License: GNU General Public License v2 or later
 License URI: https://www.gnu.org/licenses/gpl-2.0.html
 Text Domain: mula
*/

.hover-up {
  transition: transform 0.3s ease; /* płynne przejście */
}

.hover-up:hover {
  transform: translateY(-10px); /* podjazd o 5px w górę */
}

.footer-credit {
  font-size: 13px;
  color: #000;
}

.kt-blocks-post-grid-item {
  transition: transform 0.3s ease; /* płynne przejście */
}

.kt-blocks-post-grid-item:hover {
  transform: translateY(-10px); /* podjazd o 5px w górę */
}

.footer-credit .shine-link {
  position: relative;
  display: inline-block;
  background: linear-gradient(
    90deg,
    #000 0%,
    #219ca0 50%,
    #000 100%
  );
  background-size: 200% auto;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent !important;
  font-weight: 500;
  filter: brightness(1.2) contrast(1.3);
  animation: shineMove 3s linear infinite;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-credit .shine-link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 1px;
  background-color: #219ca0;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.footer-credit .shine-link:hover::after {
  transform: scaleX(1);
}

/* Ensure parent container doesn't override link color */
.footer-credit a {
  color: #000 !important;
}

@keyframes shineMove {
  0% {
    background-position: -100% center;
  }
  100% {
    background-position: 100% center;
  }
}

[data-section="sidebar-widgets-footer6"] {
  align-items: center !important/* wyśrodkowanie wertykalne */
}