/* ══════════════════════════════════════════════════════════
   FOOTER — zdieľaný homepage aj /shop
   Vyňaté zo sections.css 19. 8. 2026 pri presune shopu na
   vlastnú stránku, aby /shop nemusel ťahať štýly sekcií,
   ktoré na ňom nie sú. Jediný zdroj — needituj kópiu inde.
══════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════ */
#footer{
  background: #03040a;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
  padding: clamp(3rem, 6vh, 5rem) clamp(1.25rem, 5vw, 2rem) clamp(1.5rem, 3vh, 2.5rem);
}

.footer-wrap{
  max-width: 1080px;
  margin: 0 auto;
}

.footer-top{
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2.5rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

/* Brand */
.footer-brand{
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-logo{
  width: 80px;
  height: auto;
  filter: drop-shadow(0 0 12px rgba(33, 150, 243, 0.35));
}

.footer-tagline{
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.35);
  line-height: 1.6;
}

/* Nav */
.footer-nav{
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  align-items: center;
}

.footer-link{
  font-family: var(--font-condensed);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-link:hover{ color: var(--white); }

/* Social */
.footer-social{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.75rem;
}

.footer-social__label{
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.footer-social__links{
  display: flex;
  gap: 0.6rem;
}

.social-btn{
  width: 42px;
  height: 42px;
  border-radius: 6px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: all 0.2s ease;
}

.social-btn:hover{
  border-color: var(--blue);
  background: rgba(33, 150, 243, 0.12);
  color: var(--white);
}

/* Partner bar */
.footer-partner{
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-partner__label{
  font-family: var(--font-condensed);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
}

.footer-partner__logo{
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: 0.06em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-partner__logo svg{
  color: var(--blue);
}

.footer-partner__sep{
  color: rgba(255, 255, 255, 0.15);
}

.footer-partner__desc{
  font-family: var(--font-condensed);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.3);
}

/* Bottom bar */
.footer-bottom{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.footer-copy{
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.2);
  font-family: var(--font-condensed);
  letter-spacing: 0.04em;
}

/* Kredit na výšivku merchu — o stupeň svetlejší ako copyright + podčiarknutie,
   aby bol rozoznateľne klikateľný, ale stále nenápadný. */
.footer-credit{
  font-family: var(--font-condensed);
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.32);
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: 1px;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.footer-credit:hover,
.footer-credit:focus-visible{
  color: var(--white);
  border-bottom-color: var(--blue);
}

.footer-credit__sep{
  color: rgba(255, 255, 255, 0.15);
  margin: 0 0.35rem;
}

.footer-bottom__links{
  display: flex;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-link--sm{
  font-size: 0.75rem;
  letter-spacing: 0.06em;
}
@media (max-width: 560px){
  .footer-top{
    grid-template-columns: 1fr;
  }

  .footer-social{
    align-items: flex-start;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }

  /* Kredit na vlastný riadok — inline sa lámal uprostred frázy */
  .footer-credit{
    display: inline-block;
    margin-top: 0.4rem;
  }

  .footer-credit__sep{
    display: none;
  }
}
