* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-align: center;
  font-family: "Playfair Display", serif;
}
body {
  background: linear-gradient(to right, #eebea3, #ce916e);
  height: 100vh;
  overflow-x: hidden;
}
/* navbar */
header img {
  width: 130px;
  height: 130px;
  border-radius: 50%;
  object-fit: cover;
  margin-left: 20px;
}
header {
  position: sticky;
  top: 0;
  z-index: 1;
}
.nav a {
  text-decoration: none;
  padding: 5px 40px;
  color: white;
  font-size: larger;
  margin-left: 10px;
}
.nav a:hover {
  background-color: #bb4b0a;
  border-radius: 10%;
  transition: 1000ms;
  scale: 1.05;
  box-shadow: -2px -2px 3px 0 #853003;
}
.page {
  border-radius: 10%;
  background-color: #bb4b0a;
  box-shadow: -2px -2px 3px 0 #853003;
}
.navbar {
  width: 100%;
  height: 20px;
  margin: 0 auto;
  padding: 70px 0px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #f16a1c;
}

.navbar_toggle {
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  background: transparent;
  border-style: none;
  margin-right: 20px;
  display: none;
}
.nav {
  margin-right: 70px;
}
/* drop down menu */
.drop_down {
  background-color: #de550c;
  width: 100vw;
  display: none;
  overflow: hidden;
}
.drop_down a {
  text-decoration: none;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100px;
  overflow: hidden;
  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  font-weight: bolder;
}
.drop_page {
  background-color: #622402;
}
/* slider */
.slides {
  overflow: scroll;
  scrollbar-width: none;
  margin-bottom: 50px;
  /* box-shadow: 0 0 20px 1px black; */
}
.img_container img {
  height: 400px;
  width: 400px;
  object-fit: cover;
  padding: 7px 15px 0 0;
}
/* slide animation */
@-webkit-keyframes slide_animation {
  0% {
    left: 0px;
  }
  10% {
    left: 0px;
  }
  20% {
    left: 500px;
  }
  30% {
    left: 1000px;
  }
  40% {
    left: 1500px;
  }
  50% {
    left: 1500px;
  }
  60% {
    left: 1000px;
  }
  70% {
    left: 500px;
  }
  80% {
    left: 0px;
  }
  90% {
    left: 0px;
  }
  100% {
    left: 0px;
  }
}
.img_slides {
  display: flex;
  margin: 0 0 0 -2650px;
  position: relative;
  -webkit-animation-name: slide_animation;
  -webkit-animation-duration: 30s;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  -webkit-animation-play-state: running;
}
/* mid section one */
.welcome {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: bold;
  padding-top: 50px;
  margin-bottom: 50px;
}
.mid_content {
  background-color: wheat;
  overflow: hidden;
  padding: 0 0 50px 0;
}
.mid_content_one {
  text-align: left;
  display: flex;
  justify-content: space-evenly;
}
@-webkit-keyframes midtextone {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mid_text_one {
  padding-left: 30px;
  text-align: left;
  margin-top: 100px;
  font-size: 23px;
  /* opacity: 0; */
  animation: slide-in 2s ease-in-out forwards;
  -webkit-animation-name: midtextone;
}
@-webkit-keyframes midtextone_img {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.mid_img {
  overflow: hidden;
  width: 500px;
  height: 500px;
  object-fit: contain;
  animation: slide-in 2s ease-in-out forwards;
  -webkit-animation-name: midtextone_img;
}
/* mid section two */
.featured {
  text-decoration: underline;
}
.food_details_component {
  border: 2px solid #f16a1c;
  margin-top: 30px;
  padding: 30px 0;
  border-radius: 30px;
}
.food_details_component img {
  width: 300px;
  height: 300px;
  object-fit: cover;
  border-radius: 40px;
  border: 2px solid #f16a1c;
  margin: 10px;
}
.food_details_component h3 {
  font-size: 25px;
  text-decoration: underline #f16a1c 4px;
  margin: 40px 0;
}
.food_details_a h3 {
  margin-right: 1000px;
}
.food_details_b h3 {
  margin-left: 1000px;
}
.food_details_c h3 {
  margin-right: 1000px;
}
.food_details_d h3 {
  margin-left: 1000px;
}
.food_details_component img:hover {
  box-shadow: -4px -4px 5px 0 #853003, 4px 4px 5px 0 #853003;
  transition: 100ms;
}
/* for images transition delay */
@-webkit-keyframes food_details_a {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.food_details_a_images {
  -webkit-animation-name: food_details_a;
  -webkit-animation-duration: 3s;
}
@-webkit-keyframes food_details_b {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.food_details_b_images {
  -webkit-animation-name: food_details_b;
  -webkit-animation-duration: 4s;
}
@-webkit-keyframes food_details_c {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.food_details_c_images {
  -webkit-animation-name: food_details_c;
  -webkit-animation-duration: 5s;
}
@-webkit-keyframes food_details_d {
  0% {
    opacity: 0;
    transform: translateX(-100%);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}
.food_details_d_images {
  -webkit-animation-name: food_details_d;
  -webkit-animation-duration: 6s;
}
.feedback {
  margin: 50px 0;
  background-color: #f5bd9d;
  padding: 20px 0;
  box-shadow: -4px -4px 5px 0 #853003;
}
.feedback_img {
  display: flex;
  justify-content: space-around;
  margin-top: 30px;
}
.feedback_img a img {
  border: 1px solid #f16a1c;
  border-radius: 20px;
}
.feedback_img a img:hover {
  box-shadow: -4px -4px 5px 0 #853003;
  transition: 200ms;
}
@-webkit-keyframes check_out_transition {
  0% {
    color: #f16a1c;
    transition: 500ms;
  }
  50% {
    color: black;
    transition: 500ms;
  }
  100% {
    color: #f16a1c;
    transition: 500ms;
  }
}
.check_out {
  -webkit-animation-name: check_out_transition;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
}
/* FOOTER */
footer {
  background-color: #f16a1c;
  padding: 50px 0 30px 0;
  color: wheat;
}
.footer_text {
  font-size: 20px;
  padding: 0 20px;
}
.socials_logo {
  margin: 0 20px;
}
.copyright {
  margin: 20px 0;
  text-align: center;
}
@media (max-width: 1214px) {
  .food_details_a h3 {
    margin-right: 0;
  }
  .food_details_b h3 {
    margin-left: 0;
  }
  .food_details_c h3 {
    margin-right: 0;
  }
  .food_details_d h3 {
    margin-left: 0;
  }
  .feedback_img {
    flex-direction: column;
  }
  .feedback_img a img {
    margin-bottom: 50px;
  }
}
@media (max-width: 1182px) {
  .mid_img {
    width: 300px;
    height: 300px;
  }
  iframe {
    width: 400px;
    height: 200px;
    margin-top: 400px;
  }
}
@media (max-width: 1085px) {
  .mid_text_one {
    font-size: 20px;
  }
  .food_details_component img {
    width: 380px;
    height: 260px;
  }
}
@media (max-width: 1024px) {
  .nav a {
    display: none;
  }
  .navbar_toggle {
    display: block;
    font-size: 35px;
  }
  .drop_down {
    display: none;
    text-transform: uppercase;
  }
  .drop_down.visible {
    display: block;
  }
}
@media (max-width: 992px) {
  header img {
    width: 100px;
    height: 100px;
  }
  /* for the cakes */
  @-webkit-keyframes food_details_a {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* for the parfaits */
  @-webkit-keyframes food_details_b {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  /* for the small chops */
  @-webkit-keyframes food_details_c {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @-webkit-keyframes food_details_d {
    0% {
      opacity: 0;
      transform: translateY(100%);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media (max-width: 920px) {
  .mid_content_one {
    margin-top: -110px;
    flex-direction: column;
    align-items: center;
  }
  .mid_content .welcome {
    text-decoration: none;
    font-style: italic;
  }
  .mid_text_one {
    margin-bottom: 50px;
    text-align: center;
  }
}
@media (max-width: 820px) {
  .food_details_component img {
    width: 250px;
    height: 260px;
  }
}
@media (max-width: 807px) {
  .food_details_component img {
    width: 250px;
    height: 260px;
  }
}
@media (max-width: 750px) {
  /* slider */
  .img_container img {
    height: 250px;
    width: 250px;
    object-fit: cover;
  }
  .img_slides {
    margin: 0 0 0 -2000px;
  }
  .mid_content {
    font-size: 10px;
  }
  .pastry {
    flex-direction: column;
  }
  .featured {
    padding: 0 20px;
  }
  .check_out {
    padding: 0 20px;
  }
  .foods {
    transform: scale(0.7);
  }
  /* mid content */
  .welcome {
    padding: 30px 30px;
    font-size: 25px;
  }
  .mid_content_one {
    margin-top: -130px;
  }
  .mid_text_one {
    padding: 0 30px;
  }
  /* footer */
  footer {
    font-size: 8px;
  }
  .socials {
    margin: 30px 0;
  }
  .copyright {
    margin-top: 10px;
    font-size: 13px;
  }
  .footer_text {
    padding: 0 20px;
  }
}
@media (max-width: 556px) {
  .mid_content_two img {
    width: 230px;
    height: 150px;
  }
}
@media (max-width: 556px) {
  .mid_content_two img {
    width: 200px;
    height: 150px;
  }
}
@media (max-width: 446px) {
  .mid_content_two img {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 424px) {
  .feedback_img a img {
    width: 300px;
  }
}
@media (max-width: 360px) {
  .mid_img {
    height: 200px;
    width: 200px;
  }
  .mid_content_two img {
    width: 100px;
    height: 100px;
  }
  .socials_logo img {
    transform: scale(0.6);
    margin: 0 10px 0 4px;
  }
  .feedback_img a img {
    width: 250px;
  }
}
@media (max-width: 363px) {
  .socials_logo img {
    margin: 0 -10px;
  }
}
@media (max-width: 283px) {
  .socials_logo img {
    margin: 0 -15px;
  }
}
@media (max-width: 243px) {
  .socials_logo img {
    transform: scale(0.5);
    margin: 0 -20px;
  }
}
body,
html {
  min-width: 350px;
}
