@import url('https://fonts.googleapis.com/css2?family=PT+Sans:ital,wght@0,400;0,700;1,400;1,700&family=Permanent+Marker&family=Poppins:wght@400;500;600;700&display=swap');

/* SHORTCUT CSS CODE */
.relative {
    position: relative;
}

.flex {
    display: flex;
}

.flex-column {
    display: flex;
    flex-direction: column;
}

.align-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-space-bet {
    justify-content: space-between;
}

.justify-end {
    justify-content: flex-end;
}

.align-end {
    align-items: flex-end;
}

.txt-center {
    text-align: center;
}

.gap-90 {
    gap: 100px;
}

.gap-70 {
    gap: 70px;
}

.gap-50 {
    gap: 50px;

}

.gap-30 {
    gap: 30px;
}

.gap-20 {
    gap: 20px;
}

.gap-10 {
    gap: 10px;
}

.gap-4 {
    gap: 4px;
}

.mt-10 {
    margin-top: 10px;
}

.mb-50 {
    margin-bottom: 50px !important;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-100 {
    margin-bottom: 100px;
}

.pt-30 {
    padding-top: 30px;
}

.pt-60 {
    padding-top: 60px;
}

.pt-70 {
    padding-top: 70px;
}

.pb-10 {
    padding-bottom: 10px;
}

.pb-20 {
    padding-bottom: 20px;
}

.pb-30 {
    padding-bottom: 30px;
}

.pb-50 {
    padding-bottom: 50px;
}

.pb-90 {
    padding-bottom: 90px;
}

.pb-100 {
    padding-bottom: 100px;
}

.pb-150 {
    padding-bottom: 150px;
}

.fs-12 {
    font-size: 10px;
}

.fs-20 {
    font-size: 20px !important;
}

.fs-24 {
    font-size: 24px;
}

/* SHORTCUT CSS CODE */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    color: #fff;
    font-family: 'PT Sans', sans-serif;
    line-height: 1.7em;
    font-size: 18px;
}

a {
    text-decoration: none;
    color: #fff;
    cursor: pointer;
}

ul li {
    list-style: none;
}

.img-responsive {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.container {
    width: 1200px;
    margin: 0 auto;
}

.primary-btn {
    position: relative;
    padding: 12px;
    background: #AFFF4E;
    border-radius: 8px;
    cursor: pointer;
    overflow: hidden;
    transition: background-color 0.3s ease-in-out;
}

.primary-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, #fff, #f4f4f4);
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
    z-index: -1;
}

.primary-btn:hover {
    background-color: #fff;
    box-shadow: 0 2px 4px 4px #89ff4e22;
}

.primary-btn:hover:before {
    opacity: 1;
}

header {
    background: #1e1e1e;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9;
}

.logo {
    width: 180px;
    height: 100px;
}

.nav-bar a {
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 20px;
    position: relative;
    transition: all .5s ease-in-out;
}

.nav-bar a.selected {
    color: #AFFF4E;

}

.nav-bar a.selected::before {
    width: 100%;
}

.nav-bar a::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: #AFFF4E;
    transition: all .5s ease-in-out;
}

.nav-bar a:hover {
    color: #AFFF4E;
    transition: all .5s ease-in-out;

}

.nav-bar a:hover::before {
    width: 100%;
    transition: all .5s ease-in-out;
}

.hero-header {
    margin-top: 100px;
    background: url('/assets/images/hero-header.png');
    position: relative;
}

