:root {
  --kc-bg: #2c2c2c;
  --kc-text: #f2f2f2;
  --kc-dim: #cfcfcf;
  --kc-accent: #2f56a6;
}

.kc-footer {
  background: var(--kc-bg);
  color: var(--kc-text);
  font-family: "Afacad", system-ui, -apple-system, Segoe UI, Roboto, Arial,
    sans-serif;
}
.container {
  width: min(1200px, 92vw);
  margin-inline: auto;
}

.kc-footer__top {
  display: grid;
  grid-template-columns: 1.2fr 2fr 1.1fr; /* brand | linkovi | kontakt */
  gap: 48px;
  padding: 56px 0 28px;
}

/* Brand */
.kc-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.kc-brand__logo {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 18px;
}
.kc-brand__tagline {
  margin: 6px 0 18px;
  color: var(--kc-dim);
  font-size: 1rem;
  text-align: center;
}
.kc-social {
  display: flex;
  gap: 3rem;
  justify-content: center;
  align-items: center;
}
.kc-social__link {
  display: grid;
  place-items: center;
  width: fit-content;
  height: fit-content;
  color: #fff;
  transition: transform 0.2s ease;
}

.kc-social__link img {
  width: 55px;
}

.kc-social__link:nth-child(2) img {
  width: 60px;
}

.kc-social__link:hover {
  transform: translateY(-2px);
}

/* Link kolone */
.kc-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.kc-links__col h4,
.kc-contact h4 {
  font-family: "League Spartan", system-ui, sans-serif;
  font-size: 1.8rem;
  line-height: 1.1;
  margin: 0 0 12px;
  font-weight: 800;
}
.kc-links__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.kc-links__col li + li {
  margin-top: 10px;
}
.kc-links__col a {
  color: var(--kc-text);
  text-decoration: none;
  opacity: 0.92;
  border-bottom: 1px solid transparent;
}
.kc-links__col a:hover {
  border-color: var(--kc-text);
}

/* Kontakt */
.kc-contact {
  font-style: normal;
}
.kc-contact p {
  margin: 0.5rem 0 1rem;
  color: var(--kc-dim);
}
.kc-contact a {
  color: var(--kc-text);
  text-decoration: none;
}

/* Bottom bar */
.kc-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  background: #1d1d1d;
  margin-top: 28px;
}
.kc-footer__bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  font-size: 0.95rem;
  color: #e6e6e6;
  gap: 12px;
}
.kc-footer__bottom-inner span:nth-child(2) {
  text-align: right;
  flex: 1;
}

@media (max-width: 1100px) {
  .kc-footer__top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .kc-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .kc-links__col {
    width: 25vw;
  }
  .kc-contact {
    width: 25vw;
  }
}

@media (max-width: 640px) {
  .kc-links {
    grid-template-columns: 1fr;
  }
  .kc-footer__bottom-inner {
    flex-direction: column;
    text-align: center;
  }
  .kc-brand__logo {
    width: 120px;
  }
  .kc-links__col {
    width: 40vw;
  }
  .kc-links {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .kc-contact {
    width: 40vw;
  }
  .kc-footer__top {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
}
