*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    font-family: 'Merriweather', serif;
    background-color: #ebf2ff;
    overflow-x: hidden;
    transition: all 0.5s;
}
button{
    background-color: transparent;
    border:none;
}

section{
    margin:4rem 0;
}

.container{
    width:100%;
    padding: 0 15px;
    margin: 0 auto;/*auto -equal space from both sides*/
}


.navbar{
    position:sticky;
    top:0;
    display:flex;
    align-items:center;
    background-color: white;
    justify-content: space-between;
    padding: 0 20px;
    z-index:9999;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);

}
.brand__logo{
    width:100%;
    height:100%;
}

.navbar__brand{
    width:100px;
}

.primary__button {
    background-image: linear-gradient(
      to right,
      #ff512f 0%,
      #dd2476 51%,
      #ff512f 100%
    );
    padding: 10px 15px;
    color:white;
    border-radius:4px;
    background-size: 200% auto;
    transition:1s;
    cursor: pointer;
}
  
.primary__button:hover{
      background-position: right center;
      color:white;
  }

.hero__image__container {
    position: relative;
    width: 100%;
}

.hero__image{
    position:absolute;
    width:100%;
    right:auto;
    left:auto;
    z-index:3;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.hero__image__shape {
    position:absolute;
    right:2;
    z-index: 2;
}

.hero__description{
    display: flex;
    flex-direction: column;
    gap:15px;
    align-items: flex-start;
}

.text__heading{
    font-size:1.8rem;
    line-height:2.25rem;
    color: #1d3557;
    font-weight:bold;
}

.video__footage__container{
    margin-top: 1rem;
    display:flex;
    flex-direction:column;
    justify-content: center;
    align-items:center;
    width:100%;
}

.video__footage {
    position:relative;
}

.video__footage::before{
    content:"";
    background-image: linear-gradient(
      to right,
      #ff512f 0%,
      #dd2476 51%,
      #ff512f 100%
    );
    position:absolute;
    top:0;
    left:0;
    transform:translate(2rem, 1rem);
    height:100%;
    width:90%;
    z-index:-1;
}

.chef__video{
    width:100%;
    height:100%;
}

.video__footage__text{
    margin-top:2rem;
    color: #1d3557;
    font-size:1.25rem;
    font-weight:300;
    text-align: center;
}

.food__list__container{
    position:relative;
    width:100%;
    margin:2rem 0;
    
}

.food__menu__card{
    background-color: white;
    width:100%;
    border-radius:6px;
}

.food__menu__card__image{
    width:100%;
    border-radius:6px 6px 0 0;
}

.food__menu__card__title{
    font-size:1.25rem;
    font-weight:700;
    color:#1d3557;
    margin:0.5rem 0;
}

.food__menu__card__restaurents{
    color:#1d3557;
}

.food__menu__card__description{
    padding: 1rem;
}

.food__menu__card__list{
    margin: 1rem 0 ;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.restaurant__list__container {
    margin-top: 3rem;
  }
  
  .restaurant__list__image__container {
    width: 100%;
  }
  
  .restaurant__list__row__1 {
    display: flex;
    align-items: baseline;
  }
  .restaurant__list__row__2 {
    display: flex;
    align-items: flex-start;
    margin-top: 10px;
  }
  
  .restaurant1,
  .restaurant4 {
    border-radius: 4px;
    margin: 0 4px;
    width: 150px;
    height: 80px;
  }
  .restaurant2,
  .restaurant3 {
    border-radius: 4px;
    margin: 0 4px;
    width: 200px;
    height: 100px;
  }

  .email{
    margin:4rem 0;
  }

  .email__title{
    margin-right: 199px;
  }
  .email__input{
    padding: 9px 10px;
    margin-right: 27px;
    background-color: #ffc0cb42;
    border: 1px solid #720c4f;
    border-radius: 7px;
    font-size: 14px;
    font-weight: 600;
  }

  .quote__container {
    position: relative;
    margin-top: 4rem;
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 200px;
    width: 100%;
    border-radius: 13px;
    background: url("https://images.unsplash.com/photo-1522336572468-97b06e8ef143?ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&ixlib=rb-1.2.1&auto=format&fit=crop&w=755&q=80") center center / cover no-repeat;
}

.quote_image_overlay {
  position: absolute;
  height: 200px;
  width: 100%;
  border-radius: 13px;
  background-color: #0a4065;
  opacity: 49%;
}

.quote__image__text {
  color: #fff;
  z-index: 4;
  margin: 0 1rem;
  text-align: center;
}

footer{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  border-radius: 1rem 1rem 0 0;
   background-image: linear-gradient( to right, #ff512f 0%, #dd2476 51%, #ff512f 100% ); 
}

footer img{
  filter: brightness(0) invert(1);
}

footer ul{
  color:#fff;
  list-style-type:none;
  margin-top:-1rem;
}

footer ul li{
  margin:5px 0;
}

footer ul li:hover{
  cursor: pointer;
  font-size: 1.1rem;
}
@media (min-width: 768px) {
      .hero__container{
          display: flex;
          flex-direction: row-reverse;
          align-items:center; 
      }
      .hero__image {
        margin-top: 2rem;
    }
    .text__heading {
        font-size: 2rem;
        font-weight: 900;
      }
      .food__list__container {
        margin: 5rem 0;
      }
    
      .food__menu__card__list {
        flex-direction: row;
        padding: 2rem;
      }
      .food__menu__card__list > div:nth-child(2) {
        margin-top: -1rem;
        margin-bottom: 1rem;
      }
    
      .food__list__container__diagonal {
        position:absolute;
        left: 0;
        top: 0;
        height: 100%;
        width: 100%;
        transform: skewY(-5deg);
        background-image: linear-gradient(
          to right,
          #ff512f 0%,
          #dd2476 51%,
          #ff512f 100%
        );
        z-index: -3;
      }
      .restaurant__list__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
      }
    
      .restaurant__list__text {
        width: 100%;
      }
      .email{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
      }
      .email__title{
        margin-right: 199px;
      }

      .email__input {
        width: 20rem;
        border:blue;
    }
    .quote__container {
      height: 300px;
      width: 100%;
  }

  .quote_image_overlay {
    position: absolute;
    height: 300px;
    width: 100%;
    border-radius: 13px;
    background-color: #0a4065;
    opacity: 49%;
}
.quote__image__text{
  font-size:2rem;
  font-weight:500;
  line-height: 1.3;
  margin: 0 1rem;
}
    footer {
      margin-top: 3rem;
      display: flex;
      flex-direction: row;
      justify-content: space-evenly;
  }
}
@media (min-width: 1024px) {
    .container{
        max-width: 900px;
    }
     .navbar{
         padding:0 3rem;
     }
     .navbar__brand{
         width:100px;
     } 
     .primary__button{
         font-size:20px;
         padding:15px 20px;
         font-weight:bold;
     }
     .text__heading {
        font-size: 3rem;
        line-height: 3.2rem;
      }
      .video__footage__text{
          width:70%;
      }
      
      .restaurant1,
      .restaurant4 {
        width: 200px;
        height: 120px;
      }
      .restaurant2,
      .restaurant3 {
        width: 280px;
        height: 200px;
      }
      .restaurant__list__image__container {
        width: 100%;
      }

}


@media (min-width: 1280px){
    .container{
        max-width:1 100px;
    }
}

@media (min-width: 1536px) {
    .container {
      max-width: 1250px;
    }
  }