.hero-wrapper {
    padding-top: 150px;
    padding-bottom: 150px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.hero-top {
    position: absolute;
    top: 60px;
    left: 35%;
}

.hero-bottom {
    position: absolute;
    bottom: 200px;
    left: 30%;
}

.hero-bottom2 {
    position: absolute;
    bottom: 50px;
    left: 50%;
}

.leaf-left {
    position: absolute;
    left: 0;
    bottom: -180px;
    z-index: 0;

}

.right-leaf {
    position: absolute;
    right: 0;
    bottom: 0px;
}

.left-leaf2 {
    position: absolute;
    left: 0;
    bottom: -100px;

}

.hero-right {
    position: absolute;
    right: 0;
    top: -50px;
}

.order-top {
    position: absolute;
    left: 10%;
    bottom: 70px;
}

.order-bottom {
    position: absolute;
    top: 15%;
    left: 45%;
}

h1 {
    font-family: 'Permanent Marker', cursive;
    font-size: 48px;
    font-weight: 400;
    line-height: 78px;

}

.primary-btn a p {
    color: #000;
    font-weight: bold;
}

.body-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

.about-section {
    height: 750px;
    background-image: url('../images/about-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.about-left {
    position: absolute;
    left: 0;
    top: 0;
}

.about-right {
    width: 65%;
    float: right;
    margin-top: 100px;
    text-align: right;
    margin-bottom: 180px;
}

h2 {
    font-family: Poppins;
    font-size: 40px;
    font-weight: 700;
    line-height: 60px;
    color: #AFFF4E;
    padding-bottom: 35px;
}

.about-right p {
    font-family: PT Sans;
    font-size: 24px;
    font-weight: 400;
    line-height: 39px;
}

.menu-section {
    position: relative;
    padding: 100px 0;
    background: #000000e9;
    overflow-x: clip;
    overflow-y: visible;
}

.menu-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    opacity: 0;
  visibility: hidden;
  height: 0;
  
  transition:all .20s ease-in-out;

}
.menu-wrapper.active {
    height: 100%;
    opacity: 1;
    visibility: visible;
    transition:all 1s ease-in-out;
  }

#food.selected {
    color: #AFFF4E;
}

#drinks.selected {
    color: #AFFF4E;
}

.menu-card {
    padding: 30px 25px;
    background: linear-gradient(180deg, rgba(175, 255, 78, 0.15) 0%, rgba(255, 255, 255, 0.15) 100%);
    box-shadow: 0px 4px 60px 0px #00000040;
    border-radius: 12px;
    cursor: pointer;
    transition: all .5s ease-in-out;
}

.menu-card:hover {
    box-shadow: 0 2px 4px 6px #cabf891a;
}

.menu-card:hover .upper-card img {
    transform: scale(1.1);
    transition: all .5s ease-in-out;
}

.menu-card .upper-card img {
    transition: all .5s ease-in-out;
}

.dish-name {
    font-family: Poppins;
    font-size: 24px;
    font-weight: 700;
    line-height: 39px;
}

.price {
    font-size: 24px;
    font-weight: 700;
    line-height: 39px;
    color: #AFFF4E;
}

.menu-section .btn-holder {
    float: right;
}

.menu-section .primary-btn {
    padding: 12px 45px;
}

.order-section {
    background-image: url('../images/order-bg.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.order-wrapper {
    padding: 200px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
}

.order-right {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.order1 {
    grid-column: span 2;
    border-radius: 0 0 10px 10px;
    overflow: hidden;
}

.order-pic-holder {
    position: relative;
    transition: all .5s ease-in-out;
    cursor: pointer;
}

.order-pic-holder::after {
    content: '';
    position: absolute;
    background: #00000030;
    top: 50%;
    left: 50%;
    width: 0%;
    height: 0%;
    z-index: 9;
    transition: all .5s ease-in-out;

}

.order-pic-holder:hover::after {
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all .5s ease-in-out;

}

.order2 {
    border-radius: 0 0 0 10px;
    overflow: hidden;
}

.order3 {
    border-radius: 0 0 10px 0;
    overflow: hidden;
}

.order-section h1 {
    font-size: 80px;
    line-height: 130px;
}

.order-left .below-order {
    font-family: PT Sans;
    font-size: 24px;
    line-height: 39px;

}

footer {
    background: #000;
}

.footer-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding-top: 65px;
    gap: 75px;

}

.footer-flex {
    gap: 150px;
}

.footer-border-bottom {
    position: absolute;
    bottom: 0;
    height: 1px;
    width: 100%;
    background: #fff;
}

.icon-footer {
    width: 25px;
    height: 40px;
}

.insta-footer {
    width: 40px;
    height: 40px;
}

.link-list a {
    position: relative;
    transition: all .5s ease-in-out;
}

.link-list a::before {
    position: absolute;
    content: '';
    bottom: -3px;
    width: 0;
    height: 1px;
    background: #fff;
    left: 0;
    transition: all .5s ease-in-out;
}

.link-list a:hover::before {
    width: 100%;
    transition: all .5s ease-in-out;

}

.copyright {
    padding: 20px 0;
}

.copyright p {
    font-size: 12px;
    font-weight: 700;
    line-height: 40px;
}

.copyright p a {
    color: #AFFF4E;
}

.mobile-menu-contents {
    display: none;
}

.ham-icon {
    display: none;
}

/* menu page */
.menu-main-section {
    margin-top: 100px;
    background: url('/assets/images/hero-header.png');
    position: relative;
    z-index: 3;
    height: 590px;
    overflow: hidden;

}

.menu-main-wrapper {
    padding-top: 180px;
}

.menu-main-left {
    position: absolute;
    left: 0;
    top: 10px;
    width: 700px;
    height: 590px;
    z-index: 2;
}

.menu-heading {
    width: 50%;
    float: right;
}

.menu-main-right h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 78px;
    text-align: center;
    color: #fff;
}

