:root {
    --bg-primary: #F3FFEC;
    --primary: #444444;
    --main: #389000;
    --bg: linear-gradient(180deg, #F3FFEC 0%, rgba(243, 255, 236, 0) 100%);

}

.tour-hero {
    background-image: url('../images/restaurant-bg.png');
    background-repeat: no-repeat;
    background-position: center;
    height: 80vh;
    position: relative;
    background-size: cover;
}

.tour-about-bg {
    position: absolute;
    top: 0px;
    left: 0;
    width: 100%;
    height: 100%;
    /* background: linear-gradient(180deg, #F3FFEC 0%, rgba(243, 255, 236, 0) 100%); */
}

.tour-content {
    padding-top: 100px;
}

.tour-content h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    text-align: center;
    color: var(--primary);
}

.tour-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.015em;
    text-align: center;
    color: var(--primary);
    padding-top: 12px;
}


/* ============================================ */
.about-para {
    padding: 50px 100px;
}

.about-para-section {
    margin-top: 100px;
}

.about-para-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: -0.015em;
    text-align: justify;
    padding: 0px 100px 0px 0px;
}

.about-para-img img {
    width: 100%;
}






/* ============================= */
.restaurant-content h6 {
    font-size: 16px;
    font-weight: 400;
    line-height: 27px;
    letter-spacing: 0.005em;
    border-bottom: 2px solid var(--main);
    margin-bottom: 10px;
}

.restaurant-content h2 {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    padding: 10px 0px;
    color: var(--primary);
    text-align: center;
}

.restaurant-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.015em;
    text-align: center;
}

.gallery-image {
    position: relative;
}

.gallery-image:hover .rest-overlay {
    opacity: 1;
}

.rest-overlay {
    position: absolute;
    top: 0;
    left: 11px;
    background-color: rgba(0, 0, 0, 0.653);
    color: white;
    width: 92%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    border-radius: 8px;
    opacity: 0;
    transition: all .3s ease-in-out;
}

.rest-overlay-content h4 {
    font-size: 36px;
    font-weight: 600;
    line-height: 44px;
    letter-spacing: 0em;
    text-align: center;
}

.rest-overlay-content p {
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
    letter-spacing: -0.015em;
    text-align: center;
    padding: 10px 82px;
}

.gallery-section img {
    width: 50%;
    margin: auto;
    margin-top: 50px;
}

.gallery-section {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

/* ======================================= */
@media(max-width:1600px) {

    .about-para {
        padding: 0px;
    }

    .about-icon-section {
        padding: 0px;
    }

    .rest-overlay {
        left: 29px;
        width: 91%;
    }
}

@media(max-width:1400px) {
    .about-para-content p {
        padding: 0px;
    }

}

@media(max-width:1280px) {
    .rest-overlay {
        width: 96%;
        left: 11px;
    }
}

@media(max-width:1024px) {
    .rest-overlay {
        width: 95%;
    }
}

@media(max-width:1023px) {
    .about-para-img {
        padding-top: 40px;
    }

    .rest-overlay {
        width: 94%;
    }

    .rest-overlay-content h4 {
        font-size: 24px;
        line-height: 36px;
    }

    .rest-overlay-content p {
        font-size: 14px;
        padding: 0px 8px;
        line-height: 22px;
    }

    .about-para-section,
    .gallery-section {
        margin-top: 150px;
    }

    .gallery-section img {
        width: 100%;
        margin-top: 50px;
    }
}

@media(max-width:767px) {
    .rest-overlay {
        width: 95%;
    }

    .rest-row {
        flex-direction: column-reverse;
    }

    .about-para-section {
        margin-top: 40px;
    }

    .about-para-content p {
        padding: 24px 4px;
    }

    .gallery-section {
        margin-top: 70px;
    }
}

@media(max-width:360px) {
    p {
        font-size: 14px !important;
    }
}