/* Background utama */
body {
    background-color: #f8f3ef;
    background-image: url('../assets/images/bg-dapur.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
  
    /* Trik biar ada efek blur di belakang konten */
    position: relative;
    z-index: 0;
  }
  
  /* Overlay blur */
  body::before {
    content: "";
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: #e4e4e466; /* Lapisan putih transparan */
    /* backdrop-filter: blur(5px); Efek blur */
    z-index: -1;
  }
  
  /* Warna coklat */
  .bg-coklat {
    background-color: #a0522d;
  }
  
  /* Hover efek coklat tua */
  .hover-coklat:hover {
    background-color: #8b4513;
    color: #fff;
  }
  