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

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

}

body {
    overflow-x: hidden;
}

/* nav */
nav {
    padding: 20px;
    background-image: url('images/banner.png');
    height: 100vh;

}

.nav-main {

    display: flex;
    justify-content: space-around;
    align-items: center;


}

/* nav links li */
.nav-links ul {
    display: flex;
    gap: 30px;
}

.nav-links ul li {
    list-style-type: none;
    padding-top: 10px;

}

.nav-links ul li a {
    font-size: 16px;
    line-height: 26px;
    font-family: "Noto Sans", sans-serif;
    color: white;
    text-decoration: none;
}

.nav-links ul li a span {
    color: #ffb700;
}

.nav-links ul li a:hover {
    color: #ffb700;
    cursor: pointer;
}

/* nav logo img */
.nav-logo img {
    width: 200px;

}

.nav-logo img:hover {
    cursor: pointer;
}

/*  nav img+button */
.nav-links2 {
    display: flex;
    gap: 30px;
}

.nav-links2 img {

    width: 30px;
    object-fit: contain;
    color: white;
}

.nav-links2 img:hover {
    cursor: pointer;
}

.nav-links2 button {


    padding: 14px 30px;
    font-weight: 600;
    background-color: #ffb700;
    color: rgb(13, 2, 2);
    border-radius: 2px;
    border: 1px solid #ffb700;
    font-family: "Noto Sans", sans-serif;

}

.nav-links2 button:hover {
    background-color: black;
    cursor: pointer;
    color: white;
}



/* home */
.container {
    display: flex;
    justify-content: space-between;
    height: 100%;
    width: 100%;

    align-items: center;


}

/* home text h & p */
.container-text {

    margin-left: 50px;
    animation: downUp 1s;

}


@keyframes downUp {
    0% {
        position: relative;
        top: 100px;
        opacity: 0;
    }

    100% {
        position: relative;
        top: 0;
        opacity: 1;
    }
}

.container-text h2 {
    font-family: "Noto Sans", sans-serif;
    font-size: 24px;
    color: #ffb700;


}

.container-text h1 {

    font-family: "Noto Sans", sans-serif;
    margin-top: 20px;
    color: white;
    font-size: 64px;
    font-weight: 700;
    line-height: 80px;
}

.container-text p {

    margin-top: 30px;
    font-size: 16px;
    line-height: 28px;
    color: #fffc;
}

textarea {
    resize: none;
}

/* home button */
.container-text button {

    margin-top: 30px;
    padding: 14px 30px;
    font-weight: 600;
    background-color: #ffb700;
    color: rgb(13, 2, 2);
    border-radius: 2px;
    border: 1px solid #ffb700;
    font-family: "Noto Sans", sans-serif;



}

.container-text button:hover {
    background-color: black;
    color: white;
    cursor: pointer;

}


/* home image  */
.container-img {
    margin-left: 50px;
}

.container-img img {
    width: 600px;
    height: 100%;
    max-height: 510px;
    object-fit: contain;
    transition: 1s linear;
    filter: drop-shadow(10px 10px 10px yellow);
    animation: zoom 0.5s;


}


@keyframes zoom {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.2);
    }

    100% {
        transform: scale(1);
    }
}

/* page2 */

.page2 {
    background-color: #fff;
    padding: 60px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 30px;
}

.food-items {
    text-align: center;
}

.food-items img {
    width: 50%;
}

.food-items p {
    font-weight: 600;
    margin-top: 20px;
}




.best-selling {
    text-align: center;


}

.best-selling h2 {
    font-size: 40px;
}

.best-selling p {
    margin: 20px 0px;
}

.selling-items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;

    padding: 40px 0px;

}

.selling-item-main {
    width: 20%;
}

.selling-item-main div {
    border: 1px solid #ddd;
    padding: 8px;

}

.selling-items div h3 {
    margin-top: 20px;
}

.selling-items img {

    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: rgb(238, 233, 233);
    aspect-ratio: 1/1.2;
    padding: 40px 20px;
}

