* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body,
html {
    width: 100%;
    height: 100%;
}

/* Main container */
#mainContainer {
    min-height: 100vh;
    width: 100%;
}

/* Section One: Video Background */
.sectionOne .linear {
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.videoSection {
    width: 100%;
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.videoSection video {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    z-index: 1;
    position: relative;
}

.videoSection .linear {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.1));
}

/* Zomato intro */
.zomato {
    height: 50vh;
    width: 100%;
    margin-top: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.zomato img {
    width: 25%;
    height: auto;
}

.zomato h1 {
    color: white;
    font-size: 3rem;
    font-weight: bolder;
    letter-spacing: 4px;
}

.zomato span {
    color: white;
    font-weight: 600;
    font-size: 1.4rem;
}

/* Download icons */
.images {
    margin-top: 1%;
    display: flex;
    justify-content: center;
    gap: 30px;
    width: 25%;
    height: 60px;
}

.images img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Section Two */
.sectionTwo {
    width: 100%;
    height: 700px;
    background: #fff;
    position: relative;
}

.linning {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.burger,
.content,
.pizza {
    position: absolute;
}


.burger {
    top: 20%;
    left: 10%;
    width: 30%;
    height: 400px;
}

.burger img {
    width: 60%;
    height: 60%;
}

.content {
    top: 30%;
    left: 50%;
    transform: translateX(-50%);
    width: 30%;
    height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 15px;
}

.content h1 {
    font-size: 3.4rem;
    color: rgba(165, 42, 42, 0.85);
}

.content span {
    width: 90%;
    font-size: 1.3rem;
    color: grey;
}

.pizza {
    top: 50%;
    right: 10%;
    width: 21%;
    height: 300px;
}

.pizza img {
    width: 100%;
    height: 100%;
}


/* Section Three - Products */
.sectionThree {
    width: 100%;
    min-height: 500px;
    background-color: #fff;
    padding: 10px;
}

@media (max-width: 600px) {
    .sectionThree .boxes {
        display: flex;
        flex-direction: column;
        gap: 20px;
        align-items: center;
        width: 100%;
    }

    .sectionThree .pro {
        width: 90% !important;
    }

    .sectionThree .box {
        width: 100% !important;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .sectionThree img {
        width: 100% !important;
        height: auto;
        object-fit: cover;
    }

    .sectionThree .price {
        width: 100%;
        text-align: center;
    }

    .sectionThree button {
        width: 80%;
    }
}



.sectionThree .boxes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    width: 100%;
}

.pro.box {
    width: calc(20% - 20px);
    min-height: 350px;
    overflow: hidden;
    background-color: rgba(166, 166, 166, 0.307);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.box .img {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Price & button */
.price {
    width: 100%;
    background-color: #e23744;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    height: 70px;
    border-radius: 10px;
}

.price h2 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin: 0;
}

.inputVal {
    margin-left: 2%;
    width: 40%;
    padding: 12px;
    margin-bottom: 20px;
    font-size: 16px;
}

.price button {
    padding: 14px 16px;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #ff7a18, #ff3d00);
    color: white;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.price button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

/* Footer */
.footer {
    width: 100%;
    background-color: #000;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

.footer-logo h2 {
    font-size: 1.8rem;
    color: #e23744;
    margin: 0;
    font-weight: 700;
}

.footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    margin: 10px 0;
}

.footer-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: #e23744;
}

.footer-copy p {
    font-size: 0.9rem;
    color: #ccc;
    margin: 0;
}

/* Cart icon & sidebar */
.cart-icon {
    position: fixed;
    top: 20px;
    right: 40px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: #e23744;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1000;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    font-size: 1.5rem;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: yellow;
    color: black;
    font-size: 0.8rem;
    padding: 2px 5px;
    border-radius: 50%;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background-color: #fff;
    box-shadow: -4px 0 15px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease;
    z-index: 999;
    display: flex;
    flex-direction: column;
}

.cart-sidebar.active {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #e23744;
    color: white;
}

#closeCart {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: white;
    cursor: pointer;
}

.cart-items {
    padding: 10px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Individual cart item */
.cart-items .para {
    border-radius: 10px;
    border: 1px solid black;
    display: flex;
    justify-content: space-between;
    padding: 10px;
    align-items: center;
}

.cart-items .para .heading5 {
    color: red;
}

/* Responsive */
@media (max-width: 650px) {
    .zomato img {
        width: 50%;
    }

    .images {
        flex-direction: column;
        width: 100%;
        padding-left: 30%;
    }

    .burger {
        width: 70%;
        left: 64%;
        transform: translateX(-50%);
        height: 350px;
    }

    .pizza {
        width: 70%;
        left: 60%;
        transform: translateX(-50%);
        height: auto;
    }

    .content {
        width: 70%;
        left: 50%;
        transform: translateX(-50%);
        height: auto;
    }

    .content {
        font-size: 1rem;
        top: 70%;
        height: auto;
    }

    .content h1 {
        font-size: 2rem;
    }

    .content span {
        font-size: 15px;
    }

    .pizza img {
        width: 70%;
        height: 60%;
    }
}

@media (max-width: 600px) {
    .pro {
        width: 60%;
    }

    .box {
        height: 200px;
    }

    .menu-filter {
        width: 90%;
        font-size: 14px;
    }
}