* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;       
}

body {
    font-family: "Merriweather", sans-serif;
    background-color: #ebf2ff;
    overflow-x: hidden;
    transition: 0.5s;
  }

section {
    margin: 3rem 0;
  }

.button__primary {
    background-image: linear-gradient(
        to right,
        #ff512f 0%,
        #dd2476 51%,
        #ff512f 100%
        );
        
        margin: 10px;
        color: #fff;
        border: none;
        padding: 0.5rem 1rem;
        text-align: center;
        justify-content: center;
        text-transform: capitalize;
        transition: 0.5s;
        font-weight: 600;
        background-size: 200% auto;
        border-radius: 6px;
        cursor: pointer;
        display: block;
}

.container {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}

.navbar {
    position: sticky;
    height: 80px;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #f9fafc;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1),
    0 4px 6px -2px rgba(0, 0, 0, 0.05);
    z-index: 9999;
  }

.navbar__brand{
    width: 100px;
}

.navbar__logo{
    width: 100%;
}

.nav__item:hover{
    border: 2px solid pink;
}

.hero__image__container {
    position: relative;
    width: 100%;
}

.hero__image__shape {
    position: absolute;
    right: 2;
  }

  .hero__image {
    margin-top: 2rem;
    position: absolute;
    width: 100%;
    right: auto;
    left: auto;
    z-index: 2;
    border-radius: 6px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
  }

.hero__text {
    font-size: 25px;
    margin: 20px 0;
    font-size: 1.875rem;
    line-height: 2.25rem;
    color: #1d3557;
    font-weight: 900;
}
/* Video Footage  */

.video__footage__container {
    margin-top: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .video__footage {
    position: relative;
  }
  
  .video__footage::before {
    background-image: linear-gradient(
      to right,
      #ff512f 0%,
      #dd2476 51%,
      #ff512f 100%
    );
    content: "";
    top: 0;
    left: 0;
    position: absolute;
    transform: translate(1rem, 1rem);
    height: 100%;
    width: 100%;
    z-index: -1;
  }
  
  .video__footage__text {
    margin-top: 2rem;
    color: #1d3557;
    font-size: 1.25rem;
    font-weight: 300;
    text-align: center;
  }

.explore__menu__text {
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    color: #1d3557;
    font-weight: 900;
}

.food__card {
    background-color: #fff;
    border-radius: 8px;
    margin-bottom: 15px;
}

.food__card__image__container {
    width: 100%;
}

.food__image {
    width: 100%;
    border-radius: 8px 8px 0 0; 
}

.food__card__description{
    padding: 15px;
}

    /* Flexxxx Restaurant */
.restaurant__text{
    font-size: 30px;
    margin-top: 50px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1.5rem;
    line-height: 2rem;
    color: #1d3557;
    font-weight: 900;
}

.restaurant__images__container {
    width: 100%;
}

.restaurant__images__row__one, .restaurant__images__row__two {
    width: 100%;
    display: flex;
    gap: 3px;
}

.restaurant__images__row__one{
    align-items: baseline;
    margin-bottom: 3px;
}

.restaurant__image__1 , 
.restaurant__image__4{
    width: 100%;
    height: 120px;
}

.restaurant__image__2, 
.restaurant__image__3 {
    width: 120%;
    height: 200px;
}


.restaurant__1,
.restaurant__2, 
.restaurant__3, 
.restaurant__4 {
    width: 100%;
    height: 100%;
}

/* Email Subscribe Button */
.email__subcribe__container {
    margin-top: 3rem;
    width: 100%;
    padding: 15px;
    margin-right: auto;
    margin-left: auto;
  }
  
  .email__subcribe__input__field {
    display: flex;
    align-items: center;
  }
  
  .email__input {
    border: 1px solid #ee89a0;
    background-color: #fcedf0;
    color: #1d3557;
    font-weight: 700;
    padding: 0.5rem;
    border-radius: 4px;
  }
  
  .email__input::placeholder {
    color: #bdbcbc;
  }

  /* Quatoes Container */
  .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: 3;
    margin: 0 1rem;
    text-align: center;
  }

  /* Footer Section  */
  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 {
    width: 300px;
    filter: brightness(0) invert(1);
  }
  
  footer > ul {
    margin-top: -1rem;
    color: #fff;
  }
  
  footer > ul > li {
    margin: 5px 0;
  }

@media (min-width: 768px) {
    .navbar {
        justify-content: space-between;
        padding: 1px 30px;
    }
    .hero__container {
        margin-top: 20px;
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
    }
    .explore__menu__lists{
        margin-top: 40px;
        display: flex;
        gap: 15px;
        padding: 0 30px;
    }
    #pizza__card{
        margin-top: -20px;
        margin-bottom: 30px;
    }

    .explore__menu__container{
        margin-top: 30px;
    }
    .explore__menu__view__more {
        display: flex;
        justify-content: center;
    }
    .explore__menu__container{
        position: relative;
    }
    .explore__menu__gradient__bg{
        position: absolute;
        top: 0;
        left: 0;

        width: 100%;
        height: 100%;

        background-image: linear-gradient(
        to right,
        #ff512f 0%,
        #dd2476 51%,
        #ff512f 100%
        );
        
        transform: skewY(-5deg);
        z-index: -3;
    }
    .restaurant__container{
        display: flex;
        align-items: center;
    }
    .restaurant__text{
        line-height: 2.25rem;
        margin: 20px 0;
        width: 100%;
        font-size: 35px;
    }
    /* Email Subscribe button */
    .email__subcribe__container {
        display: flex;
    
        justify-content: center;
      }
      .email__input {
        width: 20rem;
      }
      /* Quatoes Container */
      .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 {
        color: #fff;
        z-index: 3;
        margin: 0 1rem;
        text-align: center;
        font-size: 2rem;
        font-weight: 500;
        line-height: 1.2;
      }
      /* Footer Section  */
      footer {
        margin-top: 3rem;
        display: flex;
        flex-direction: row;
        justify-content: space-evenly;
      }
}

@media (min-width: 1020px){
    .container {
        max-width: 900px;
    }
    .navbar__brand {
        width: 150px;
    }
    .button__primary {
        padding: 20px;
        font-size: 20px;
    }
    .hero__description {
        width: 100%;
    }
    .hero__text {
        font-size: 40px;
    }
    .explore__menu__lists{
        gap: 40px;
    }
    .explore__menu__text{
        font-size: 50px;
    }
}

@media (min-width: 1400px) {
    .container {
        max-width: 1250px;
    }
}