.selling-items img:hover {
    background-color: #fff8e6;
}

.offers {
    display: flex;
    width: 100%;
    padding: 50px 0px;
}

.offers img {
    width: 33%;
}





.page6 {
    width: 100%;

    display: flex;
    background-color: black;
}

.form {
    /* border:2px solid red; */
    width: 50%;

}

.Reserve {
    /* border:2px solid blue; */
    width: 50%;
}


.form-container {
    margin: 50px 30px;
    padding: 50px;
    border-radius: 8px;

    background-color: white;

}

.form-container h2 {
    font-size: 25px;
    color: black;
    line-height: 30px;
    padding: 10px;

}

.form-container label {
    color: rgb(148, 148, 150);
    margin-bottom: 2px;
    font-size: 16px;
    font-weight: 500;
    line-height: 26px;

}


.input {
    display: flex;
    width: 100%;

}

.input1 {
    padding: 10px;
}


.name-email {

    padding: 10px;
    width: 50%;

}

.name-email input {
    background-color: #ccc;
    padding: 25px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 1rem;
    width: 100%;
    height: 38px;

}

.name-email input[type="time"] {
    width: 100%;
}

.input1 textarea {
    width: 100%;
    background-color: #ccc;
    border-radius: 6px;
    border: 1px solid #ccc;

}

.input1 button {
    width: 100%;
    padding: 15px;
    background-color: #f9b500;
    color: #000;
    font-weight: bold;
    font-size: 1.1rem;
    border-radius: 6px;
    cursor: pointer;
    border: none;

}




.text {

    padding: 20px;
    color: white;
    margin: 50px auto;

}

.text h3 {
    color: #ffb700;
    font-size: 24px;
}

.text h2 {
    font-size: 30px;
    margin-bottom: 10px;
}

.text p {
    color: #ccc;
    line-height: 1.6;
}


.Reserve-img {
    /* border:2px solid red; */
    display: flex;
    justify-content: flex-end;
}

.Reserve-img img {
    object-fit: contain;
    height: 100%;
    width: 400px;
}


/* page7 */
.fastfood {
    text-align: center;
    padding-top: 60px;


}

.fastfood h2 {
    margin-top: 40px;

    font-size: 46px;
    font-weight: 600;
    line-height: 60px;
}

.fastfood p {
    margin: 20px 0px;
    font-size: 16px;
    line-height: 28px;
    color: #8a9197;
}

.fastfooditems {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;

    padding: 40px 0px;
    padding-bottom: 90px;
}

.fastfooditems-main {
    width: 20%;
    padding: 20px;

}

.fastfooditems-main h2 {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    padding-top: 40px;
    font-family: sans-serif;
}

.fastfooditems-main p {
    margin: 10px 0 0;
    font-size: 16px;
    line-height: 28px;
    color: #8a9197;
    font-family: sans-serif;

}

.fastfooditems-main img {

    object-fit: contain;
    width: 70px;
    display: block;
    margin: auto;



}



/* page8 */

.testimonials {
    background-color: antiquewhite;
    text-align: center;
    /* height: 100%; */

}

.testimonials-text {
    padding-top: 60px;
    text-align: center;


}

.testimonials-text h2 {
    font-size: 40px;
}

.testimonials-text p {
    margin: 20px 0px;
}




.testimonials-main {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding-top: 70px;


}

.testimonials-main .box {
    width: 30%;
    background-color: white;
    border: 6px;
    padding-bottom: 40px;
}

.box-image {
    display: flex;
    padding: 20px;

}

.box-image img {
    width: 70px;
    border-radius: 50%;
    object-fit: contain;

}


.box:hover {
    background-color: #eceef0;

}

.box p {
    font-size: 16px;
    line-height: 28px;
    color: #8a9197;


}

.box-text {
    padding: 20px;

}

.box-text .food {
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
    color: #8a9197;
    font-family: "Noto Sans", sans-serif;
    padding-right: 16px;
}

