@import url('https://fonts.googleapis.com/css2?family=Archivo:ital,wght@0,100..900;1,100..900&family=Montserrat:ital,wght@0,100..900;1,100..900&family=Nunito:ital,wght@0,200..1000;1,200..1000&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

:root {
    --main-color: #f64b3c;
    --second-color: #f6eedf;
}
body {
    overflow-x: hidden;
}
a {
    color: #fff;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* start campont */
.btn {
    background-color: var(--main-color);
    color: #fff;
    padding: 10px 50px;
    border-radius: 50px;
    border: none;
    font-size: 18px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    cursor: pointer;
    font-weight: bold;
    transition: all 0.3s;
}
.btn:hover {
    transform: scale(1.1);
}
.section-heading {
    color: var(--main-color);
    font-weight: bold;
    font-size: 45px;
    font-family: "Archivo", sans-serif;
    text-align: center;
    margin-bottom: 30px;
}

.section-heading + p {
    text-align: center;
    width: 550px;
    margin: 0 auto;
    font-family: "Montserrat", sans-serif;
    font-size: 18px;
    color: var(--main-color);

}

/* end campont */
.container {
    margin: 0 auto;
    padding: 0 15px;
}

/* Samall Screan */
@media (min-width: 768px) {
    .container {
        width: 720px;
    }
}

/* Medium Screan */
@media (min-width: 992px) {
    .container {
        width: 960px;
    }
}

/* Large Screan */
@media (min-width: 1200px) {
    .container {
        width: 1140px;
    }
}


/* start Landing */
.landing {
    background-image: url('../images/landing.png');
    background-position: center;
    background-size: cover;
    height: 100vh;
    color: #fff;

}

.landing nav {
    padding-top: 30px;
    box-shadow: inset 0px 50px 38px 0px #000;
}

.landing nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;

}
.landing nav {
    position: relative;
}
.landing nav .menu .menu-icon {
  font-size: 25px;
  display: none;
}
.landing nav .menu ul {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;

}

.landing nav .menu ul li a {
    font-size: 20px;
    text-transform: uppercase;
    font-family: "Poppins", sans-serif;
}

.landing nav .menu ul li a:hover {
    color: var(--main-color);
}
.landing .info {
    display: flex;
    align-items: center;
    height: calc(100% - 90px);
}



.landing .info h1 {
    font-size: 50px;
    font-family: "Archivo", sans-serif;
}

.landing .info p {
    font-family: "Nunito", sans-serif;
    font-size: 18px;
    line-height: 1.4;
    margin: 20px 0;
}


@media (max-width: 600px) {

    .landing nav .menu ul {
        position: absolute;
        top: 0px;
        right: 0;
        flex-direction: column;
        background-color: #000;
        width: 100%;
        padding: 20px 0;
        overflow: hidden;
        /* width: 0; */
        transition: all 0.5s;
    }
.landing nav .menu .menu-icon {
  display: block;
}
 .landing nav .menu ul .close {
    position: relative;
    right: -190px;
    border: 2px solid #fff;
    border-radius: 8px;
    padding: 2px;
 }


 }
/* End Landing */

/* Start Our Chef */
.our-chef {
    padding: 120px 0;
    background-color: var(--second-color);
    background-image: url(../images/our-chef.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* min-height: 600px; */
}

.our-chef .row {
    display: flex;
    gap: 90px;
    justify-content: center;
    align-items: center;
    padding: 30px 0;
}
.our-chef .row .card {
    text-align: center;

}

.our-chef .row .card h3 {
    margin: 20px 0 10px;
    font-size: 30px;
    font-weight: bold;
    color: var(--main-color);
    font-family: "Archivo", sans-serif;
}

.our-chef .row .card span {
    font-size: 20px;
    color: var(--main-color);
     font-family: "Nunito", sans-serif;
     font-weight: 600;

}

@media (max-width: 600px) {
    .our-chef .row {
        flex-direction: column;
    }
    .section-heading + p {
        width: 400px;
    }
}
/* End Our Chef */

/* Start Best Burger */
.best-burger {
    background-color: var(--main-color);
    padding: 120px 0;
    border-bottom: 15px solid #ed4634;

}

.best-burger .row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
}

.best-burger .row .burger-img {
    width: 350px;
}

.best-burger .row .burger-img img {
    width: 100%;
}

.best-burger .row .info {
    color: #fff;
}

.best-burger .row .info h2 {
    font-size: 40px;
    font-weight: bold;
    font-family: "Archivo", sans-serif;
    margin-bottom: 25px;
}

.best-burger .row .info p {
    font-size: 20px;
     font-family: "Nunito", sans-serif;
     width: 500px;
     margin-bottom: 25px;
}
.best-burger .row .info .btn {
    background-color: #fff;
    color: var(--main-color);
}

@media (max-width: 600px) {
   .best-burger .row {
    flex-direction: column;
   }
   .best-burger .row .info {
    text-align: center;
    
   }
   .best-burger .row .info p {
    width: fit-content;
   }
}
/* End Best Burger */

/* Start Big Burger  */
.big-burger {
    padding: 235px 0;
    background-color: var(--second-color);
    background-image: url(../images/big-bugerbg.png);
      background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
} 
.big-burger .row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 90px;
}

