.menu {
    padding-bottom:40px
}

.menu-container {
    width: 100%;
    margin: 0;
    padding: 0;
}

                                            /* Сетка карточек */
.menu-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Карточка меню */
.menu-card {
    border-radius: 25px;
    width: 25%;
    position: relative;
    overflow: hidden;
}

.menu-card-link {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
}

.menu-card-link::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
     background: rgba(0, 0, 0, 0.3);;
    z-index: 1;
    pointer-events: none;
}

.menu-card-image {
    width: 100%;
    height: auto;
    display: block;
}

.menu-card-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    padding: 20px;
    background: none;
    color: #FFFFFF;
    text-align: center;
    z-index: 2;
    pointer-events: none;
}

.menu-card-text {
    font-size: 28px;
    margin: 0;
    text-transform: uppercase;
}

                                                /* Адаптивность */
@media (max-width: 1200px) {
    .menu-card {
        width: 25%;
    }
}

@media (max-width: 992px) {
    .menu-card {
        width: 33.333%;
    }
}

@media (max-width: 768px) {
    .menu-card {
        width: 50%;
    }
    
    .menu-card-text {
        font-size: 24px;
    }
}


@media (max-width: 540px) {
    .menu-card {
        width: 100%;
    }
    
    .menu-card-content {
        padding: 15px;
    }
    
    .menu-card-text {
        font-size: 28px;
    }

}