footer {
    background-color: #404040;
    display: grid;
    grid-template-columns: repeat(3, 400px);
    justify-content: center;
    gap: 10vw;
    padding: 50px;
    color: var(--white);
    padding-bottom: 100px;
}

@media screen and (max-width: 1738px){
    footer {
        gap: 2vw;
        background-color: #404040;
        column-gap: -1px;
        transform-origin: 26px;
        perspective: 1px;
    }
}

.foot-left,
.foot-mid,
.foot-right {
    min-width: 300px;
    min-height: 250px;
}

.foot-right {
    min-height: 100px;
}

.foot-left {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 20px;
    background-color: #404040;
}

.foot-nav {
    display: flex;
    flex-direction: column;
    gap: 10px;
    background-color: #404040;
}

.foot-nav a {
    color: var(--white);
    text-decoration: none;
}

.foot-mid {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 20px;
}

.foot-kontakt {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.foot-right {
    display: flex;
    flex-direction: column;
    justify-content: left;
    gap: 20px;
    background-color: #404040;
}

.foot-socky a {
    text-decoration: none;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.foot-socky {
    display: flex;
    justify-content: left;
    gap: 20px;
    text-align: center;
    vertical-align: middle;
    background-color: #404040;
    align-self: center;
}

@media screen and (max-width: 1279px){
    footer {
        grid-template-columns: repeat(2, 400px);
        gap: 15%;
        background-color: #404040;
    }
}

@media screen and (max-width: 950px){
    footer {
        display: grid;
        grid-template-columns: repeat(1, 300px);
        grid-auto-rows: 250px;

        /* Nastaví výšku řádků na 200px */
        gap: 0px;
    }

    footer h3 {
        font-size: 20px;
    }

    footer p {
        font-size: 16px;
    }

    .foot-socky img {
        width: 35px;
        height: 35px;
    }

    .foot-left,
    .foot-mid,
    .foot-right,
    .foot-nav {
        display: flex;
        justify-content: center;
        align-items: center;
    }
}