*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

nav{
    display: flex;
    align-items: center;
    justify-content: space-around;
    position: fixed;
    right: 0;
    left: 0;
    background: #fff;
    z-index: 1000;
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

nav .logo img{
    width: 120px;
    position: relative;
    left: -45%;
    cursor: pointer;
    margin: 20px 0;
}

nav ul{
    list-style: none;
}

nav ul li{
    display: inline-block;
    margin: 0 10px;
}

nav ul li a{
    text-decoration: none;
    color: #000;
    transition: 0.3s;
}

nav ul li a:hover{
    color: #facc22;
}

nav ul li a.action{
    color: #facc22;
}

nav .login a{
    color: #000;
    text-decoration: none;
    border: 2px solid #facc22;
    padding: 7px 20px;
    border-radius: 20px;
    transition: 0.3s;
}

nav .login a:hover{
    background: #facc22;
    color: #fff;
}



/*Banner*/

.banner_bg{
    width: 100%;
    height: 50vh;
    background-image: linear-gradient(rgba(0,0,0,0.5),rgba(0,0,0,0.5)) , url(image/banner_bg.jpeg);
    background-size: cover;
    background-position: center;
}

.banner_bg h1{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
    color: #fff;
    position: relative;
    top: 50%;
}

.banner_bg h1 span{
    color: #facc22;
    margin-left: 15px;
}



/*Menu*/

.menu{
    width: 100%;
    padding: 10px 0 20px 0;
}

.menu .menu_box{
    width: 95%;
    margin: 45px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 30px 10px;
}

.menu .menu_box .menu_card{
    background-image: url(image/menu_card_bg.png);
    background-size: cover;
    background-position: center;
    margin: 0 auto;
    width: 450px;
    height: 575px;
    cursor: pointer;
    padding: 20px 0;
    text-align: center;
    border-radius: 10px;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
}

.menu .menu_box .menu_card .menu_img{
    margin: 0 auto;
    width: 420px;
    height: 300px;
    margin-bottom: 15px;
    box-shadow: 0 0 8px rgba(0,0,0,0.3);
}

.menu .menu_box .menu_card .menu_img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.menu .menu_box .menu_card .menu_text h2{
    font-size: 30px;
    margin-bottom: 15px;
}

.menu .menu_box .menu_card .menu_text p{
    line-height: 21px;
    margin-bottom: 15px;
    margin: 0 auto;
    width: 400px;
}

.menu .menu_box .menu_card .menu_text .menu_icon{
    color: #facc22;
    margin: 8px 0;
}

.menu .menu_box .menu_card .menu_text .price{
    font-weight: bold;
    font-size: 20px;
    padding: 8px 0;
    margin-left: 45px;
}

.menu .menu_box .menu_card .menu_text .price sub{
    margin-left: 5px;
    color: #6d6a6a;
    font-size: 13px;
}

.menu .menu_box .menu_card .menu_text .menu_btn{
    color: #000;
    text-decoration: none;
    padding: 10px 20px;
    border: 2px solid #facc22;
    position: relative;
    top: 20px;
    transition: 0.3s;
    z-index: 5;
}

.menu .menu_box .menu_card .menu_text .menu_btn:hover{
    color: #fff;
}

.menu .menu_box .menu_card .menu_text .menu_btn::before{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #facc22;
    transition: 0.3s;
    z-index: -1;
}

.menu .menu_box .menu_card .menu_text .menu_btn:hover::before{
    top: unset;
    width: 100%;
    bottom: 0;
}

.menu .menu_box .menu_card .menu_text .menu_btn i{
    margin-right: 8px;
}




/*Footer*/
footer{
    width: 100%;
    padding: 45px 50px;   /* medium spacing */
    background: linear-gradient(to right, #00093c, #2d0b00);
    color: #fff;
}

footer .footer_main{
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;   /* balanced spacing */
}

footer .footer_main .footer_tag{
    text-align: left;
}

footer .footer_main .footer_tag h2{
    color: #fff;
    margin-bottom: 16px;
    font-size: 20px;   /* medium heading */
    position: relative;
}

footer .footer_main .footer_tag h2::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 35px;
    height: 2.5px;
    background: #facc22;
}

footer .footer_main .footer_tag p{
    margin: 6px 0;
    color: #ddd;
    font-size: 14px;   /* medium text */
}

footer .footer_main .footer_tag i{
    margin-right: 8px;
    cursor: pointer;
    font-size: 17px;
    transition: 0.3s;
}

footer .footer_main .footer_tag i:hover{
    color: #facc22;
}

footer .end{
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.2);
    padding-top: 15px;
    font-size: 13px;
}

footer .end span{
    color: #facc22;
}

::-webkit-scrollbar{
    width: 10px;
}

::-webkit-scrollbar-thumb{
    background: #facc22;
    border-radius: 30px;
}

.anim{
    opacity: 0;
    transform: translateY(40px);
    animation: moveup 0.5s linear forwards;
}

@keyframes moveup{
    100%{
        opacity: 1;
        transform: translateY(0);
    }
}


@keyframes animate{
    0%{
        transform: scale(1.1);
    }
    50%{
        transform: scale(1);
    }
    100%{
        transform: scale(1.1);
    }
}