* {
    font-family: 'Roboto', sans-serif;
    margin: 0%;
    padding: 0%;
}

.container{
height: 100vh; 
display: flex;
justify-content: center;
align-items: center;
flex-wrap: wrap;
text-align: center;
}

body {
    background-color: rgb(0, 0, 0);
    color: white;
}

nav {
    display: flex;
    justify-content: space-between;
    background-color:black;
    padding: 5px;
    position: fixed;
    top: 0%;
    width: 100%;
    font-size: 1.6vw;
    z-index: 100;
}



.logo {
    margin-left: 1.2vw;
}

.logo img {
    height: 7vh;
    box-sizing: border-box;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
}

ul a {
    margin-inline: 1.5vw;
    text-decoration: none;
    color: white;
    cursor: pointer;

}

nav ul a:hover {
    border-bottom: 2px solid rgb(255, 208, 0);
    /* font-weight: 600; */
    color: rgb(255, 208, 0);
    transition: 0.2s ease-in

}

/* ul button {
    width: 90px;
    height: 40px;
    background-color: rgb(255, 208, 0);
    border: none;
    font-size: 22px;
    outline: none;
    color: black;
    border-radius: 20px;
} */

/* ul button:hover {
    border: 2px solid rgb(255, 208, 0);
    background-color: transparent;
    cursor: pointer;
    color: white;
    transition: 0.2s ease-in;
} */

#main_logo{
    font-size: 13vw;
    /* margin-top:35vh;
    margin-left:27vw; */
    text-shadow: 7px 7px 5px rgb(0, 0, 0);
    font-family: Georgia, 'Times New Roman', Times, serif;
    animation: fadeiN 4s;
}
#slog{
    font-size: 4vw;
    /* margin-top: 1vh;
    margin-left: 28vw; */
    text-shadow: 5px 5px 5px rgb(0, 0, 0);
    animation: fadeiN 4s;

}

@keyframes fadeiN{
    0%{opacity: 0;color: rgb(255, 0, 0);}
    50%{opacity: 50%;color: rgb(255, 213, 0);}
    100%{opacity: 100%;color: #ffffff;}
}

.background-video{
    position: fixed; 
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh; 
    object-fit: cover;
    z-index: -10;
    opacity: 0.5;
}

.main_container{
    /* height: 60vh;
    width: 99vw; */
    background-color: rgba(0,0,0,0.7);
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    justify-content: space-around;
    border-radius: 30px;
    margin-bottom: 4vh;
}


.categories{
    border-radius: 50%;
    justify-content:center;
    align-items: center;
    display: flex;
    font-size: 50px;
    box-shadow:0 0 50px rgb(104, 104, 104);
    margin-top:20vh;;
}

.main3{
    display: flex;
    margin-top: 30px;
    position:absolute;
}
#cat{
    font-size: 6vw;
    margin-left:auto;
    margin-right:auto;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}
#cat:hover{
    color: yellow;
    transition: 0.3s ease-in;
    cursor: pointer;
}

.categories p{
    text-shadow: 3px 3px 1.5px rgb(0, 0, 0);
    z-index: 10;
}

#veg{
    position: relative;
    overflow: hidden;
    background-image: url(photos/veg.jpeg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
    
}
#vegvid{
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    height: 100%;
    width: 100%;
}
#veg:hover #vegvid{
    opacity: 1;
}
#veg:hover p{
    color: yellow;
    transition: 0.5s ease-in;
    cursor: pointer;
}
#veg:hover{
    height: 340px;
    width: 340px;
    transition: 0.2s ease-in;
    cursor: pointer;
}

#nveg{
    position: relative;
    overflow: hidden;
    background-image: url(photos/nveg.jpeg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
}
#nvegvid{
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    height: 100%;
    width: 100%;
}
#nveg:hover #nvegvid{
    opacity: 1;
}
#nveg:hover p{
    color: yellow;
    transition: 0.5s ease-in;
    cursor: pointer;
}
#nveg:hover{
    height: 340px;
    width: 340px;
    transition: 0.2s ease-in;
    cursor: pointer;
}

