/* restaurant */

.restaurant__text {
    font-family: var(--font-family);
    font-size: 28px;
    line-height: 177%;
    text-align: justify;
}

/* location-menu */

.section-wrapper--menu {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.menu__row {
    display: flex;
    justify-content: space-between;
}

.row__text-sec {
    color: var(--text-color-gray);
    width: 43%;
}

.row__title {
    font-family: var(--second-family);
    font-weight: 400;
    font-size: 48px;
    line-height: 137%;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.row__text {
    font-family: var(--font-family);
    font-weight: 400;
    font-size: 24px;
    line-height: 161%;
    margin-bottom: 30px;
}

.row__img-sec {
    position: relative;
    width: 50%;
    height: 380px;
}

.row__img-sec img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.button--menu {
    display: inline-block;
    padding: 20px 88px;
}

.section-title--gallery {
    margin-bottom: 40px;
    text-align: center;
}

@media (max-width: 1024px) {
    .section-wrapper--menu {
        gap: 50px;
    }

    .menu__row {
        flex-direction: column;
        position: relative;
        padding-top: 65px;
        gap: 22px;
    }

    .row__title {
        width: 100%;
        text-align: center;
        position: absolute;
        top: 0;
        font-size: 32px;
    }

    .row__text-sec {
        padding-top: 0;
        order: 2 !important;
        width: 100%;
    }

    .row__img-sec {
        order: 1 !important;
        width: 100%;
    }

    .section-wrapper--tables {
        display: flex;
        flex-direction: column;
        gap: 50px;
    }
}

@media (max-width: 768px) {
    .restaurant__text {
        font-size: 14px;
    }

    .row__img-sec {
        height: 190px;
    }

    .row__text {
        font-size: 14px;
    }

    .button--item--menu {
        width: 100%;
    }
}