.menu-list-section {
    padding: 320px 0;
    background-image: url('/assets/images/about-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
}

.menu-list-section .menu-card {
    background: linear-gradient(52.43deg, rgba(255, 255, 255, 0.9) -14.49%, rgba(207, 253, 150, 0.9) 138.03%);
}

.menu-list-section .menu-card .dish-name,
.menu-list-section .menu-card .price {
    color: #000;
}

.menu-category h4 {
    font-size: 36px;
    font-weight: 700;
    line-height: 59px;
    color: #fff;
    cursor: pointer;
    transition: all .5s ease-in-out;

}

.menu-category h4:hover {
    color: #AFFF4E;
}

.social-link {
    transition: all .5s ease-in-out;
}

.social-link:hover {
    transform: translateY(-8px);
    transition: all .5s ease-in-out;
}

/* about page */
.about-main-section {
    margin-top: 100px;
    padding: 120px 0;
    background: #000;
}

.about-main-wrapper {
    display: grid;
    grid-template-columns: 1.7fr 1fr;
    gap: 50px;
}

.about-main-section h2 {
    font-family: 'Permanent Marker', cursive;
    font-size: 64px;
    padding-top: 40px;
}

.about-main-left p {
    font-size: 24px;
    line-height: 39px;
}

.about-main-right {
    height: 480px;
    width: 400px;
}

.about-img-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.about-content {
    background: url('/assets/images/body-bg.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 150px 0;
    overflow: hidden;
}

.about-paragraph {
    padding-bottom: 200px;
}

.about-paragraph p {
    font-size: 24px;
    line-height: 39px;
}

.about-img-wrapper div {
    height: 260px;
}

.about-pic1 {
    grid-column: span 2;
}

.about-pic6 {
    grid-column: span 2;
}

.about-page-top {
    position: absolute;
    top: 100px;
    left: 40%;
}

.about-page-right {
    position: absolute;
    top: 100px;
    right: 0;
}

.about-page-bottom {
    position: absolute;
    bottom: 60px;
    left: 6%;
}

.about-content .leaf-left {
    bottom: 37%;
}

/* Responsive code */
@media (max-width: 1385px) {
    .container {
        width: 90%;
    }

    .about-right {
        width: 50%;
    }

    .gap-70 {
        gap: 50px;
    }

    .menu-heading {
        width: 60%;

    }

}

@media (max-width: 1200px) {
    .hero-right {
        width: 450px;
    }

    h1 {
        font-size: 36px;
        line-height: 58px;
    }

    .hero-wrapper {
        padding: 100px 0;
    }

    .pb-90 {
        padding-bottom: 70px;
    }

    .leaf-left img {
        width: 150px;
    }

    .about-left {
        width: 440px;
    }

    .about-right {
        width: 55%;
    }

    .about-right p {
        font-size: 20px;
        line-height: 36px;
    }

    h2 {
        font-size: 32px;
        line-height: 50px;
        padding-bottom: 25px;
    }

    .about-section {
        height: 610px;
    }

    .right-leaf {
        bottom: -70px;
        z-index: 9;
    }

    .right-leaf img {
        width: 125px;
    }

    .dish-name,
    .price {
        font-size: 18px;
    }

    .menu-card {
        padding: 25px 20px;
    }

    .pb-100 {
        padding-bottom: 70px;
    }

    .order-section h1 {
        font-size: 60px;
    }

    .order-wrapper {
        padding: 150px 0;
    }

    .menu-main-right h2 {
        font-size: 36px;

        line-height: 56px;

    }

    .menu-main-wrapper {
        padding-top: 230px;
    }

    .menu-heading {
        width: 55%;
    }

    .menu-list-section {
        padding: 200px 0;
    }

    .about-paragraph {
        padding-bottom: 100px;
    }
}

@media (max-width: 1000px) {
    .nav-bar a {
        font-size: 18px;
    }

    .hero-right {
        width: 400px;
        top: -30px;
    }

    h1 {
        font-size: 28px;
        line-height: 50px;
    }

    .hero-top {
        top: 20px;
    }

    .hero-bottom {
        bottom: 100px;
    }

    .pb-90 {
        padding-bottom: 50px;
    }

    .leaf-left img {
        width: 100px;
    }

    .leaf-left {
        bottom: -100px;
    }

    .about-left {
        width: 360px;
        top: 50px;
    }

    .about-right {
        margin-top: 60px;
        width: 50%;
    }

    h2 {
        font-size: 26px;
        line-height: 40px;
    }

    .about-right p {
        font-size: 18px;
        line-height: 28px;
    }

    .about-section {
        height: 550px;
    }

    .right-leaf img {
        width: 90px;
    }

    .menu-section {
        padding-top: 0;
        padding-bottom: 100px;
    }

    .menu-section h2 {
        width: 100%;
    }

    .order-section h1 {
        font-size: 38px;
    }

    .order-wrapper {
        padding: 100px 0;
    }

    .order-top {
        bottom: 0;
    }

    .footer-wrapper {
        gap: 40px;
    }

    .menu-card {
        padding: 15px 10px;
    }

    .lower-card .flex {
        flex-direction: column;
        justify-content: center;
        gap: 0;
    }

    .menu-main-left {

        width: 500px;
        height: 470px;

    }

    .menu-main-wrapper {
        padding-top: 160px;
    }

    .menu-main-section {
        height: 470px;
    }

    .menu-main-right h2 {
        font-size: 28px;
        line-height: 48px;
    }

    .menu-category h4 {
        font-size: 26px;
        line-height: 50px;
    }

    .menu-list-section {
        padding: 150px 0;
    }

    .menu-heading {
        width: 45%;
    }

    .about-main-wrapper {
        grid-template-columns: 1fr;
    }

    .about-main-section {
        padding: 60px 0;
    }

    .about-page-top {
        left: 50%;
    }

    .about-main-section h2 {
        font-size: 48px;
        padding-top: 20px;
    }

    .pb-100 {
        padding-bottom: 50px;
    }

    .about-content {
        padding: 60px 0;
    }

    .about-main-right {
        height: 400px;
        width: 330px;
        margin: 0 auto;
    }

    .about-main-left p {
        font-size: 20px;
        line-height: 36px;
    }

    .about-paragraph p {
        font-size: 20px;
        line-height: 36px;
    }

    .about-content .leaf-left {
        bottom: 36%;
    }

    .about-img-wrapper {
        gap: 15px;
    }

    .about-img-wrapper div {
        height: 200px;
    }

    .footer-flex {
        gap: 90px;
    }
}

@media (max-width:620px) {
    body {
        font-size: 16px;
    }

    .nav-bar {
        display: none;
    }

    .logo {
        width: 120px;
        height: 70px;
    }

    .hero-header {
        margin-top: 70px;
    }

    .hero-right {
        width: 300px;
    }

    .hero-left {
        margin-top: 280px;
    }

    .hero-wrapper {
        grid-template-columns: 1fr;
        padding: 50px 0;
    }

    .pb-90 {
        padding-bottom: 30px;
    }

    .hero-top {
        top: 35%;
        left: 10%;
    }

    .hero-bottom2 {
        left: 70%;
    }

    .hero-bottom {
        left: 45%;
    }

    .about-section {
        height: 800px;
    }

    .about-left {
        width: 300px;
    }

    .about-right {
        margin-top: 430px;
        width: 100%;
        margin-bottom: 0;
    }

    h2 {
        font-size: 24px;
        line-height: 40px;
    }

    .about-right p {
        font-size: 16px;
        line-height: 25px;
    }

    .right-leaf {
        bottom: -60px;
    }

    .right-leaf img {
        width: 70px;
    }

    h1 {
        font-size: 25px;
        line-height: 42px;
    }

    .menu-section {
        padding: 50px 0;
        padding-bottom: 90px;
    }

    .menu-wrapper {
        grid-template-columns: 1fr;
    }

    .menu-card {
        width: 85%;
        margin: 0 auto;
    }

    .pb-100 {
        padding-bottom: 50px;
    }

    .left-leaf2 {
        z-index: 9;
    }

    .left-leaf2 img {
        width: 150px;
    }

    .order-wrapper {
        padding: 70px 0;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .order-section h1 {
        font-size: 28px;
        line-height: 38px;
    }

    .order-left {
        grid-area: 2;
    }

    .order-left .below-order {
        font-size: 20px;
        line-height: 36px;
    }

    .pb-50 {
        padding-bottom: 30px;
    }

    .footer-wrapper {

        padding-top: 35px;
        gap: 25px;
    }

    .footer-flex {
        flex-direction: column;
        gap: 0px;
        align-items: center;
    }

    .copyright {
        flex-direction: column;
    }

    .copyright p {
        line-height: 26px;
    }

    .icon-footer {
        width: 20px;
        height: 30px;
    }

    .insta-footer {
        width: 30px;
        height: 30px;
    }

    .ham-icon {
        margin-top: 10px;
        cursor: pointer;
        display: block;
    }

    .hero-bottom {
        bottom: 0;
    }

    .gap-50 {
        gap: 25px;
    }

    .mobile-menu-contents {
        display: block;
        padding: 20px;
        background: #fff;
        color: var(--primary);
        position: fixed;
        left: -250px;
        opacity: 0;
        top: 0;
        visibility: hidden;
        transition: all 0.3s ease-in-out;
        height: auto;
        width: 100%;
        box-shadow: 0 14px 32px rgb(0 0 0 / 10%);
        overflow-y: scroll;
        z-index: 9;
    }

    .mobile-menu-contents.active {
        visibility: visible;
        opacity: 1;
        left: 0;
        top: 0;
        width: 100%;
        height: 35%;
        background: #1e1e1e;
    }

    .mobile-menu-contents .logo-holder {
        width: 130px;
    }

    .mobile-menu {
        margin-top: 20px;
        padding-left: 20px;
        font-size: 18px;
    }

    .menu-main-section {
        margin-top: 70px;
        height: 430px;
    }

    .menu-main-left {
        width: 380px;
        height: 295px;
        top: auto;
        bottom: 0;
    }

    .menu-heading {
        float: none;
        width: 80%;
        margin: 0 auto;
    }

    .menu-main-wrapper {
        padding-top: 30px;
    }

    .menu-main-right h2 {
        font-size: 24px;
        line-height: 38px;
    }

    .menu-list-section {
        padding: 75px 0;
    }

    .gap-70 {
        gap: 35px;
    }

    .menu-category h4 {
        font-size: 20px;
        line-height: 50px;
    }

    .menu-card .upper-card {
        width: 225px;
        margin: 0 auto;
    }

    .about-main-section {
        margin-top: 70px;
        padding: 40px 0;
    }

    .about-main-section h2 {
        font-size: 32px;
    }

    .about-page-top {
        top: 40px;
    }

    .about-page-right {
        top: 70px;
    }

    .about-paragraph p {
        font-size: 18px;
        line-height: 32px;
    }

    .about-content .leaf-left {
        bottom: 32%;
    }

    .about-img-wrapper {
        grid-template-columns: repeat(2, 1fr);
    }

    .about-content .leaf-left {
        bottom: 48%;
    }

    .menu-section .btn-holder {
        float: none;
        display: flex;
        justify-content: center;
    }

    .order-top {
        bottom: -20px;
    }
}