*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    display: grid;
}
.navbar{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
    background: #333;
flex-wrap: wrap;
}
.heading{
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 1.8em;
}
.list{
    display: flex;
    justify-content: center;
    align-items: center;
}
.list ul{
    display: flex;
list-style: none;
    align-items: center;
    justify-content: center;
}
li{
    padding: 10px;
color: white;
overflow: hidden;
position: relative;
transition: all 0.5s;
cursor: pointer;
z-index: 2;
}
a{
    text-decoration: none;
    color: white;
}
li::after{
content: '';
width: 100vw;
height: 0vh;
position: absolute;
background: darkred;
top: 0;
left: 0;
transition: all 0.5s;
z-index: -1;
}
li:hover::after{
    height: 100vh;
}
.sectionMain{
    margin-top: 30px;
background-image: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('./image/top-view-fast-food-mix-mozzarella-sticks-club-sandwich-hamburger-mushroom-pizza-caesar-shrimp-salad-french-fries-ketchup-mayo-cheese-sauces-table_141793-3998.avif');
width: 100%;
height: 80vh;
background-repeat: no-repeat;
mix-blend-mode: multiply;
background-size: cover;
background-position: center;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.sectionMain h1 {
    font-size: 2.9em;
color: white;
}
h3{
    font-size: 2em;
color: white;
}
.itemsheading{
    display: flex;
    margin-top: 60px;
    color: #333;
    justify-content: center;
    align-items: center;
}
.itemsheading h3{
    color: #333;
    position: relative;
    overflow: hidden;
}
.itemsheading h3::after{
    content: '';
    width: 10vw;
    height: 6px;
    position: absolute;
    bottom: -1px;
    left: 0;
    background: darkred;
    border-radius: 20px;
}
.sectiontwo{
    display: flex;
    width: 100%;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
    gap: 20px;
}
  .items {
      background-color: white;
      padding: 20px;
      display: flex;
      flex-direction: column;
      justify-content: center;
      text-align: center;
      box-shadow: 2px 5px 2px 5px rgba(0, 0, 0, 0.1);
      max-width: 50%;
      line-height: 3em;
      border-radius: 10px;
      overflow: hidden;
      position: relative;
      transition: all 0.9s;
    z-index: 1;
    cursor: pointer;
    }
    .items::after{
        content: '';
        top: 0;
        position: absolute;
        background: darkred;
        width: 0;
        height: 100vh;
        right: 0;
        transition: all 0.9s;
        z-index: -2;
    }
    .items:hover::after{
        width: 100vw;
    }
.items:hover  {
    color: white;
}
    .items .a {
      mix-blend-mode: multiply;
      width: 200px; /* Optional: Size control */
      height: auto;
      transition: all 0.9s;
      background: white;
    }
    .items .a:hover{
        transform: scale(8.6em);
    }
    .items p{
        font-weight: 700;
    }
    .items button{
        font-weight: 700;
        padding: 10px;
        border: none;
        background: transparent;
        border: 1px solid darkred;
        color: darkred;
    }
    .footer{
        display: flex;
        justify-content: space-between;
        background: #444;
        margin-top: 30px;
        height: 60vh;
        z-index: -3;
    }
    .footeritems{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    line-height: 4em;
    padding: 10px;
    color: white;
    transition: ease-in-out 0.9s ;
    }
    .footeritems h1{
        margin-top: 20px;
    }
    .footeritems p{
        padding: 10px;
cursor: pointer;
position: relative;
overflow: hidden;
    }
    .footeritems p::after{
        content: '';
        top: 2em;
        left: -1.3em;
        position: absolute;
        background: orangered;
        width: 2vw;
        height: 2vh;
        z-index: -1;
         border-top-right-radius: 20px;
         border-bottom-right-radius: 20px;
         transform: rotate(45deg);
    }
    .btns{
        display: flex;
        gap: 10px;
    }
     a{
        padding: 10px;
border: none;
height: 40px;
background: transparent;
font-weight: 700;
color: white;
border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
cursor: pointer;
}


