/* ========== GO-UP BUTTON – GOOEY BLOB ========== */
:root{
  --go-up: #3b035b;
}
.go-up{
  position: fixed;
  right: 30px;
  bottom: 30px;
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 50%;
  background: var(--go-up);
  color: #d5d5d5;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0 0 rgba(0,255,136,0.4);
  transition: transform .3s, box-shadow .4s;
  animation: pulse 2s infinite;
  z-index: 9999;
  opacity: 0;
  transform: scale(0);
}
.go-up.show{ opacity: 1; transform: scale(1); }
@keyframes pulse{
  0%   {box-shadow: 0 0 0 0 rgba(230, 0, 255, 0.6);}  
  70%  {box-shadow: 0 0 0 12px rgba(0,255,136,0);}  
  100% {box-shadow: 0 0 0 0 rgba(0,255,136,0);}  
}
.go-up:hover{ transform: scale(1.1); }
.go-up svg{ width: 24px; height: 24px; }


/* ===== Rozbudowany Footer ===== */
.site-footer {
  background: linear-gradient(135deg,
    #12091c 0%,   /* bardzo ciemny fiolet */
    #06091a 40%,  /* głęboki granat */
    #031710 100%  /* bardzo ciemna zieleń */
  );
  color: #ccc;
  font-family: 'Inter', sans-serif;
  text-align: center;
  padding: 40px 20px;
}


.footer-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4rem 2rem 2rem;
  justify-items: center; /* WYŚRODKOWANIE kolumn */
}
.fw-col {
  align-items: center;
}
.fw-col h4 {
  color: #fff;
  margin-bottom: 1rem;
  font-size: 1.2rem;
  position: relative;
  display: inline-block;
}
.fw-col h4::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #00e5ff;
}
.footer-logo {
  max-width: 120px;
  filter: brightness(0) invert(1);
  margin: 0 auto 1rem;
  display: block;
}

/* Contact info */
.contact-info {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: inline-block;
  text-align: left; /* zachowaj ikony i tekst w jednej linii */
}
.contact-info li {
  margin-bottom: .75rem;
  display: flex;
  align-items: center;
}
.contact-info li i {
  margin-right: .5rem;
  color: #00e5ff;
}

/* Recent posts */
.recent-posts ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.recent-posts li { margin-bottom: .75rem; }
.recent-posts a {
  color: #ddd;
  text-decoration: none;
  transition: color .3s;
}
.recent-posts a:hover { color: #00e5ff; }

/* Contact form */
.contact-form form {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  align-items: center;
}
.contact-form input,
.contact-form textarea {
  padding: .75rem;
  border: none;
  border-radius: 4px;
  background: #222;
  color: #fff;
  width: 100%;
  max-width: 300px;
}
.contact-form button {
  padding: .75rem 2rem;
  border: none;
  background: #00e5ff;
  color: #111;
  border-radius: 4px;
  cursor: pointer;
  transition: background .3s;
}
.contact-form button:hover { background: #008fb3; }

/* Map */
.map-wrapper {
  border: 2px solid #222;
  border-radius: 4px;
  overflow: hidden;
  max-width: 320px;
  min-height: 400px;
  margin: 0 auto;
}

/* Footer bottom */
.footer-bottom {
  border-top: 1px solid #222;
  padding: 1rem 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.footer-bottom p {
  margin: 0;
  font-size: .85rem;
  color: #777;
}
.policy-links {
  display: flex;
  gap: .8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.policy-links a {
  color: #777;
  text-decoration: none;
  transition: color .3s;
}
.policy-links a:hover { color: #00e5ff; }

/* Social */
.footer-bottom .social {
  display: flex;
  gap: .6rem;
  justify-content: center;
}
.footer-bottom .social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #222;
  border-radius: 50%;
  color: #ddd;
  transition: background .3s, transform .3s;
}
.footer-bottom .social a:hover {
  background: #00e5ff;
  color: #111;
  transform: scale(1.1);
}

/* Responsywność */
@media(max-width:768px) {
  .footer-widgets { padding: 3rem 1rem; }
  .footer-bottom { text-align: center; }
}

.form-status {
  margin-bottom: .8rem;
  min-height: 1.25rem;
  font-size: .95rem;
  line-height: 1.3;
  transition: opacity .25s ease, transform .25s ease;
  opacity: 0;
}
.form-status.is-success,
.form-status.is-error{
  opacity: 1;
  padding: .75rem .9rem;
  border-radius: 10px;
  backdrop-filter: blur(6px);
  display: inline-block;
}
.form-status.is-success{
  color: #0f0f0f;
  background: linear-gradient(180deg, rgba(45,212,109,.9), rgba(45,212,191,.15));
  border: 1px solid rgba(45,212,191,.45);
}
.form-status.is-error{
  color: #3a0a12;
  background: linear-gradient(180deg, rgba(255,88,118,.25), rgba(255,88,118,.15));
  border: 1px solid rgba(255,88,118,.45);
}