.box-text .leslie {
    font-size: 18px;
    font-weight: 500;
    line-height: 30px;
    color: black;

    font-family: "Noto Sans", sans-serif;
}





.fastfoods {
    width: 100%;
    /* height: 100%; */
    text-align: center;
    padding: 60px;

}

.fastfoods h2 {

    margin-top: 60px;
    margin-bottom: 20px;
    font-size: 46px;
    font-weight: 600;
    line-height: 60px;
}

.fastfoods p {

    font-size: 16px;
    line-height: 28px;
}

.fastfoods-main {
    padding-top: 40px;
    display: flex;
    justify-content: space-around;



}

.source {
    font-size: 14px;
    color: #b0b5b9;
    margin-bottom: 6px;
}

.title {
    font-size: 18px;
    color: #010f1c;
    margin: 6px 0;
    font-weight: bold;
}

.desc {
    font-size: 14px;
    color: #b0b5b9;
    line-height: 1.5;
}

.read {

    text-decoration: none;

    color: #010f1c;
    font-size: 14px;
    font-weight: 500;
    line-height: 22px;

}


.read:hover {


    padding: 10px;
    background-color: #f9b500;
    color: #000;

    font-size: 16px;
    border-radius: 6px;
    cursor: pointer;
    border: none;
}

.img1 img {
    width: 400px;
    object-fit: contain;

}

.fastfoods-img {

    width: 350px;
   
    text-align: left;


}

.fastfoods-img img {
    width: 100%;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;

}


/* map */
.page10 {
    margin-top: 60px;
    border-top: 2px solid #ffb700;

}

.map iframe {
    width: 100%;
    border-top: 2px solid #ffb700;
}



/* .page11 */

.page11-main {
    width: 100%;
    display: flex;

}

.page11-main img {
    border: 1px solid white;
    width: 25%;


}


/* page12 */

.page12 {

    background-color: black;

}

.page12-main {
    padding-top: 80px;
    padding-left:40px;
    display: flex;
    justify-content: center;
    gap: 30px;

}

.page12-link {
    width: 300px;
    padding-bottom: 60px;


}

.page12-link p {

    font-size: 16px;
    line-height: 28px;
    color: #b0b5b9;
   

}

.home-icon {
    display: flex;
    gap: 20px;
    padding-top: 20px;


}

.home-icon div {
    color: #b0b5b9;
    font-weight: 500;
}


.page12-link .para {
    text-align: center;
    font-size: 24px;
    line-height: 30px;
    color: white;
}

.link li {

    font-size: 16px;
    font-weight: 400;
    line-height: 26px;

    padding-top: 20px;


}

.link {
    display: flex;
    justify-content: center;

}

.link ul a {
    text-decoration: none;
    color: #b0b5b9;

}

.page12-link .hours {

    font-size: 24px;
    line-height: 30px;
    color: white;
}

.days {
    padding:  10px 10px 10px  ;

}

.satu {
      padding:  10px 10px 10px  ;
}

.news-p p {
    padding-top: 30px;

}

.textarea1 {
    padding-top: 20px;

}

.text1 {
    padding-top: 20px;

}

.text1 input {
    padding: 15px;
    width: 100%;
}


.page12-link .news {
    color: white;
    font-size: 24px;
}

.icons img {
    width: 40px;
    padding: 10px;
}

.icons {
    padding-top: 10px;
}

/* page13 */

.page13 {
    display: flex;
    justify-content: center;
    padding-top: 40px;
    height: 100px;
    color: #b0b5b9;
}

.page13 .copyright {
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
}

.page13 .design {
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;

}

.page13 .powered {
    font-size: 16px;
    line-height: 26px;
    font-weight: bold;
}

.page13 .copyright:hover {
    cursor: pointer;
    color: black;
}

.page13 .design:hover {
    cursor: pointer;
    color: black;
}

.page13 .powered:hover {
    cursor: pointer;
    color: black;
}