@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;500;600;700&amp;display=swap');

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
}

body {
    font-family: 'Quicksand', sans-serif;
    scroll-behavior: smooth;

    background-color: black;
    color: white;
    overflow-x: hidden;
    scroll-padding-top: 40px;

}

::selection {
    background-color: #383848;

}

:root {
    --primary-color: #383848;
    --secondary-color: #e4b95b;
    --third-color: #9a9a9a;
    --forth-color: #e2dadd;
    --redtext: rgb(240, 24, 24);
}

.toranto {
    color: var(--redtext);
}

video {
    object-fit: cover;
    width: 100%;
    height: 100vh;
    /* position: fixed; */
    top: 0;
    left: 0;
    position: absolute;
    background-position: center;
    background-size: cover;
    object-fit: cover;
    z-index: -1;
}

.viewport-header {
    position: relative;
    height: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;

}

/* header start */
header {
    height: 100vh;

}

.navbar {
    display: flex;
    justify-content: space-between;
    color: white;
    align-items: center;
    padding: 10px;
    z-index: 999;
    width: 100%;
    position: absolute;
}

.logo {
    margin-left: 40px;
    font-size: 30px;
    display: flex;
    cursor: pointer;
    align-items: center;
    color: rgb(240, 24, 24);
}

.logo h2 {
    font-weight: 700;
    font-size: 40px;

}

.logo img {
    width: 80px;
    border-radius: 50%;
    margin-right: 5px;
    border: 1px solid white;
}

.contant {
    text-transform: capitalize;

}

.contant ul {
    list-style: none;
    display: flex;
    margin-right: 30px;

}

.contant a {
    text-decoration: none;
    padding: 16px;
    color: white;
    font-size: 20px;
    font-weight: 600;
}

.contant a:hover {
    border-bottom: 2px solid var(--redtext);
    color: white;
    text-decoration: none;

}

header::before {
    content: "";
    background-color: rgb(0, 0, 0, 0.5);
    position: absolute;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
}

header * {
    z-index: 10;
}

.contant-header {
    height: 70vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    font-weight: 400;
}

.contant-header h2 {
    margin-top: 200px;
}

.contant-header span {
    color: var(--redtext);
}

/* header end */



/* menue section  */
.about-sec {
    background: url("../imags/offer-background.jpg");
    color: var(--secondary-color);
}

.menue {
    margin-left: 100px;
    transition: 0.5s ease;
}

.menue img:hover {
    transform: rotate(360deg);
    transition: 1s ease;
    border-radius: 0;
    width: 200px;
}

.menue img {
    border-radius: 50%;
    width: 150px;
    cursor: pointer;
    transition: 1s ease;

}

.menue p {
    margin-top: 50px;
    margin-left: 10px;
    color: #e4b95b;
    font-size: 20px;
}

.facbook {
    margin-top: 40px;
    text-align: center;
}

.facbook p {
    margin-top: 10px;
    color: white;
}

.facbook a {
    text-decoration: none;
    color: var(--secondary-color);
    outline: none;
    font-size: 30px;
    margin-bottom: 0;
    padding: 0;
    background-color: yellow;
    color: black;
    font-weight: 700;
    padding: 10px;
    border-radius: 10px;
    transition: 0.5s ease;
}

.facbook a:hover {
    background-color: var(--redtext);
    color: white;
}

/* deats food section start */
.datesfood {
    background-color: white;
    padding: 30px;
}

.foodIcon img {
    background-color: white;
}

.date-title {
    color: black;
    text-transform: capitalize;
}

