/* @import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap'); */
@import url('https://fonts.googleapis.com/css2?family=Mrs+Saint+Delafield&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Josefin+Sans:wght@300;400&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Alegreya+Sans+SC:wght@400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Miniver&display=swap');
/* #5BBA6F
#3FA34D
#2A9134
#137547
#054A29
#C9AB81 
#040909
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.home{
    width: 100vw;
    height: 92vh;
    /* border: 2px solid red; */
    position: relative;
    overflow: hidden;
}
.home .cover-image{
    /* border: 2px solid red; */
    width: 100%;
    height: 100%;
    background: url(images/home-cover2.jpg) no-repeat center;
    background-size: cover;
    /* background-attachment: fixed; */
    z-index: -2;
    
}
.home .home-content{
    /* border: 2px solid orange; */
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #060B0E;
    opacity: 0.7;
    z-index: 0;
}
.home .text-box{
    /* border: 2px solid red; */
    top: 50%;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 999;
}
.home .text-box h1{
    color: #C9AB81;
    /* font-family: 'Mrs Saint Delafield', cursive; */
    /* font-family: 'Inter', sans-serif; */
    font-family: 'Alegreya Sans SC', sans-serif;
    font-size: 65px;
    font-weight: 500;
    margin-bottom: 30px;
    z-index: 99;
}
.home .text-box p{
    color: #fff;
    font-family: 'Josefin Sans', sans-serif;
    font-size: 22px;
    font-weight: 300;
    letter-spacing: 1px;
    z-index: 99;
}
.home .text-box .mouse{
    width: 30px;
    height: 50px;
    border: 2px solid #C9AB81;
    margin: auto;
    border-radius: 20px;
    position: relative;
}
.home .text-box .mouse::before{
    content: '';
    width: 6px;
    height: 10px;
    background-color: #C9AB81;
    position: absolute;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
    border-radius: 30px;
    opacity: 1;
    animation: mousewheel 1.2s infinite;
    /* animation-delay: 0.5s; */
}
@keyframes mousewheel {
    from{
        opacity: 1;
        top: 5px;
    }
    to{
        top: 25px;
        opacity: 0;
    }
    
}

.home a{
    border: 1px solid #C9AB81;
    position: absolute;
    top: 7%;
    right: 2%;
    font-family: sans-serif;
    text-transform: uppercase;
    padding: 10px 25px;
    color: #C9AB81;
    text-decoration: none;
    font-size: 14px;
    /* font-weight: 200; */
    letter-spacing: 3px;
    z-index: 99;
    
}
.home a i{
    margin-right: 5px;
}
.home .bubbles{
    /* border: 2px solid red; */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    position: absolute;
    bottom: -100px;
    width: 100%;
    z-index: 1;
}
.home .bubbles span{
    width: 60px;
    height: 60px;
    border-radius: 5px;
    /* background: rgba(255, 255, 255, 0.08); */
    background-color: #c9ab81;
    opacity: 0.3;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
    /* filter: blur(2px); */
    animation: move 5s linear infinite;
    
}
@keyframes move {
    100%{
        transform: translateY(-110vh);
    }
    
}
.bubbles span.one{
    animation-delay: 2.5s;
}
.bubbles span.two{
    animation-delay: 1.5s;
}
.bubbles span.three{
    animation-delay: 4s;
}
.bubbles span.four{
    animation-delay: 7s;
}
.bubbles span.five{
    animation-delay: 6.4s;
}
.bubbles span.six{
    animation-delay: 3.2s;
}


.navigation{
    /* border: 2px solid red; */
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #0F1D22;
    padding-top: 20px;
    display: none;
}
.navigation a{
    font-family: monospace;
    text-decoration: none;
    color: #C9AB81;
    font-size: 16px;
}
.navigation span{
    color: #C9AB81;
    font-size: 16px;
}



.menu{
    color: #fff;
    background: #0F1D22;
    /* border: 2px solid red; */
    padding: 70px 20px;
    overflow-y: scroll;
}
.menu .main-course{
    /* border: 2px solid orange; */
    max-width: 1050px;
    margin: auto;
    display: flex;
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 60px 0;
}
.menu .main-course::after{
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    background-color: #c9ab81;
    left: 49%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.menu .main-course::before{
    content: '';
    position: absolute;
    width: 1px;
    height: 70%;
    background-color: #c9ab81;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.left-box{
    /* border: 2px solid salmon; */
    max-width: 450px;
    position: relative;
    padding: 40px 0;
}
.left-box .top-heading{
    font-size: 20px;
    font-family: 'Miniver', cursive;
    text-align: center;
    color: #c9ab81;
}
.left-box .big-text{
    font-size: 50px;
    font-weight: 500;
    font-family: 'Alegreya Sans SC', sans-serif;
    text-align: center;
    color: #c9ab81;
    letter-spacing: 1px;
}
.left-box p{
    margin-top: 20px;
    font-family: 'Josefin Sans', sans-serif;
    font-weight: 300;
    font-size: 19px;
    letter-spacing: 1px;
    text-align: center;
    line-height: 27px;
}
.left-box::before{
    content: '';
    width: 30%;
    left: 50%;
    transform: translateX(-50%);
    height: 1.5px;
    background: #c9ab81;
    position: absolute;
    bottom: 0;
}

.right-box{
    /* border: 2px solid palegreen; */
}
.right-box .picbox{
    /* border: 2px solid red; */
    height: 100%;
    width: 400px;
    background: url(images/menu/allinone.jpg) no-repeat center;
    background-size: cover;
    object-fit: cover;
    box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.5);
}


