footer{
    background-color: var(--orange);
    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
    }
}

.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;
}

.foot-nav{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.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;
}
.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;
}

@media screen and (max-width: 1279px){
    footer{
        grid-template-columns: repeat(2, 400px);
        gap: 15%;
    }
}

@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;
    }
}