body {
    overflow-x: hidden;
}

.intro-wrapper {
    width: 100%;
    max-width: 550px;
    color: rgb(231, 231, 231);
    padding-bottom: 120px;
    /* padding: 0 1.5rem; */
}

.restaurant-logo img {
    border-radius: 2rem;
    max-width: 180px;
    padding: 0.4rem;
    filter: drop-shadow(0px -4px 8px #000000b8);
    width: 100%;
    padding: 1rem;
    aspect-ratio: 1 / 1;
}

.restaurant-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    /* position: absolute; */
    top: 180px;
    right: 50%;
    /* transform: translateX(50%); */
    margin-top: -120px;
    gap: 0.5rem;
}

.restaurant-name h1 {
    font-size: 2.8rem;
}

.restaurant-description p {
    /* max-width: 320px; */
    text-align: justify;
    color: #d2d2d2;
    font-size: 0.9rem;
}

.header-bg {
    position: relative;
}

.header-bg img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.dark-overlay {
    width: 100%;
    /* background: #000000; */
    background: linear-gradient(0deg, #000 15%, #ffffff00 100%);
    height: 85px;
    bottom: 0;
    position: absolute;
}

.restaurant-description{
    width: 88%;
    margin-bottom: 1rem;
}

.go-to-menu-button{
    width: 88%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    color: #292929;
    font-size: 1.1rem;
    border-radius: 3rem;
    max-width: 380px;
    bottom: 20px;
    height: 48px;

}

.go-to-menu-button-fixed {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fafafa;
    color: #292929;
    font-size: 1.1rem;
    border-radius: 3rem;
    position: fixed;
    max-width: 350px;
    right: 50%;
    transform: translateX(50%);
    box-shadow: 0 0 23px 4px #00000061;
    height: 48px;
    /* display: none; */
    bottom: -70px;
    transition: bottom 0.4s ease-in-out;
}

.show-go-to-menu-button{
    /* display: flex; */
    bottom: 20px;
    transition: bottom 0.4s ease-in-out;
}

.open-close-status {
    margin-top: 70px;
    display: flex;
    gap: 0.4rem;
    font-size: 0.9rem;
    align-items: center;
}

.open-close-status__circle {
    width: 14px;
    height: 14px;
    background: #00be09;
    border-radius: 50%;
    animation: status-circle-animation 2s infinite;
}

.open-close-status__circle.closed {
    background: rgb(224, 34, 34);
}

@keyframes status-circle-animation {

    0%,
    100% {
        transform: scale(1.15);
        filter: grayscale(0);

    }

    50% {
        transform: scale(1);
        filter: grayscale(0.5);
    }
}

.working-time-container {
    display: flex;
    overflow-x: auto;
    margin-top: 1rem;
    gap: 1rem;
    padding-bottom: 0.8rem;
}

.day-time-container {
    display: flex;
    gap: 0.4rem;
    background: #3b3b3b;
    padding: 1rem;
    /* width: 190px; */
    border-radius: 0.7rem;
    flex-shrink: 0;
    justify-content: center;
    align-items: center;
    font-size: 0.85rem;
}

.day-time-container__day {
    padding-left: .3rem;
    border-left: 1px solid #5b5b5b;
}

.day-holiday {
    background: #9f2b2b;
}

.day-holiday .day-time-container__day {
    border-left: 2px solid #ffffff5d;
}

.day-today {
    background: #dadada;
    color: #272727;
}

.intro-body {
    padding: 0 1.4rem;
}

.contact-us {
    margin-top: 4rem;
}

.contact-us__phone a {
    padding: 1rem;
    display: flex;
    background: #3b3b3b;
    width: fit-content;
    margin-top: 0.8rem;
    border-radius: 0.7rem;
    align-items: center;
    gap: 0.7rem;
}

.contact-us__phone svg {
    width: 27px;
    height: 27px;
    fill: #b8b8b8;
}

.contact-us__phone span {
    margin-top: 5px;
    letter-spacing: 1px;
}

.contacts-list {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    padding-bottom: 0.8rem;
}

.address-container {
    margin-top: 4rem;
}

.address-container iframe {
    height: 240px;
    border-radius: 0.8rem;
    margin: 0.8rem 0 0.5rem;
}

.address-location {
    font-size: 0.88rem;
    display: flex;
    gap: 1rem;
    width: 100%;
    /* padding: 1rem; */
    /* background: red; */
    /* background: #3b3b3b; */
    border-radius: .7rem;
    justify-content: space-between;
}

.address-location__locate {
    font-weight: bold;
    width: 128px;
    padding: 0.6rem;
    background: #3b3b3b;
    border-radius: .7rem;
    text-align: center;
    font-size: 0.8rem;
}

.gallery-container {
    margin-top: 4rem;
}

/* gallery slider */
.gallery-slider {
    position: relative;
    margin-top: 0.8rem;
    overflow: hidden;
    border-radius: 0.8rem;
    direction: ltr;
}

.gallery-slider__track {
    display: flex;
    transition: transform 0.4s ease;
    /* will-change: transform; */
}

.gallery-slide {
    min-width: 100%;
    flex-shrink: 0;
    width: 100%;
}

.gallery-slide img {
    width: 100%;
    max-height: 240px;
    object-fit: cover;
    border-radius: 0.8rem;
    display: block;
}

.gallery-slider__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.45);
    color: #fff;
    cursor: pointer;
    font-size: 1.4rem;
    line-height: 1;
    padding-bottom: 2px;
}

.gallery-slider__nav--prev {
    left: 0.6rem;
}

.gallery-slider__nav--next {
    right: 0.6rem;
}

.gallery-slider__dots {
    position: absolute;
    bottom: 0.6rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.4rem;
}

.gallery-slider__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.4);
    padding: 0;
    cursor: pointer;
}

.gallery-slider__dot.is-active {
    background: #ffffff;
}

/* navigation apps chooser modal */
.nav-apps-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.nav-apps-modal {
    background: #2f2f2f;
    color: #f5f5f5;
    border-radius: 0.9rem;
    padding: 1.4rem 1.2rem 1rem;
    width: 100%;
    max-width: 360px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.nav-apps-modal__title {
    font-size: 0.98rem;
    margin-bottom: 1rem;
    text-align: center;
}

.nav-apps-modal__buttons {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 0.8rem;
}

.nav-apps-button {
    width: 100%;
    border: none;
    border-radius: 0.6rem;
    padding: 0.65rem 0.9rem;
    background: #3b3b3b;
    color: #f5f5f5;
    font-size: 0.9rem;
    text-align: center;
    cursor: pointer;
}

.nav-apps-button--secondary {
    background: #555555;
}

.social-list{
    display: flex;
    gap: 2.2rem;
    margin-top: 1rem;
    justify-content: center;
}

.social-link svg {
    width: 40px;
    height: 40px;
    fill: rgb(218, 218, 218);
}

.instagram-link svg {
    fill: #e31099;
}

.telegram-link svg {
    fill: #1ca7ef
}

.whatsapp-link svg {
    fill: #1fc021;
}

.next-opening-time{
    color: #8d8d8d;
    display: block;
    font-size: 0.8rem;
}

.space{
    display: inline-block;
}