@import url('https://fonts.googleapis.com/css2?family=Arizonia&family=Mooli&family=Playfair+Display&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Galada&display=swap');

body {
    min-height: 100vh;
    font-family: 'Mooli', sans-serif;
    background: rgb(255,160,14);
    background: linear-gradient(180deg, rgba(255,252,181,1) 0%, rgba(255,160,14,1) 100%);
}

p {
    text-align: justify;
}

.navbar-custom {
    background-color: transparent;
}
.navbar-brand img {
    height: 90px;
    width: auto;
}

.bg-topbar {
    background: transparent;
}

.nav-link {
    color: #d64310;
}
.nav-link:hover {
    color: #8f2b09;
}

.content-wrapper {
    /* margin-top: 120px; */
}
.content-wrapper.menu {
/*     background-image: url('../images/menu_bg.jpg');
    background-repeat: no-repeat;
    background-position: top;
    background-size: cover; */
}
.content-wrapper .inner {
    padding: 0 30px;
}
.card {
    border-radius: 0.75rem;
    padding: 30px;
}

.menu-wrapper {
    width: calc(100vw - 40%);

}
.left-align {
    display: flex;
    justify-content: start;
}
.right-align {
    display: flex;
    justify-content: end;
}
.menu-content {
    width: 70%;
    z-index: 9999;
}
.page-title {
    font-family: 'Arizonia', cursive;
    font-size: 48px;
    font-weight: 700;
    color: #d64310;
    margin: 0;
}
.page-title .thin {
    font-weight: 100;
}
.menu-wrapper {
    position: relative;
}
.menu-wrapper h2 {
    font-family: 'Arizonia', cursive;
    font-size: 30px;
    font-weight: 700;
}
.menu-wrapper h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
}
.menu-wrapper h4 {
    font-size: 16px;
}

.shape {
    position: absolute;
    z-index: 0;
}
.shape.luchi {
    top: 75px;
    left: -170px;
    width: 150px;
    height: 150px;
    background: url('../images/menu-shape-04.png');
    background-repeat: no-repeat;
    background-size: contain;
}
.shape.pulao {
    top: 55px;
    right: -180px;
    width: 240px;
    height: 240px;
    background: url('../images/menu-shape-03.png');
    background-repeat: no-repeat;
    background-size: contain;
}
.shape.chicken {
    bottom: -50px;
    right: -50px;
    width: 225px;
    height: 129px;
    background: url('../images/menu-shape-01.png');
    background-repeat: no-repeat;
    background-size: contain;
}
.shape.mutton {
    top: 300px;
    left: 320px;
    width: 240px;
    height: 240px;
    background: url('../images/menu-shape-02.png');
    background-repeat: no-repeat;
    background-size: contain;
}

.footer {
    color: #f8f9fa !important;
}
.footer a {
    color: #f8f9fa !important;
    text-decoration: none;
}

.disclaimer {
    position: absolute;
    bottom: -90px;
    left: 30px;
}

@media only screen and (max-width: 640px) {
    .bg-topbar {
        background: rgb(255,160,14);
        background: linear-gradient(180deg, rgba(255,252,181,1) 0%, rgba(255,160,14,1) 100%);
    }

    .menu-wrapper {
        width: calc(100vw - 5%);
    }
    .menu-content {
        width: 100%;
    }

    .shape.luchi {
        top: 15px;
        left: -100px;
        width: 150px;
        height: 150px;
    }
    .shape.pulao {
        top: 125px;
        right: -40px;
        width: 180px;
        height: 180px;
    }
    .shape.chicken {
        bottom: -110px;
        left: -70px;
        width: 225px;
        height: 129px;
    }
    .shape.mutton {
        top: 430px;
        left: 130px;
        width: 200px;
        height: 200px;
    }
}

