* {
  margin: 0;
  padding: 0;
  font-family: "quicksand";
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}
header {
  background-color: palevioletred;
  width: 100%;
}
.navbar {
  position: fixed;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.logo {
  margin: 30px 0 0 60px;
}
.logo h1 {
  font-family: "emblema one";
  color: white;
  font-size: 50px;
}
.links {
  margin: 30px 70px;
  padding-right: 10px;
}
.links a {
  padding-right: 20px;
  text-decoration: none;
  color: black;
  transition-duration: 0.5s;
}
.links a:hover {
  color: white;
  transform: translateY(5);
}
.body {
  background-color: palevioletred;
  display: flex;
  width: 100%;
  margin-top: 80px;
  color: white;
  /* margin: 30px; */
}
.text {
  width: 50%;
  margin-top: 100px;
  margin-left: 60px;
}
.text h3 {
  color: black;
  font-size: 50px;
}
.text p {
  font-size: 20px;
  font-weight: 500;
  text-align: justify;
}
.text a {
  margin-top: 100px;
  border: 1px solid white;
  padding: 5px;
  background-color: white;
  color: palevioletred;
  text-decoration: none;
  border-radius: 5px;
  transition: all 0.5s;
}
.text a:hover {
  color: black;
  background-color: white;
  transform: scale(2, 3);
  border: 2px solid #d87093;
}
.image {
  align-items: end;
}
.image img {
  height: 80vh;
}
.chefs {
  display: block;
  justify-content: center;
  align-items: center;
  margin-top: 40px;
}
.chefs img {
  height: 30vh;
  width: 30vh;
  border-radius: 50%;
}
.promo {
  text-align: center;
}
.promo h3 {
  font-size: 40px;
}
.card-container {
  margin-top: 40px;
  display: flex;
  justify-content: center;
  gap: 30px;
  align-items: center;
  flex-wrap: nowrap;
  animation: appear linear();
  animation-timeline: view();
  animation-range: entry 0% cover 40%;
}
.card-container h3 {
  color: #d87093;
}
.card-container .card {
  background-color: #f4f4f4;
  padding: 20px;
  overflow: hidden;
  border-radius: 5px;
  text-align: center;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: transform 0.6s ease;
}
.card-container .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}
.all {
  display: flex;
  border-radius: 5px;
  align-items: center;
  margin-top: 30px;
}
.all .desc {
  right: 100%;
  width: 70%;
  margin-top: 40px;
  text-align: start;
}
.all h4 {
  text-align: center;
  border-bottom: 2px solid white;
  font-size: 40px;
  margin-bottom: 10px;
}
.all ul {
  color: white;
}
.all:hover {
  background-color: #d87093;
  transition-duration: 0.5s;
}

.recipes {
  margin-top: 70px;
}
.recipes h3 {
  text-align: center;
  font-size: 30px;
  color: #d87093;
}
.recipes a {
  text-decoration: none;
  color: white;
}
.donut {
  overflow: hidden;
}
.donut1 {
  transform-origin: center;
  width: 300px;
  height: 300px;
  -webkit-transition: -webkit-transform 1s;
}
.donut1:hover {
  overflow: hidden;
  -webkit-animation: spin 1s linear infinite;
  -moz-animation: spin 1s linear infinite;
  animation: spin 1s linear infinite;
  transition-delay: 3s;
}
@-webkit-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  100% {
    -webkit-transform: rotate(360deg);
  }
}
.chocolate {
  display: flex;
  color: white;
  border-radius: 5px;
  align-items: start;
  margin-top: 30px;
}
.chocolate:hover {
  background-color: #4d2600;
  transition-duration: 0.5s;
  color: white;
}
.choco_desc {
  right: 100%;
  width: 70%;
  margin-top: 40px;
  text-align: start;
}
.choco_desc ul {
  margin-left: 50px;
}
.choco_desc h4 {
  color: black;
  text-align: center;
  border-bottom: 2px solid white;
  font-size: 40px;
  margin-bottom: 10px;
}

.vanilla {
  display: flex;
  color: white;
  border-radius: 5px;
  align-items: center;
  margin-top: 30px;
}
.vanilla:hover {
  background-color: #ffffb3;
  transition-duration: 0.5s;
  color: black;
}
.vanilla_desc {
  right: 100%;
  margin-top: 40px;
  width: 70%;
  text-align: start;
}
.vanilla_desc h4 {
  text-align: center;
  border-bottom: 2px solid white;
  font-size: 40px;
  color: black;
  margin-bottom: 10px;
}
.footer {
  margin-top: 50px;
  display: flex;
  background: #d87093;
}
.footer .links {
  width: 40%;
  margin-top: 70px;
}
.footer .links a {
  font-size: 15px;
}
.footer .links .social {
  margin-top: 30px;
}
.footer .links .social img {
  height: 5vh;
  margin-top: 5px;
}

.h3 {
  font-family: "emblema one";
  color: black;
  text-align: center;
  margin-top: 10px;
  font-size: 30px;
}
.footer .newsletter {
  margin: 70px 0 0 30px;
}
.newsletter input {
  padding: 10px;
  border: 2px solid #f4f4f4;
  border-radius: 5px;
  transition: all 0.3s ease;
  width: 15vw;
  margin: 10px 0;
}
.newsletter input:focus {
  border-color: #d87093;
  background-color: white;
  outline: none;
}
.footer .map {
  margin: 30px 0 0 30px;
  color: white;
}
.newsletter button {
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  border: none;
  transition-duration: 0.5s;
}
.newsletter button:hover {
  color: #d87093;
}

@media screen and (max-width: 764px) {
  .donut1 {
    width: 200px;
    height: 200px;
  }
  .card-container {
    display: block;
  }
  .logo h1 {
    font-size: 30px;
  }
}
@media screen and (max-width: 554px) {
  .navbar .links {
    display: none;
  }
  .logo h1 {
    font-size: 40px;
  }
  .footer .links {
    font-size: 15px;
    width: 50%;
  }
  .footer {
    display: block;
  }
  .footer .links ul a {
    font-size: 13px;
  }
  .footer h4 {
    font-size: 20px;
  }
  .footer .map {
    overflow: hidden;
    height: 300px;
    width: 500px;
  }
  .footer .newsletter {
    text-align: center;
  }
  .footer input {
    width: 300px;
  }
}
@media screen and (max-width: 425px) {
  .text {
    width: 90%;
  }
  .text h3 {
    font-size: 25px;
  }
  .text P {
    font-size: 15px;
  }
  .donut1 {
    width: 100px;
    height: 100px;
  }
  .recipes h4 {
    font-size: 25px;
  }
}