#sweet{
    position: relative;
    overflow: hidden;
    background-image: url(photos/sweet.jpeg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
}
#sweetvid{
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    height: 100%;
    width: 100%;
}
#sweet:hover #sweetvid{
    opacity: 1;
}
#sweet:hover p{
    color: yellow;
    transition: 0.5s ease-in;
    cursor: pointer;
}
#sweet:hover{
    height: 340px;
    width: 340px;
    transition: 0.2s ease-in;
    cursor: pointer;
}

#drink{
    position: relative;
    overflow: hidden;
    background-image: url(photos/bvg.jpeg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
}
#drinkvid{
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    height: 100%;
    width: 100%;
}
#drink:hover #drinkvid{
    opacity: 1;
}
#drink:hover p{
    color: yellow;
    transition: 0.5s ease-in;
    cursor: pointer;
}
#drink:hover{
    height: 340px;
    width: 340px;
    transition: 0.2s ease-in;
    cursor: pointer;
}



.main_container1{
    background-color: rgba(0,0,0,0.7);
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    justify-content: space-around;
    border-radius: 30px;
    margin-top: 1vh;
    margin-bottom: 4vh;
}

.main2{
    display: flex;
    margin-top: 30px;
    position:absolute;
}

.bestdish{
    border-radius: 50%;
    justify-content:center;
    align-items: center;
    display: flex;
    font-size: 50px;
    box-shadow:0 0 50px rgb(104, 104, 104);
    margin-top:20vh;
}

#best{
    font-size: 6vw;
    margin-left:auto;
    margin-right:auto;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
}
#best:hover{
    color: yellow;
    transition: 0.3s ease-in;
    cursor: pointer;
}

.bestdish p{
    text-shadow: 3px 3px 1.5px rgb(0, 0, 0);
    z-index: 10;
    text-align: center;
}

#burger{
    position: relative;
    overflow: hidden;
    background-image: url(photos/burger.jpeg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
}
#burgervid{
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    height: 100%;
    width: 100%;
}
#burger:hover #burgervid{
    opacity: 1;
}
#burger:hover p{
    color: yellow;
    transition: 0.5s ease-in;
    cursor: pointer;
}
#burger:hover{
    height: 340px;
    width: 340px;
    transition: 0.2s ease-in;
    cursor: pointer;
}

#tchick{
    position: relative;
    overflow: hidden;
    background-image: url(photos/tchick.jpeg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
}
#tchickvid{
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    height: 100%;
    width: 100%;
}
#tchick:hover #tchickvid{
    opacity: 1;
}
#tchick:hover p{
    color: yellow;
    transition: 0.5s ease-in;
    cursor: pointer;
}
#tchick:hover{
    height: 340px;
    width: 340px;
    transition: 0.2s ease-in;
    cursor: pointer;
}

#rasmalai{
    position: relative;
    overflow: hidden;
    background-image: url(photos/rasmalai.jpeg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
}
#rasmalaivid{
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    height: 100%;
    width: 100%;
}
#rasmalai:hover #rasmalaivid{
    opacity: 1;
}
#rasmalai:hover p{
    color: yellow;
    transition: 0.5s ease-in;
    cursor: pointer;
}
#rasmalai:hover{
    height: 340px;
    width: 340px;
    transition: 0.2s ease-in;
    cursor: pointer;
}

#lassi{
    position: relative;
    overflow: hidden;
    background-image: url(photos/lassi.jpeg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
}
#lassivid{
    top: 0;
    left: 0;
    position: absolute;
    opacity: 0;
    transition: opacity 0.5s ease-in;
    height: 100%;
    width: 100%;
}
#lassi:hover #lassivid{
    opacity: 1;
}
#lassi:hover p{
    color: yellow;
    transition: 0.5s ease-in;
    cursor: pointer;
}
#lassi:hover{
    height: 340px;
    width: 340px;
    transition: 0.2s ease-in;
    cursor: pointer;
}

