/*
==================================================
 FILE: custom.css
 PURPOSE: Overrides, quick fixes, experiments
 AUTHOR: Arkadiusz Wawer
==================================================
*/

/* © Arkadiusz Wawer - All rights reserved */

.kadence-logo {
  display: block;
  width: 14em;
  height: auto;
  margin: 0 auto;
  filter: drop-shadow(0 1px 0 rgba(255,255,255,0.3))
          drop-shadow(0 2px 3px rgba(0,0,0,0.7));

}

.kadence-logo path {
  stroke: url(#goldGradient);
  stroke-width: 8;

  fill: rgba(212,175,55,0.06); /* subtelne złoto */

  stroke-dasharray: 1200;
  stroke-dashoffset: 1200;

  animation:
    drawKadence 2.5s ease-out forwards,
    goldPulse 4s ease-in-out infinite 2.5s;
}

/* Główne formatowanie kontenera tekstu w stopce */
.footer-custom-text {
  font-size: 0.9em;
  color: #ffffff;
  display: flex;             
  justify-content: center;
  text-align: center;
  align-items: center;
  gap: 0.5em;
  flex-wrap: wrap;
}

/* Stylowanie logo Kadence WP w stopce */
.footer-custom-text img {
  height: 4em;
  vertical-align: middle;
}

/* Styl domyślny dla linków */
.footer-custom-text a {
  color: #ffffff; /* biały kolor linku */
  text-decoration: none;
}

/* Styl po najechaniu */
.footer-custom-text a:hover {
  color: #a0d8ff;  /* jasnoniebieski przy hoverze */
  text-decoration: underline;
}

/* Styl dla odwiedzonych linków (zachowujemy biały) */
.footer-custom-text a:visited {
  color: #efffff;
}


@media (prefers-reduced-motion: reduce) {
  .kadence-logo path {
    animation: none;
  }
}

