/* qr page css start */

@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

/* body {
    font-family: "Roboto", sans-serif !important;
    background-image: url("../img/food_texture.jpg") ;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    overflow: hidden;
} */


body {
    font-family: "Roboto", sans-serif !important;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

body::before {
    content: "";
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/food_texture.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    opacity: 0.2;
    z-index: -1;
}


html,
body {
    height: 100%;
    margin: 0;
    display: grid;
    justify-content: center;
    align-items: center;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures the video covers the entire screen */
    z-index: -1;
    /* Places the video behind other content */
}

.menu-sec {
    background-color: rgba(0, 0, 0, 0.5);
    padding: 40px;
    border-radius: 50px;
    position: relative;
    z-index: 1;
    margin: 20px;
    color: white;
}


.qr_img_inside {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    display: grid;
    margin-bottom: 40px !important;
}

.whatsapp_box {
    display: flex;
    width: 100%;
    max-width: 700px;
    border-radius: 80px;
    padding: 10px;
    border: 2px solid #e88824;
    margin: 20px auto;
    align-items: center;
    justify-content: center;
    transition: 0.4s;
    color: white;
    text-align: center;
}

.whatsapp_box:hover {
    background-color: #e88824;
    color: white;
    box-shadow: 0px 2px 10px #777;
    transform: scale(1.05);
}

.whatsapp_box i {
    font-size: 30px;
    margin-right: 5px;
}

.whatsapp_box h4 {
    margin-left: 10px;
    font-size: 30px;
    margin-top: 4px;
}

.qr_content a {
    text-decoration: none !important;
    color: black;
}

.menu-sec {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.online_aaoge_name a {
    color: #e88824 !important;
    text-decoration: none;
}

.online_aaoge_name {
    text-align: center;
}

.video-desktop {
    display: block;
}

.video-mobile {
    display: none;
}

@media (max-width: 767px) {
    .video-desktop {
        display: none;
    }

    .video-mobile {
        display: block;
    }
}



/* Media queries for screens */

/* For devices with a max-width of 768px (tablet and small screens) */
@media screen and (max-width: 768px) {
    .whatsapp_box {
        width: 90%;
        margin-top: 2px !important;
    }

    .qr_img_inside {
        width: 90%;
    }

    .whatsapp_box h4 {
        font-size: 25px;
    }

    .whatsapp_box i {
        font-size: 25px;
    }

    .menu-sec {
        padding: 30px;
    }

    body {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/food_texture.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        opacity: 0.2;
        z-index: -1;
    }
}

/* For devices with a max-width of 425px (large mobile screens) */
@media screen and (max-width: 425px) {
    body {
        width: 100%;
    }

    .whatsapp_box h4 {
        font-size: 20px;
        align-items: center;
        margin-top: 2px !important;
    }

    .whatsapp_box i {
        font-size: 20px;
    }

    .qr_full_box {
        margin: 30px 0;
    }

    .menu-sec {
        padding: 20px;
    }

    body {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/food_texture.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        opacity: 0.2;
        z-index: -1;
    }
}

/* For devices with a max-width of 320px (small mobile screens) */
@media screen and (max-width: 320px) {
    .whatsapp_box h4 {
        font-size: 18px;
        margin-top: 2px !important;
    }

    .whatsapp_box i {
        font-size: 18px;
    }

    .menu-sec {
        padding: 15px;
    }

    body {
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    body::before {
        content: "";
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url("../img/food_texture.jpg");
        background-repeat: no-repeat;
        background-size: cover;
        background-position: center;
        opacity: 0.2;
        z-index: -1;
    }
}