.main_container2{
    background-color: rgba(0,0,0,0.7);
    display: flex; 
    flex-wrap: wrap;
    justify-content: center;
    margin: auto;
    justify-content: space-around;
    border-radius: 30px;
    margin-top: 1vh;
    margin-bottom: 4vh;
}
.chef{
    border-radius: 30px;
    justify-content:center;
    align-items: center;
    display: flex;
    font-size: 40px;
    color: rgb(255, 255, 255);
    box-shadow:0 0 50px rgb(118, 118, 118);
    position: absolute;
    margin-top:20vh;
}
.chef p{
    text-shadow: 3px 3px 1.5px rgb(0, 0, 0);
    z-index: 10;
    padding-top: 200px;
}
#sk:hover{
    height: 340px;
    width: 340px;
    cursor: pointer;
    transition: 0.2s ease-in;
}
#sk{
    position: relative;
    overflow: hidden;
    background-image: url(photos/sk.jpeg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
}
#vikas:hover{
    height: 340px;
    width: 340px;
    cursor: pointer;
    transition: 0.2s ease-in;
}
#vikas{
    position: relative;
    overflow: hidden;
    background-image: url(photos/vikas.jpeg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
}
#ranveer:hover{
    height: 340px;
    width: 340px;
    cursor: pointer;
    transition: 0.2s ease-in;
}
#ranveer{
    position: relative;
    overflow: hidden;
    background-image: url(photos/article-202349412405445654000.jpg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
}
#kunal:hover{
    height: 340px;
    width: 340px;
    cursor: pointer;
    transition: 0.2s ease-in;
}
#kunal{
    position: relative;
    overflow: hidden;
    background-image: url(photos/kunal.jpeg);
    background-size: cover;
    background-position: center;
    height: 320px;
    width: 320px;
    margin-bottom: 7vh;
}
.cheflink{
    color: #ffff00;
    text-shadow: 2px 2px#000000;
    margin-top: 15vh;
}

/* start of login form */
.modal {
    display: none; 
    position: fixed; 
    z-index: 1; 
    left: 0;
    top: 0;
    width: 100%; 
    height: 100%; 
    overflow: auto; 
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 20;
}

.modal:target {
    display: block; 
}

.modal-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: rgba(255, 255, 255, 0);
    margin: auto; 
    padding: 20px;
    border-radius: 20px;
    width: 400px;
    height: 400px;
    backdrop-filter: blur(15px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.5);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20;
}

.modal-content h2 {
    text-align: center;
    color: white;
    font-size: 40px;
    margin-bottom: 20px;
}

.close {
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    align-self: flex-end;
    cursor: pointer;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
}

label {
    font-size: 18px;
    color: white;
    margin-top: 20px;
    margin-bottom: 5px;
    display: block;
}

input {
    background-color: transparent;
    border: none;
    border-bottom: 3px solid rgba(211, 211, 211, 0.8);
    color: white;
    padding: 10px 15px;
    width: 18vw;
    margin-bottom: 20px;
    outline: none;
    font-size: 18px;
}

input:focus {
    border-bottom: 3px solid rgb(255, 208, 0);
}

button {
    background: rgba(0, 0, 0, 0.5);
    border: 2px solid rgba(211, 211, 211, 0.8);
    color: white;
    padding: 12px 20px;
    border-radius: 5px;
    width: auto;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: background 0.3s ease, transform 0.2s ease;
    display: block;
    margin: 20px auto;
}

button:hover {
    background: rgba(255, 208, 0, 0.2);
    transform: scale(1.05);
}

button:focus {
    outline: none;
}
/* end of login form */



.footer {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    background-color: rgba(0, 0, 0, 0.6);
    color: #ecf0f1;
    padding: 25px;
    text-align: center;
    margin-top: 1vh;
}

.footer-section {
    flex: 1;
    min-width: 200px;
    margin: 10px;
}

.footer-section h3 {
    margin-bottom: 10px;
    font-size: 28px;
    text-shadow: 2px 2px#000000;
}

.footer-section p {
    font-size: 22px;
    line-height: 1.7;
    text-shadow: 2px 2px#000000;
}

.feedback-textbox {
    width: 90%;
    padding: 10px;
    margin: 8px 0;
    border: none;
    border-radius: 10px;
    font-size: 20px;
}

.submit-button {
    padding: 10px 20px;
    background-color: #d7be00;
    border: none;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 14px;
}

.submit-button:hover {
    background-color: #67cc1f;
}

.social-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 3vh;
}

.social-icons a{
    text-decoration: none;
    color: #ecf0f1;
    padding: 10px;
    font-size: 40px;
    display: inline-block;
}

.social-icons a:hover {
    color: gray;
}
.footer-bottom {
    width: 100%;
    text-align: center;
    margin-top: 20px;
    border-top: 1px solid #a0a0a0;
    padding-top: 10px;
    font-size: 17px;
}