* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
    background: #f4f7f6;
    color: #333;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100vh;
    overflow: hidden;
  }
  
  .container {
    display: none;
    width: 100%;
    max-width: 700px;
    padding: 20px;
    margin: 10px;
    margin-bottom: 100px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #fff;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.8s forwards;
  }
  
  @keyframes fadeInUp {
    0% {
      opacity: 0;
      transform: translateY(50px);
    }
    100% {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .container.show {
    display: block;
  }
  
  .title {
    font-size: 28px;
    font-weight: bold;
    color: #e63946;
    margin-bottom: 20px;
    letter-spacing: 1px;
    animation: titleAnimation 1s ease-in-out;
  }
  
  @keyframes titleAnimation {
    0% {
      transform: scale(0.8);
      opacity: 0;
    }
    100% {
      transform: scale(1);
      opacity: 1;
    }
  }
  
  .description {
    font-family: 'Delius', cursive;
    background: #f7f3b2; /* Light yellow background to mimic paper */
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 20px;
    text-align: left;
    color: #333;
    position: relative;
    transform: rotate(2deg); /* Slight tilt to make it look "stuck" */
  }
  
  .note-pin {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #e63946;
  }
  
  .note-content {
    margin-top: 30px;
  }
  
  .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 1.6;
  }
  
  .info-item i {
    font-size: 18px;
    margin-right: 10px;
    color: #e63946;
  }
  
  .info-item span {
    font-size: 16px;
    color: #555;
  }
  
  .info-item strong {
    color: #333;
  }
  
  .button {
    display: inline-block;
    background: #ffaaa5;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    font-size: 18px;
    font-weight: bold;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    margin-top: 30px;
  }
  
  .button:hover {
    background: #e63946;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
  }
  
  .food-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .food-list ul li {
    background: #f1f1f1;
    padding: 15px;
    margin: 10px 0;
    border-radius: 10px;
    transition: transform 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  }
  
  .food-list ul li:hover {
    transform: scale(1.05);
  }
  
  .bottom-nav {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    display: flex;
    justify-content: space-around;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 0;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    z-index: 100;
  }
  
  .bottom-nav button {
    background: none;
    border: none;
    color: #555;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
  }
  
  .bottom-nav button:hover {
    color: #e63946;
    transform: scale(1.1);
  }
  
  .bottom-nav button i {
    font-size: 20px;
  }
  
  .side-nav {
    position: fixed;
    left: -250px;
    top: 20px;
    width: 250px;
    height: 100%;
    background-color: #333;
    transition: all 0.3s ease;
    padding: 20px;
  }
  
  .side-nav button {
    background-color: #444;
    color: #fff;
    border: none;
    font-size: 18px;
    width: 100%;
    padding: 10px;
    margin: 10px 0;
    cursor: pointer;
  }
  
  .side-nav button:hover {
    background-color: #555;
  }
  
  .side-nav .close-btn {
    background-color: transparent;
    color: #fff;
    font-size: 30px;
    border: none;
    cursor: pointer;
  }

  .image-section {
    width: 100%;
    height: 0;
    padding-bottom: 45%; /* Untuk mempertahankan proporsi 720x324 (324/720 ≈ 0.45) */
    background-image: url("./hero.jpg"); /* Ganti dengan URL gambar Anda */
    background-size: cover; /* Gambar akan menutupi area tanpa merusak proporsinya */
    background-position: center;
    border-radius: 15px;
    margin-bottom: 20px;
    animation: fadeIn 1.5s ease-in-out;
  }