/* keller.css */

.keller {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px;
    background-color: #000;
    padding: 20px 20px;
    align-items: start; /* 🔥 ВАЖНО */
    /* border: solid 2px yellow; */
  }

/* БРЕНД */
.keller-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
    /* border: solid 2px yellow; */
}

.footer-logo {
    margin: 0;
    font-size: 20px;
    letter-spacing: 1px;
    color: #D6BE72;
    /* border: solid 2px yellow; */
}

/* СОЦСЕТИ */
.footer-socials {
    display: flex;
    gap: 14px;
    padding-bottom: 50px;
    /* border: solid 2px yellow; */
}

.social {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid #D6BE72;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .25s ease;
}

.social svg {
    width: 20px;
    height: 20px;
    fill: #D6BE72;
}

.social:hover {
    background-color: #D6BE72;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(214,190,114,.35);
}

.social:hover svg {
    fill: #173B3F;
}

/* КОЛОНКИ */
.keller-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
    text-align: left;
    /* border: solid 2px yellow; */
}

.keller-zag {
    font-size: 16px;
    font-weight: 600;
    color: #D6BE72;
    margin-bottom: 6px;
}

.keller-text,
.keller-links a {
    font-size: 14px;
    color: #D6BE72;
    text-decoration: none;
}

.keller-links a:hover {
    text-decoration: underline;
}

.footer-copy,
.footer-mail a {
    font-size: 14px;
    color: #D6BE72;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

#scrollTopBtn {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.18);
  transform: scale(0);
  transition: transform 0.2s ease;
  z-index: 999;
  background-color: #d6be72;
}