.big-burger .row .burger-img {
    width: 350px;
}

.big-burger .row .burger-img img {
    width: 100%;
}


.big-burger .row .info {
    color: var(--main-color);
}

.big-burger .row .info h2 {
    font-size: 40px;
    font-weight: bold;
    font-family: "Archivo", sans-serif;
    margin-bottom: 25px;
}

.big-burger .row .info p {
    font-size: 20px;
     font-family: "Nunito", sans-serif;
     width: 500px;
     margin-bottom: 25px;
}

@media (max-width: 600px) {
   .big-burger .row {
    flex-direction: column;
   }
   .big-burger .row .info {
    text-align: center;
    
   }
   .big-burger .row .info p {
    width: fit-content;
   }
}
/* End Big Burger  */

/* Start Statistics */
.statistics {
    background-color: var(--main-color);
    padding: 60px 0 120px;
}
.statistics .section-heading,
.statistics .section-heading + p  {
    color: #fff;
}
.statistics .row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin-top: 60px;
}
.statistics .row .item {
    width: 200px;
    height: 200px;
    text-align: center;
    color: #fff;
    border: 3px solid #fff;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.statistics .row .item h3 {
    font-size: 50px;
    font-family: "Archivo", sans-serif;
}

.statistics .row .item span {
    font-size: 20px;
    text-transform: uppercase;
    font-family: "Montserrat", sans-serif;
    font-weight: 700;
}
@media (max-width: 600px) {
    .statistics .row {
        flex-direction: column;
    }
}
/* End Statistics */

/* ٍStart Popular Package */
.package {
    padding: 120px 0;
    background-color: var(--second-color);
    background-image: url(../images/popular.png);
}

.package .row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
}

.package .row .card {
    background-color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 20px;
    border-radius: 5px;
}
.package .row .card h4 {
    color: var(--main-color);
     font-family: "Archivo", sans-serif;
     font-size: 30px;
     margin-bottom: 30px;
}

.package .row .card span {
    margin: 20px 0;
    color: var(--main-color);
    font-size: 25px;
    font-weight: 700;
    font-family: "Archivo", sans-serif;
}

.package .row .card  p {
    text-align: center;
    color: var(--main-color);
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
}
@media (max-width: 600px){
    .package .row {
        flex-direction: column;
    }
}
/* End Popular Package */

/*  Start Testimonial  */
.testimonial {
    background-image: url(../images/barry.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    padding: 200px 0;
    text-align: center;
}
.testimonial p {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    font-family: "Archivo", sans-serif;
    line-height: 1.3;
    margin-bottom: 30px;
}
.testimonial h2 {
    font-family: "Poppins", sans-serif;
    color: #fff;
    font-size: 30px;
}
/*  End Testimonial  */

/* Start form */
.form {
    padding: 120px 0;
    background-image: url(../images/form.png);
    background-color: var(--second-color);
}
.form form {
    position: relative;
    text-align: center;
    margin-top: 50px;
}

.form form input,.form form button {
    padding: 15px 20px;
    border-radius: 40px;
    outline: none;
    border: navajowhite;

}
.form form  ::placeholder {
    color: #c1ae9f;
}
.form form input {
    width: 470px;
}
.form form button {
    position: absolute;
    right: 320px;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    background-color: var(--main-color);
    color: #fff;
    /* font-size: 14px; */
    padding: 14px 25px;
    text-transform: uppercase;
    font-family: "Nunito", sans-serif;
    cursor: pointer;
    transition: all 0.3s;
}
.form form button:hover {
    background-color: #ed4634;
}

@media (max-width: 600px) {
    .form form input {
    width: 400px;
}
.form form button {
        right: 10px;
}
}
/* End form */

/* Start Footer */
footer {
    background-color: #222222;
    padding: 120px 0 20px;
}
footer .row {
    display: flex;
    color: #fff;
    justify-content: space-between;
    align-items: flex-start;
}
footer .about h3 {
    font-family: "Archivo", sans-serif;
}

footer .about p {
    font-family: "Nunito", sans-serif;
    margin: 20px 0;
}
footer .about .icons{

    display: flex;
    gap: 10px;
}
footer .about .icons i{
    font-size: 22px;
    background-color: #fff;
    color: #000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    width:  40px;
    height: 40px;
    transition: all 0.3s;

}
footer .about .icons i:hover {
    background-color: var(--main-color);
    color: #fff;
}

footer .row .lists {
    display: flex;
    gap:100px;

}

footer .row .lists h4 {
    font-size: 20px;
    margin-bottom: 20px;
      font-family: "Archivo", sans-serif;
}
footer .row .lists li {
    font-size: 18px;
    padding: 5px 2px;
    font-family: "Nunito", sans-serif;
    transition: all 0.3s;
}
footer .row .lists li a:hover {
    color: var(--main-color);
}
@media (max-width:600px){
    footer .row {
        flex-direction: column;
        justify-content: flex-start;
    }
    footer .row .lists {
        flex-direction: column;
        gap: 5px;
    }
    footer .row .lists h4 {
        margin: 20px 0;
    }
}
/* End Footer */