
body {
  font-family: Arial, sans-serif;
  margin: 0;
  padding: 0;
  background-color: #f5f1eb;
  color: #3a3a1f;
}

header, nav, main, section {
  padding: 20px;
  max-width: 1000px;
  margin: auto;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #fff;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #3a3a1f;
  font-weight: bold;
}

h1 {
  font-size: 2.5em;
}

.gallery img {
  width: 250px;
  height: 200px;
  object-fit: cover;
}

.gallery div {
  display: inline-block;
  margin: 15px;
  text-align: center;
}

.recipe, .testimonial {
  margin-bottom: 40px;
}

.recipe-box, .testimonial-box {
  background: #fff;
  padding: 15px;
  margin-bottom: 20px;
  border-radius: 8px;
}

.ingredients, .steps {
  margin-left: 20px;
}
/* FOOTER */
footer {
  margin-top: 60px;
  background-color: white;
  color: cream;
  text-align: center;
  padding: 20px;
  }
  .home-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.home-content .text {
  flex: 1;
  min-width: 300px;
}

.home-content .image img {
  width: 100%;
  max-width: 500px;
  border-radius: 0 50% 50% 0; /* buat efek setengah lingkaran */
  object-fit: cover;
}
.video-wrapper {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.video-wrapper video {
  width: 100%;
  max-width: 400px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}
<section class="recipe">
  <!-- Resep Chocolate Cheese Banana -->
  ...
  <!-- Tambahkan resep baru di sini -->
</section>
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}