*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
    
}

.main-content {
    display: none; /* Initially hidden */
    /* padding: 20px; */
    /* text-align: center; */
    height: 100vh;
}

/* --header starts-- */


header{
    width: 100%;
    height: 180px;
    position: relative;
    background-color: #fff7d6;

}

/* ---logo---- */
.logo1{
    width: 70px;
    /* height: 100px; */
    margin-left: 10px;
    position: absolute;
    top: 5px;
    left: 2px;
    z-index: 120;
    position: fixed;
}
.logo1 img{
    width: 100%;
    height: auto;
}
/* side bar begins */

.sidebtn {
    color: black;
    position: absolute;
    right: 10px;
    top: 10px;
    transition: all 0.5s;
    display: none;
    z-index: ; /* Make sure it's above the sidebar */
}

/* Sidebar Hidden Off-Screen Initially */
.sidebar {
    width: 300px;
    height: 100vh;
    background-color: rgb(34, 29, 1);
    position: fixed;
    top: 0;
    left: -300px; /* Off-screen by default */
    transition: all 0.5s;
    z-index: 99; /* Below the button */
    display: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

/* Sidebar Slides In When .sidetoggle is Applied */
.sidetoggle {
    left: 0; /* Slides the sidebar into view */
}
/* Ensure smooth transition for the icon */
.btnicon {
    font-size: 30px;
    transition: transform 0.9s ease; /* Smooth rotation transition */
}

/* When sidebar is toggled (open), rotate the icon */
.open .btnicon {
    transform: rotate(90deg); /* Rotates the bars icon to look like an X */
}

.sidebar img:first-child {
    display: block;
    width: 40%;
    height: auto;
}

.sidebar a {
    display: block;
    padding: 2px 0 0 10px;
    width: 80%;
    height: 50px;
    text-decoration: none;
    color: white;
    margin: 10px 0 5px 10px;
    transition: all 0.5s;
    font-size: 14px;
    text-align: left;
}
.btni2{
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 30px;
    color: orangered;
}

.sidebar a:hover {
    box-shadow: 2px 2px 2px 2px rgb(130, 130, 162);
    border-color: white;
}

.sidebar hr {
    width: 80%;
    margin-left: 20px;
    height: 2px;
    border-radius: 20px;
    background-color: rgb(5, 0, 0);
    content: 'hello';
    border-color: black;
}

.sidetoggle {
    transform: translateX(0);
}

.btnicon {
    font-size: 30px;
}

.side-socials {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
}

.icon {
    display: inline-block;
    margin: 10px 10px 0 10px;
    font-size: 20px;
    transition: all 0.5s;
}

.icon:nth-child(1):hover {
    color: blue;
}

.icon:nth-child(2):hover {
    color: rgb(79, 7, 83);
}

.icon:nth-child(3):hover {
    color: rgb(7, 84, 41);
}

/* side bar ends*/

/* nav bar bergins  */
nav{
    width: 100%;
    height: 80px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    z-index: 100;
    position: fixed;
    background-color: rgb(68, 66, 66);
}

nav .navlink{
    margin-left: 100px;
    display: flex;
    justify-content: flex-end;
    align-items: flex-start;
}
nav .navlink a{
    display: inline-block;
    margin-top:20px;
    margin-right: 5px;   
    margin-left: 15px;
    padding: 5px 10px;
    text-decoration: none;
    color:black;
    font-weight: 600;
    font-size: 16px;
    transition: all .5s;
}

nav .navlink a:last-child{
    margin-top:10px;
    margin-right: 80px;
    margin-left: 100px;
    padding: 15px 15px;
    color: rgb(13, 1, 1);
    background-color: orangered;
    border-top-left-radius: 15px;
    border-bottom-right-radius: 15px;
    box-shadow: 2px 2px 2px rgba(0,0,0,.5);
}
nav .navlink a:first-child:hover,
nav .navlink a:nth-child(2):hover,
nav .navlink a:nth-child(3):hover,
nav .navlink a:nth-child(4):hover,
nav .navlink a:nth-child(5):hover,
nav .navlink a:nth-child(6):hover{
color: brown;
font-size: 17px;
border-bottom: 5px solid black;
border-bottom-width: 5px;
/* border-radius: 10px; */

}

header .order{
    width: 200px;
    padding: 20px 40px;
    background-color: #bd3a0f;
    position: absolute;
    top: 150px;
    right: 200px;

}
header .order p a{
    text-decoration: none;
    font-weight: 400;
    color: aliceblue;
    text-shadow: 8px 8px 12px rgba(0, 0, 0, 20); /* Text shadow */
}

/* nav bar ends */


/* --header ends-- */



/* ---body starts-- */
.main {
    background-color: #fff7d6;
    height: 1150px;
    /* background-image: url(../Resources/css/img/bg2.png); */
    /* position: relati; */

}
.long{
    display: none;
}
.m {
    width: 100%;
    height: 100px;
    background-color:#ffd814 ;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: px;
    font-size: 30px;
    font-weight: 900;
    padding: 0; 
}

.meal {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    justify-content: center;
    align-items: center;
    
}

.meal h1 {
    width: 30%;
    font-weight: 900;
    font-size: 30px;
    margin: 80px 0 30px 0;
    justify-self: center;
}

.meal p {
    width: 30%;
    font-weight: 300;
    font-size: 16px;
    margin: 0;
    justify-self: center;
}

.meal hr {
    width: 18%;
    margin-top: 10px;
}

.menu {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    font-size: 20px;
    margin: 80px auto 0;
    /* position: relative; */

}
.menu p a {
    text-decoration: none;
    color: red;
    padding: 20px;
    display: block;
    text-align: center;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
    transition: background-color 0.3s ease;
    /* border: 2px solid orangered; */
}

/* Highlight the current active menu item */
.menu p a.active {
    background-color:#ffd814;
    color: white;
    

}

.af {
    grid-column: 1 / -1;
    margin-top: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.food {
    width: 90%;
    display: none;
    gap: 10px 0;
    grid-template-columns: repeat(4, 1fr);
    margin: 0 auto;
    opacity: 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    transform: translateY(20px);
}

.food.active {
    display: grid !important;
    opacity: 1;
    transform: translateY(0);
}

.box {
    width: 300px;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
}

.box p {
    background-color: #ffd814;
    padding: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
    height: 50px;
    border-radius: 10px;
}

.box p a {
    color: black;
    font-size: 20px;
    font-weight: 900;
    text-decoration: none;
}

.box hr {
    width: 100%;
    height: 2px;
    background-color: black;
    margin-top: 0px;
}

.box .pic img {
    width: 100%;
    height: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
    margin-top: 10px;
}


.order-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 20px;
    box-sizing: border-box;
    background-color: #fff7d6;
}

/* Header Styles */
.order-title {
    margin: 30px 0 20px 60px;
    font-size: 30px;
    font-weight: 700;
}

/* Image Styles */
.order-image {
    position: absolute;
    top: 0px;
    right: 68.5%;
    width: 100px;
    height: 100px;
}

/* Text Styles */
.order-description, .order-step {
    margin: 10px 60px;
    font-size: 16px;
    line-height: 1.5;
}

/* Ordered List Styles */
.order-steps {
    margin: 20px 60px;
}

.order-steps li {
    margin-bottom: 20px;
}

.order-steps h2 {
    font-size: 20px;
    margin-bottom: 10px;
}

/* Additional Info */
.order-extra-info {
    margin: 20px 60px;
    font-size: 16px;
    line-height: 1.5;
}
/* body ends */

/* footer starts */

.footer-cont{
    width: 100%;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 10px;
    justify-content: center;
    margin-top: 0px;
    background-color: rgb(68, 66, 66);

}

.items{
    /* background-color: aqua; */
    /* border: 1px solid black; */
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.footer-cont .items:first-child img{
    width: 100px;
    margin-bottom: 30px;
    margin-left: 10px;
    margin-top: 10px;
}
.footer-cont .items:first-child p{
    width: 80%;
    margin-top: 20px;
    margin-left: 10px;
    text-align: start;
    color: white;

}
.footer-cont .items:first-child h3{
    margin-top: 20px;
    margin-left: 10px;
    font-size: px;
    font-weight: 1000;
    color: white;

}
.footer-cont .items:first-child p{
    margin-top: 20px;
    margin-left: 10px;
    color: white;

}

.footer-cont .items:nth-child(2){
    margin-top: 0px;
    color: white;

}

.footer-cont .items:nth-child(2) h3{
    margin-bottom: 20px;
    margin-top: 90px;
    color: white;


}
.footer-cont .items:nth-child(2) a{
    display: block;
    text-decoration: none;
    padding: 7px;
    color: white;

    
}

.footer-cont .items:nth-child(3){
    margin-top: 0px;
}
.footer-cont .items:nth-child(3) h3{
    margin-bottom: 20px;
    margin-top: 90px;
    color: white;


}
.footer-cont .items:nth-child(3) a{
    display: block;
    text-decoration: none;
    padding: 7px;
    color: white;
    
}

.footer-cont .items:nth-child(4){
    margin-top: 0px; 
}
.footer-cont .items:nth-child(4) h3{
    margin-bottom: 20px;
    margin-top: 90px;
    color: white;

}
.footer-cont .items:nth-child(4) .icon{
    width: 70%;
    display: block;
    justify-content: space-between;
    margin-left: -5px;

} 
.footer-cont .items:nth-child(4) .icon i{
    color:  black;
    font-size: 20px;
    color: white;
    padding: 5px;
    /* border: 1px solid black; */
    /* border-radius: 20px; */
    transition: all 1s;
    font-weight: 900;
}
.footer-cont .items:nth-child(4) .icon i:nth-child(1):hover{
    color: blue;
}
.footer-cont .items:nth-child(4) .icon i:nth-child(2):hover{
    color: purple;
}
.footer-cont .items:nth-child(4) .icon i:nth-child(3):hover{
    color: green;
}

footer{
        width: 100%;
        height: 50px;
        margin-top: 0px;
        background-color: #fff7d6;
    }
    footer .boxx{
        display: flex;
        justify-content: space-between;
    }
    footer .boxx .copy{
        margin-left: 80px;
        display: block;
        text-align: left;
    }
    footer .boxx .terms{
        margin-right: 80px;
        
    }
    footer .boxx .terms a{
        display: block;
        text-decoration: none;
        color: black;
        margin-left: 20px;
        text-align: left;
    }

    hr{
        width: 90%;
        font-size: 5px;
        margin: 0px auto 0;
    }

/* ---footer ends */

/* sliding-effects starts */
.overlay {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to top, 
        rgba(51, 51, 51, 0.9),  /* Dark near the bottom */
        rgba(51, 51, 51, 0.6),  /* Semi-transparent middle */
        rgba(51, 51, 51, 0.3)   /* Light/transparent at the top */
    );
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 10;
    transition: transform 1s ease; /* For smooth sliding */
    transform: translateY(0); /* Start in view */
}


.overlay img {
    width: 200px;
    height: auto;
}
 

/* sliding-effects ends */


