 * { 
      margin: 0; 
      padding: 0; 
      box-sizing: border-box; 
      font-family: 'Poppins', sans-serif; 
    } 
 
    body { 
      background-color: #0e0e0e; 
      color: #fff; 
      line-height: 1.6; 
      overflow-x: hidden; 
    } 
 
    header { 
      position: fixed; 
      top: 0; 
      left: 0; 
      width: 100%; 
      background: rgba(0,0,0,0.8); 
      backdrop-filter: blur(8px); 
      padding: 15px 50px; 
      display: flex; 
      justify-content: space-between; 
      align-items: center; 
      z-index: 10; 
    } 
 
    header h1 { 
      font-size: 1.5rem; 
      color: #ffcb74; 
    } 
 
    nav a { 
      color: #fff; 
      text-decoration: none; 
      margin: 0 15px; 
      transition: color 0.3s; 
    } 
 
    nav a:hover { 
      color: #ffcb74; 
    } 
 
    /* Hero Section */ 
    .hero { 
      background:url('image/background.jpg') center/cover no-repeat;
      height: 100vh; 
      display: flex; 
      align-items: center; 
      justify-content: center; 
      text-align: center; 
    } 
 
    .hero-content { 
      background: rgba(0,0,0,0.6); 
      padding: 40px; 
      border-radius: 10px; 
    } 
 
    .hero-content h2 { 
      font-size: 2.5rem; 
      margin-bottom: 15px; 
      color: #ffcb74; 
    } 
 
    .hero-content p { 
      margin-bottom: 25px; 
      font-size: 1.1rem; 
    } 
 
    .btn { 
      background-color: #ffcb74; 
      color: #000; 
      padding: 12px 30px; 
      border: none; 
      border-radius: 30px; 
      cursor: pointer; 
      font-weight: bold; 
      transition: transform 0.3s ease; 
    } 
 
    .btn:hover { 
      transform: scale(1.05); 
    } 
 
    /* About Section */ 
    .about { 
      display: flex; 
      flex-wrap: wrap; 
      align-items: center; 
      padding: 80px 10%; 
      background: #1b1b1b; 
    } 
 
    .about img { 
      width: 100%; 
      max-width: 450px; 
      border-radius: 10px; 
      margin-right: 40px; 
    } 
 
    .about-text { 
      flex: 1; 
    } 
 
    .about-text h3 { 
      color: #ffcb74; 
      font-size: 2rem; 
      margin-bottom: 20px; 
    } 
 
    .about-text p { 
      font-size: 1rem; 
      opacity: 0.8; 
    } 
 
    /* Menu Section */ 
    .menu { 
      padding: 80px 10%; 
      background: #111; 
      text-align: center; 
    } 
 
    .menu h3 { 
      color: #ffcb74; 
      font-size: 2rem; 
      margin-bottom: 40px; 
    } 
 
    .menu-items { 
      display: grid; 
      grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
      gap: 30px; 
    } 
 
    .menu-item { 
      background: #1b1b1b; 
      border-radius: 10px; 
      padding: 20px; 
      transition: transform 0.3s; 
    } 
 
    .menu-item:hover { 
      transform: translateY(-5px); 
    } 
 
    .menu-item img { 
      width: 100%; 
      border-radius: 10px; 
      margin-bottom: 15px; 
    } 
 
    .menu-item h4 { 
      margin-bottom: 10px; 
      color: #ffcb74; 
    } 
 
    .menu-item p { 
      font-size: 0.95rem; 
      opacity: 0.8; 
    } 
 
    /* Contact Section */ 
    .contact { 
      padding: 80px 10%; 
      background: #1b1b1b; 
      text-align: center; 
    } 
 
    .contact h3 { 
      color: #ffcb74; 
      margin-bottom: 20px; 
      font-size: 2rem; 
    } 
 
    form { 
      max-width: 600px; 
      margin: 0 auto; 
      display: flex; 
      flex-direction: column; 
      gap: 15px; 
    } 
 
    input, textarea { 
      padding: 12px; 
      border-radius: 5px; 
      border: none; 
      outline: none; 
      font-size: 1rem; 
    } 
 
    textarea { 
      height: 120px; 
    } 
 
    footer { 
      background: #000; 
      text-align: center; 
      padding: 25px; 
      font-size: 0.9rem; 
      color: #999; 
    } 
 
    footer span { 
      color: #ffcb74; 
    } 