
/* restaurant styles
--------------------------------------------- */
.restaurant {
    margin-top: 55px;
    overflow: hidden;
}

.restaurant:first-child {
    margin-top: 80px;
}

.restaurant .section__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 65px;
}

.restaurant .section__top-left {
    max-width: 55%;
}

.restaurant .button__custom {
    height: 48px;
    padding-left: 40px;
    padding-right: 40px;
}

.restaurant .section__title {
    font-family: Montserrat;
    font-size: 60px;
    font-style: normal;
    font-weight: 300;
    line-height: 1.1;
    letter-spacing: -0.9px;
    margin-bottom: 10px;
}

.restaurant .section__title-additional {
    color: var(--Analogue-Medium-Gray, #808284);
    font-family: Inter;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.21px;
}

.restaurant .restaurant__description {
    font-family: Montserrat;
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.05px;
}

.restaurant__gallery {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 20px;
    transition: .25s ease;
    padding-bottom: 10px;
}

.restaurant__gallery:has(.restaurant__gallery-item:last-child:hover) {
    justify-content: flex-end;
}

.restaurant__gallery-item {
    border-radius: 24px;
    overflow: hidden;
    height: 560px;
    transition: 1s ease;
    min-width: 20%;
    box-shadow: 0 0 10px 1px rgba(0, 0, 0, 0.1);
}

.restaurant__gallery-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.restaurant__gallery-item:hover {
    min-width: 70%;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
    /**/
}

@media screen and (max-width: 1199px) {
    .restaurant .section__title {
        font-size: 45px;
    }
}

@media screen and (max-width: 991px) {
    .restaurant {
        margin-top: 96px;
    }
    .restaurant:first-child {
        margin-top: 40px;
    }
    .restaurant .container {
        padding-left: 28px;
        padding-right: 28px;
    }
    .restaurant .section__title {
        font-size: 49px;
    }
    .restaurant .section__top {
        display: block;
    }
    .restaurant .section__top-left {
        max-width: none;
    }
    .restaurant .restaurant__description {
        font-size: 24px;
        margin-bottom: 32px;
    }
    .restaurant__gallery {
        gap: 16px;
		overflow-x: auto;
    }
    .restaurant__gallery-item {
        min-width: 15%;
        height: 450px;
    }
    .restaurant__gallery-item:hover {
        min-width: 90%;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .restaurant .section__title {
        font-size: 49px;
    }
}

@media screen and (max-width: 768px) {
    .restaurant .section__title-additional {
        display: block;
    }
}

@media screen and (max-width: 767px) {
    /**/
}

@media screen and (max-width: 576px) {
    .restaurant {
        margin-top: 40px;
        padding-bottom: 70px;
        position: relative;
    }
    .restaurant:first-child {
        margin-top: 40px;
    }
    .restaurant .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    .restaurant .section__top {
        margin-bottom: 32px;
    }
    .restaurant .section__top .button__custom {
        position: absolute;
        left: 20px;
        right: 20px;
        bottom: 0;
    }
    .restaurant .section__title {
        font-family: Montserrat;
        font-size: 26px;
        font-style: normal;
        font-weight: 400;
        line-height: 32px;
        /* 123.077% */
        margin-bottom: 16px;
    }
    .restaurant .restaurant__description {
        color: var(--Analogue-Medium-Gray, #808284);
        font-family: Inter;
        font-size: 12px;
        font-style: normal;
        font-weight: 400;
        line-height: normal;
        letter-spacing: 0.03px;
        margin-bottom: 0;
    }
    .restaurant__gallery {
        gap: 8px;
		overflow-x: auto;
    }
    .restaurant__gallery-item {
        height: 140px;
        border-radius: 16px;
    }
    .restaurant__gallery-item:hover {
        min-width: 80%;
    }
}
