:root {
    --footer-bg-color: #caa97e;
    --footer-text-color: white;
    --kontakt-link-color: #ffffff;
}

/* ================================
           DARK – prepíše len potrebné premenné
           ================================ */
body.dark-theme {
    --footer-bg-color: #011f5c;
    --footer-text-color: white;
    --kontakt-link-color: #ffffff;
}

footer {
    width: 100%;
    background-color: var(--footer-bg-color);
    color: var(--footer-text-color);
    text-align: center;
    padding: 100px 0 0 20px;
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    /* border-radius: 20px; */
    background-image: url('../img/overlay-bottom.png');
    background-repeat: no-repeat;
    background-position-y: top;
}

footer span {
    padding-right: 20px;
}

.soc-img {
    transition: all 0.2s linear;
}

.soc-img:hover {
    transform: scale(1.6);
    transition: all 0.2s linear;
}

footer p {
    text-align: center;
}

.citat {
    font-style: italic;
    /* cursor: pointer; */
    margin: 10px 0;
}

.footer-logo img {
    width: 125px;
    padding-bottom: 20px;
}

hr.ciaracitat {
    border: 1px solid rgb(0, 255, 0);
    margin: 5px 0;
}

/* .kontakt-link {
  display: flex;
  flex-direction: row;
  justify-content: center ;
  align-items: center;
  } */
.kontakt-link ul {
    padding: 0;
    list-style: none;
    display: table;
    /* width: 600px; */
    text-align: center;

}

.kontakt-link li {
    /* display: table-cell;  */
    position: relative;
    /* padding: 15px 0;*/
    margin-bottom: 15px;
}

.kontakt-link a {
    color: var(--kontakt-link-color);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.15em;
    /* display: inline-block; */
    padding: 0 10px 10px 10px;
    position: relative;
}

.kontakt-link a:after {
    background: none repeat scroll 0 0 transparent;
    bottom: 0;
    content: "";
    display: block;
    height: 2px;
    left: 50%;
    position: absolute;
    background: #d67a03;
    transition: width 0.3s ease 0s, left 0.3s ease 0s;
    width: 0;
}

.kontakt-link a:hover:after {
    width: 100%;
    left: 0;
}

/* @media screen and (max-height: 300px) {
  ul {
  margin-top: 40px;
  }
} */
@media screen and (max-width: 1201px) {
    footer {
        width: 98%;
    }
}

ul.downLink {
    list-style: none;
}

ul.downLink a {
    color: #ffffff;
    text-decoration: none;
    font-weight: bold;


}

ul.downLink a:hover {
    color: #878787;
    text-decoration: underline;
}