*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Poppins', sans-serif;
}
h1,h2,h3,h4,p{
    color: rgb(82, 64, 43);
}
button{
    cursor: pointer;
}

/* main wrappper */
.wrapper{

    background-image:url('./Images/background.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
    background-attachment: fixed;
}


/* website content container */
.main{
    width: 70vw;
    background-color: #e7e3dcd7;
    box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.438);
}




/* header */
header {
    padding: 10px 20px;
    background-color: #333;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    flex-wrap: wrap;
}

.logo img {
    width: 110px;
}

.menu {
    flex: 1;
    position: relative;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* by this the menu will show and hide */
.menu-toggle {
    display: none;
}

/* its the icon by what you can understand that there is a menu*/
.hamburger-icon {
    display: none;
    font-size: 30px;
    cursor: pointer;
    color: #fff;
    margin-left: 10px;
}

/* this is all your menu */
.menuList {
    display: flex;
    list-style: none;
    justify-content: center;
    gap: 20px;
}

.nav-link {
    text-decoration: none;
    color: #e7e3dc;
    font-size: 15px;
    padding: 8px 12px;
    transition: 0.5s;
}

.nav-link:hover {
    color: #a1f0f0;
}

.menuSearch form {
    display: flex;
    align-items: center;
}

.menuSearch input[type="search"] {
    padding: 8px 12px;
    border-radius: 5px;
    border: none;
    outline: none;
}

/* this is most important...by this hamburger is behave the dropdown the menu*/
.menu-toggle:checked + .hamburger-icon + .menuList {
    display: block;
}

/* header */











footer{
    background-color: #333;
    padding: 30px;
    text-align: center;

}
footer p{
    color: #e7e3dc;
}









/* responsive part */
@media (max-width: 1024px) { 
    .sliderContainer {
        animation: slide 10s infinite; 
    }

    .recepieItem {
        flex: 0 0 calc(100% / 2 - 15px); 
        min-width: calc(100% / 2 - 15px);
    }
}


@media (max-width: 991px) {
    .wrapper {
        padding: 0 0;
    }
    .main {
        width: 100vw;
    }

    .hero{
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    .hero-img, .welcome-info, .spoon-img, .offer{
        width: 100%;
    }
    .welcome-info{
        padding: 10px;
    }
    .welcome-info h1{
        font-size: 2rem;
        font-weight: 900;
    }
    .welcome-info p{
        font-size: 1.4rem;
    }
    .spoon-img{
        margin-top: 10px;
    }

}

@media (max-width: 768px) {
    .sliderContainer {
        animation: slide 8s infinite; 
    }

    .recepieItem {
        flex: 0 0 100%;
        min-width: 100%;
    }
    .menuList {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 50px;
        left: 0;
        background-color: #333;
        text-align: center;
        z-index: 10;
    }

    .menuList li {
        padding: 15px 0;
        border-bottom: 1px solid #fff;
    }

    .menuSearch {
        margin-top: 10px;
    }

    .hamburger-icon {
        display: block;
    }

    .menu-toggle:checked + .hamburger-icon + .menuList {
        display: block;
    }
}


@media (min-width: 769px) {
    .menuList {
        display: flex;
        flex-direction: row;
    }
}



@media (max-width: 520px) {
    .hero-img,
    .welcome-info,
    .spoon-img,
    .offer {
        width: 100%;
    }

    .welcome-info {
        padding: 5px;
    }

    .welcome-info h1 {
        font-size: 1.5rem;
    }

    .welcome-info p {
        font-size: 0.9rem;
    }

    .spoon-img img,
    .offer img {
        max-width: 80%;
    }
}





  
  a {
    text-decoration: none;
    transition: all 0.5s ease-in-out;
  }
  
  a:hover {
    transition: all 0.5s ease-in-out;
  }
  
  .we-are-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    width: 100%;
    height: 900px;
  }
  
  @media screen and (max-width: 860px) {
    .we-are-block {
      height: 2200px;
    }
  }
  
  @media screen and (max-width: 500px) {
    .we-are-block {
      height: 2300px;
    }
  }
  
  #about-us-section {
    background: #000000a4;
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  @media screen and (max-width: 860px) {
    #about-us-section {
      flex-direction: column;
      justify-content: space-between;
    }
  }
  
  .about-us-image {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    overflow: hidden;
  }
  
  @media screen and (max-width: 860px) {
    .about-us-image {
      position: relative;
      width: 100%;
      height: 45%;
    }
  }
  
  @media screen and (max-width: 747px) {
    .about-us-image {
      height: 35%;
    }
  }
  
  @media screen and (max-width: 644px) {
    .about-us-image img {
      position: absolute;
      left: -220px;
    }
  }
  
  .about-us-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    width: 40%;
    height: 80%;
    margin-right: 850px;
    margin-left: 12px;
    z-index: 2;
  }
  
  @media screen and (max-width: 1353px) {
    .about-us-info {
      margin-right: 400px;
      width: 60%;
      background: #0c4c9199;
      padding: 0px 25px 0px 0px;
    }
  }
  
  @media screen and (max-width: 1238px) {
    .about-us-info {
      margin-right: 340px;
      width: 100%;
    }
  }
  
  @media screen and (max-width: 1111px) {
    .about-us-info {
      margin-right: 270px;
    }
  }
  
  @media screen and (max-width: 910px) {
    .about-us-info {
      margin-right: 150px;
    }
  }
  
  @media screen and (max-width: 860px) {
    .about-us-info {
      margin: 0px 0px 0px 0px !important;
      padding: 0px 20px 0px 20px !important;
      width: 100%;
      height: 55%;
      align-items: center;
    }
  }
  
  @media screen and (max-width: 747px) {
    .about-us-info {
      height: 65%;
    }
  }
  
  .about-us-info h2 {
    color: white;
  }
  
  @media screen and (max-width: 860px) {
    .about-us-info h2 {
      text-align: center;
    }
  }
  
  .about-us-info p {
    color: white;

  }
  
  @media screen and (max-width: 860px) {
    .about-us-info p {
      text-align: center;
    }
  }
  
  .about-us-info a {
    background-color: white;
    color: #0c4c91;
    width: 180px;
    text-align: center;
    padding: 15px 0px 15px 0px;
    font-size: 14pt;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  }
  
  .about-us-info a:hover {
    background: #404140;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    transform: translateY(10px);
  }
  
  #history-section {
    width: 100%;
    height: 50%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    position: relative;
  }
  
  @media screen and (max-width: 860px) {
    #history-section {
      flex-direction: column;
      justify-content: space-between;
    }
  }
  
  .history-image {
    position: absolute;
    top: 0;
    left: 0;
    max-width: 820px;
    height: 100%;
    overflow: hidden;
  }
  
  @media screen and (max-width: 860px) {
    .history-image {
      position: relative;
      width: 100%;
      height: 40%;
    }
  }
  
  @media screen and (max-width: 747px) {
    .history-image {
      height: 35%;
    }
  }
  
  @media screen and (max-width: 644px) {
    .history-image img {
      position: absolute;
      right: -220px;
    }
  }
  
  .history-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-evenly;
    width: 40%;
    height: 80%;
    margin-left: 850px;
    margin-right: 12px;
    z-index: 2;
  }
  
  @media screen and (max-width: 1353px) {
    .history-info {
      margin-left: 400px;
      width: 60%;
      background: #ffffff99;
      padding: 0px 0px 0px 25px;
    }
  }
  
  @media screen and (max-width: 1238px) {
    .history-info {
      margin-left: 340px;
      width: 100%;
    }
  }
  
  @media screen and (max-width: 1111px) {
    .history-info {
      margin-left: 270px;
    }
  }
  
  @media screen and (max-width: 910px) {
    .history-info {
      margin-left: 150px;
    }
  }
  
  @media screen and (max-width: 860px) {
    .history-info {
      margin: 0px 0px 0px 0px !important;
      padding: 0px 40px 0px 40px !important;
      width: 100%;
      height: 60%;
      align-items: center;
    }
  }
  
  @media screen and (max-width: 747px) {
    .history-info {
      height: 65%;
    }
  }
  
  .history-info h2 {
    color: rgb(82, 64, 43);
  }
  
  @media screen and (max-width: 860px) {
    .history-info h2 {
      text-align: center;
    }
  }
  
  .history-info p {
    color: rgb(82, 64, 43);
    font-size: 14pt;
    text-align: left;
  }
  
  @media screen and (max-width: 860px) {
    .history-info p {
      text-align: center;
    }
  }
  
  .history-info a {
    background-color: #0c4c91;
    color: white;
    width: 180px;
    text-align: center;
    padding: 15px 0px 15px 0px;
    font-size: 14pt;
    box-shadow: rgb(38, 57, 77) 0px 20px 30px -10px;
  }
  
  .history-info a:hover {
    background: #404140;
    color: white;
    box-shadow: rgba(0, 0, 0, 0.56) 0px 22px 70px 4px;
    transform: translateY(10px);
  }
  