.foodIcon {
    margin: auto;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

/* deats food section end */


/* offer section */
.offer-section {
    padding: 50px;
    /* background-color: #111; */
    flex-wrap: wrap;
    margin: auto;

}

.card {
    background-color: black;
    color: #e4b95b;
    width: 90%;
    overflow: hidden;
    border: none;
    text-align: center;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    /* box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px; */
    /* box-shadow: rgba(0, 0, 0, 0.45) 0px 25px 20px -20px; */
    cursor: pointer;
    height: 100%;
    border-radius: 20px;
}

.card:hover {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.img-offer {

    width: 100%;
    background-position: center;
    background-size: cover;
}

.img-offer img {
    width: 360px;
    background-position: center;
    background-size: cover;
}

.title-offer {
    padding: 20px;
}

.facebook-offer {
    margin-top: 10px;
}

.facebook-offer a {
    background-color: rgb(235, 235, 61);
    color: black;
    padding: 10px;
    text-decoration: none;
    outline: none;
    border-radius: 10px;


}

/* ating section start */
.reating {
    margin-top: 100px;
    scroll-margin-top: 150px;
    border-top: 2px solid gray;
    padding: 100px 0;
}

.rate-1 {

    width: 100%;
    margin-right: 20px;
    margin-bottom: 50px;
}

.rate-1 img {
    margin-right: 30px;
    width: 600px;
    transform: rotate(-10deg);
    cursor: pointer;
}

.rate-2 img {
    margin-right: 30px;
    width: 600px;
    transform: rotate(-10deg);
    cursor: pointer;

}

.rate-2 {
    width: 100%;
    margin-right: 20px;
    margin-bottom: 50px;
}

/* ating section start */

/* footer start */
footer {
    /* background-color: #20202f; */
    text-align: center;
    border-top: 2px solid gray;
    margin-top: 200px;
    position: relative;
    scroll-margin-bottom: 100px;
}

.footer-logo {
    margin-top: 100px;
    text-align: center;
    /* display: flex; */
    justify-content: center;
    align-items: center;
}

.footer-logo .logo {
    flex-direction: column;
}

.footer-logo .logo img {
    width: 120px;
    margin-bottom: 10px;
}

.footer-logo .logo h2 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 50px;
}

.address {
    margin-top: 50px;
    padding: 0 200px;
    text-align: center;
    margin: auto;
}

.address h3 {
    margin-bottom: 50px;
    font-size: 25px;
}

.address p {
    font-size: 20px;
    color: #e4b95b;
}

.footer {
    width: 100%;
    flex-direction: row;
    display: flex;
    text-align: center;
    scroll-padding-bottom: 100px;
}

.footer-info {
    width: 50%;
    padding: 20px;
}

.sochial-icon-footer {
    width: 50%;
}

.sochial-icon-footer a {
    text-decoration: none;
    font-size: 40px;
    color: #e4b95b;
    outline: none;
    margin-right: 20px;
}

.sochial-icon-footer i {
    transition: 0.5s ease;

}

.sochial-icon-footer i:hover {
    transform: scale(1.5);
    transition: 0.5s ease;

}

.up {
    position: absolute;
    right: 30px;
    bottom: 20px;
    position: fixed;
    cursor: pointer;
}

.up i {
    font-size: 30px;
    color: var(--redtext);
    text-decoration: none;
    outline: none;
}

/* footer end */

.map-phone{
list-style: none;
display: none;
}
.map-phone a{
    color: white;
    text-decoration: none;
    font-size: 30px;
}
.o {
    width: 10px;
    height: 10px;
    background-color: white;
    border-radius: 50%;
    padding: 10px 18px; 
    display: none;
}
.address a{
    text-decoration: none;
    outline: none;
    color: white;
    font-size: 30px;
}
/* media screen  */

@media (max-width:700px) {
    .o{
        display: inline-block;  
    background-color: white;
    border-radius: 50%;
    padding: 18px 18px; 
    }
    .o:hover{
        background-color: var(--redtext);
    }
    body {
        overflow-x: hidden;
        text-align: center;
    }

    .navbar .contant {
        display: none;
    }

    .video {
        width: 100%;
    }

    .navbar {
        height: fit-content;
        background-color: black;
        padding: 10;
        margin: 0;
    }

    .navbar h2 {
        font-size: 30px;
    }

    .navbar img {
        width: 60px;
    }

    .contant-header h2 {
        font-size: 20px;
        margin-top: 400px;
    }

    /* navbar header end */

    /* menue section start */
    .about-sec {
        width: fit-content;
        text-align: center;
        background-color: bisque;
        display: contents;
    }

    .menue {
        display: flex;
        flex-direction: row-reverse;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        margin-left: 0;
        width: fit-content;
        margin: 0;
        padding: 0;
    }

    .menue::content {
        width: 100%;
    }

    .menue img {
        width: 120px;
        margin-bottom: 15px;
    }

    .menue img:hover {
        transform: rotate(360deg);
        transition: 1s ease;
        border-radius: 0;
        width: 100px;
    }

    /* .menue-row{
        display: flex;
        background-color: aqua;
        flex-direction: row;
        justify-content: space-evenly;
    } */
    .div-1 {
        width: 50%;
        display: flex;
        justify-content: space-evenly;
    }

    .div-2 {
        display: none;
    }

    /* menue end */

    /* dates food  */
    .datesfood {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        /* margin: auto; */
        text-align: center;
    }

    /* dates food */

    .card {
        width: 100%;

    }

    .offer-section {
        padding: 0;
        width: 100%;
        margin: auto;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        padding: 30px;
        flex-wrap: wrap;
    }

    .offer-section .container {
        margin: 0;
        flex-direction: column;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        width: 100%;

    }

    .card-offer {
        height: fit-content;
        margin-bottom: 10px;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        /* width: fit-content; */
        /* border: 1px solid white; */
        border-radius: 20px;
        margin-bottom: 20px;
        width: 80%;
        background-color: #383848;
        margin: 10px auto;
    }

    .img-offer img {
        /* width: 245px; */
        width: 100%;

    }

    .card-1 {
        width: 80%;
        background-color: white;

    }

    .title-offer {
        background-color: #313030;
    }

    .card-2 {
        width: 80%;
        box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
        box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;

    }

    .card-3 {
        width: 80%;
        background-color: #383848;

    }

    /* rating start */
    .reating {
        display: flex;
        flex-direction: column;
        transform: rotate(0deg);
        margin: 0;
        padding: 0;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: auto;
    }

    .rate-1 {
        transform: rotate(none);
        margin-left: 20px;
        margin-bottom: 0;
        margin-top: 10px;
    }

    .rate-1 img {
        width: 288px;
        transform: none;
        margin-bottom: 10px;

    }

  .rate-2{
    margin-left: 20px;
        margin-bottom: 0;
  }

    .rate-2 img {
        width: 288px;
        margin-bottom: 10px;
        transform: none;

    }

    /* footer */
    .address {
        padding: 0;
        font-size: 20px;
    }

    .address h3 {
        font-size: 20px;
        padding: 10px;
    }

    .footer {
        width: 100%;
        display: flex;
        flex-direction: column;
    }

    .footer-info {
        width: 100%;
    }

    .sochial-icon-footer {
        width: 100%;
    }

    .footer-logo .logo h2 {
        font-size: 25px;
    }

    #contact {
        margin-top: 0;

    }

    .map {
        width: 100%;
    }

    .map-1 iframe {
        width: 100%;
    }

    .map-2 iframe {
        width: 100%;
    }
}

.map {
    margin: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;

}

.map p {
    color: #e4b95b;
}
.home{
    margin: auto;
    list-style: none;
}
.home a{
    color: var(--redtext);
    font-size: 40px;
    
}