/* nav bar */
@media screen and (max-width: 1200px) {
  nav .nav-links {
    display: none;
  }
}
/*^========> Header <========*/
@media screen and (min-width: 1200px) {
  header {
    min-height: 100vh;
  }
}

@media screen and (max-width: 992px) {
  header .container {
    flex-direction: column-reverse;
    gap: 50px;
  }
  header .container > * {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
  header .btn-main {
    border-radius: 100vh;
  }
}
@media screen and (max-width: 400px) {
  nav {
    top: -1px;
  }
  .header-content .btn-group {
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 765px) {
  .chefs .chefs-cards {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 1fr);
    gap: 40px;
  }
}
@media screen and (min-width: 767px) {
  .chefs .chefs-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
  }
}
@media screen and (min-width: 991px) {
  .chefs .chefs-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 1fr;
    grid-column-gap: 25px;
  }
}

/* gallery section */
@media screen and (max-width: 600px) {
  .gallery .gallery-photos {
    flex-direction: column;
  }
}

/*  */
@media screen and (max-width: 700px) {
  .details {
    flex-direction: column;
  }
  .contact .details .left,
  .contact .details .right {
    width: 100%;
  }
  .contact form .input-group {
    flex-wrap: wrap;
  }
  .contact form :is(input) {
    width: 100%;
  }
}
/* footer */
@media screen and (max-width: 765px) {
  footer .container {
    flex-direction: column;
  }
}