.menu .menu-items{
    /* border: 2px solid red; */
    margin-top: 100px;
    padding: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.menu .item-box{
    /* border: 2px solid #c9ab81; */
    max-width: 400px;
    overflow: hidden;
    margin-bottom: 60px;
}
.menu .item-box .item-pic{
    width: 100%;
    height: 200px;
    /* background: url(images/ilish-polao.jpg) no-repeat center; */
    background-size: cover;
    transition: all 0.3s ease;
}
.item-pic1{
    background: url(images/menu/braised-beef-curry.jpg) no-repeat center;
}
.item-pic2{
    background: url(images/menu/braised-lamb-curry.jpg) no-repeat center;
}
.item-pic3{
    background: url(images/menu/chicken-and-egg-korma.jpg) no-repeat center;
}
.item-pic4{
    background: url(images/menu/chicken-lotpoti.jpg) no-repeat center;
}
.item-pic5{
    background: url(images/menu/chiken-roast.jpg) no-repeat center;
}
.item-pic6{
    background: url(images/menu/coconut-daal.jpg) no-repeat center;
}
.item-pic7{
    background: url(images/menu/ilish-polao.jpg) no-repeat center;
}
.item-pic8{
    background: url(images/menu/khichuri.jpg) no-repeat center;
}
.item-pic9{
    background: url(images/menu/lamb-biryani.jpg) no-repeat center;
}
.item-pic10{
    background: url(images/menu/muroghonto.jpg) no-repeat center;
}
.item-pic11{
    background: url(images/menu/paneer-biryani.jpg) no-repeat center;
}
.item-pic12{
    background: url(images/menu/polao4.jpg) no-repeat center;
}
.item-pic13{
    background: url(images/menu/pomfret-fry.jpg) no-repeat center;
}
.item-pic14{
    background: url(images/menu/rui-curry.jpg) no-repeat center;
}
.item-pic15{
    background: url(images/menu/sabji-biryani.jpg) no-repeat center;
}
.item-pic16{
    background: url(images/menu/salmon-in-bengal.jpg) no-repeat center;
}
.item-pic17{
    background: url(images/menu/shoshe-salmon.jpg) no-repeat center;
}
.item-pic18{
    background: url(images/menu/spicy-braised-lamb-heart.jpg) no-repeat center;
}
.item-pic19{
    background: url(images/menu/tikiya.jpg) no-repeat center;
}
.item-pic20{
    background: url(images/menu/begun-bhaja.jpg) no-repeat center;
}
.item-pic21{
    background: url(images/menu/daler-bora.jpg) no-repeat center;
}
.item-pic22{
    background: url(images/menu/niramish-shobji.jpg) no-repeat center;
}




.menu .item-box .food-name{
    /* border: 2px solid #c9ab81; */
    border-top: 0;
    display: flex;
    flex-direction: column;
}

.menu .item-box .item-name{
    font-size: 27px;
    font-family: 'Alegreya Sans SC', sans-serif;
    text-align: center;
    padding: 5px;
}
.menu .item-box .item-description{
    /* padding: 5px; */
    font-size: 15px;
    font-weight: 400;
    line-height: 27px;
}

.menu .item-box .order-btn{
    border: 1.5px solid #c9ab81;
    /* width: 100%; */
    margin-top: 20px;
    text-align: center;
    padding: 5px;
    cursor: pointer;
}

.menu .item-box .order-btn a{
    /* border: 2px solid #c9ab81; */
    width: 100%;
    text-decoration: none;
    color: #c9ab81;
    /* border: 2px solid #c9ab81; */
    font-size: 20px;
    /* text-transform: uppercase; */
    font-family: 'Alegreya Sans SC', sans-serif;
    font-weight: 500;
    padding: 10px;
    width: 100%;
}

.desert{
    background-color: #0f2128;
}
.desert .right-box .picbox{
    background: url(images/doi.jpg) no-repeat center;
    background-size: cover;
    object-fit: cover;
}

.desert .item-pic1{
    background: url(images/menu/desserts/jorda.jpg) no-repeat center;
}
.desert .item-pic2{
    background: url(images/menu/desserts/payesh.jpg) no-repeat center;
}
.desert .item-pic3{
    background: url(images/menu/desserts/saffron-coconut-sondesh.jpg) no-repeat center;
}
.desert .item-pic4{
    background: url(images/menu/desserts/saffron-pudding.jpg) no-repeat center;
}
.desert .item-pic5{
    background: url(images/doi.jpg) no-repeat center;
}
.desert .item-pic6{
    background: url(images/menu/desserts/pantua.jpg) no-repeat center;
}

.desert .item-pic7{
    background: url(images/menu/desserts/naru.jpg) no-repeat center;
}


footer{
    background: #1b1b1b;
    padding: 100px 0;
    padding-bottom: 50px;
}
.social-icons{
    max-width: 400px;
    /* border: 2px solid red; */
    padding: 10px;
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.social-icons i{
    font-size: 25px;
}
.social-icons a{
    text-decoration: none;
    color: rgba(255, 255, 255, 0.4);
}
.copyright{
    color: rgba(255, 255, 255, 0.7);
    margin: auto;
    max-width: 450px;
    /* border: 2px solid red; */
    padding: 30px 0;
    font-family: 'Alegreya Sans SC', sans-serif;
    text-align: center;
    letter-spacing: 2px;
    font-size: 22px;
}




@media all and (max-width: 950px) {
    .menu .main-course::after{
        display: none;
    }
    .menu .main-course::before{
        display: none;
    }

    
}

@media all and (max-width: 890px) {
    .left-box{
        /* max-width: 100%; */
        margin-inline: auto;
    }
    .right-box{
        display: none;
    }

    
}

@media all and (max-width: 600px) {
    .home a{
        display: none;
    }
    .navigation{
        display: block;
        outline: none;
        text-align: center;
    }
}


