/* Reset dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0b0b0a; /* Hitam pekat */
    color: #d4e157; /* Hijau mewah */
    font-family: "Merriweather", serif;
    margin: 0;
    padding: 0;
    width: 100vw;
    height: 100vh;
    line-height: 1.8;
    text-align: center;
}

.container {
    width: 100%;
    height: auto; /* Sesuaikan tinggi secara otomatis */
  }

.container {
    font-size: 18px;
    padding: 20px;
  }

@media (max-width: 768px) {
.container {
font-size: 14px;
padding: 10px;
    }
  }

img {
max-width: 100%;
height: auto;
  }

  
header {
    background-color: #00251a; /* Hijau tua */
    color: #d4e157; /* Hijau cerah */
    padding: 20px;
    border-bottom: 3px solid #388e3c;
}

header h1 {
    font-size: 42px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 5px #000;
}

header p {
    font-size: 20px;
    font-style: italic;
}

nav {
    display: flex;
    justify-content: center;
    background-color: #00251a;
}

nav a {
    padding: 14px 20px;
    color: #d4e157;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
}

nav a:hover {
    background-color: #004d40;
    color: #ffffff;
}

.hero {
    background: url('bg.jpg') center/cover no-repeat; /* Gambar tetap cerah */
    background-size: cover;
    background-position: center;
    height: 600px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #d4e157;
    text-align: center;
    border-radius: 15px;
    margin: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.6);
}

.hero-text h2 {
    font-size: 48px;
    margin-bottom: 20px;
    text-shadow: 2px 2px 10px #000;
}

.hero-text p {
    font-size: 22px;
    color: #e0f2f1;
}

section {
    padding: 50px 20px;
    background-color: #00251a;
}

section h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #d4e157;
    text-shadow: 1px 1px 3px #000;
}

.menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.menu-item {
    flex: 1 0 30%;
    margin: 20px;
    background-color: #1b5e20;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 255, 128, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 255, 128, 0.5);
}

.menu-item img {
    width: 100%;
    height: auto;
    border-radius: 15px;
    margin-bottom: 15px;
}

.menu-item h3 {
    font-size: 24px;
    margin-top: 10px;
    color: #d4e157;
}

.menu-item p {
    font-size: 18px;
    color: #c8e6c9;
}

form {
    max-width: 600px;
    margin: 20px auto;
    background-color: #00251a;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.5);
}

form label {
    font-size: 18px;
    margin-bottom: 10px;
    display: block;
    text-align: left;
    color: #d4e157;
}

form input, form select, form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #388e3c;
    background-color: #1b5e20;
    color: #e0f2f1;
}

form button {
    background-color: #d4e157;
    color: #004d40;
    padding: 15px 20px;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    font-size: 18px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

form button:hover {
    background-color: #c0ca33;
    transform: scale(1.05);
}

footer {
    background-color: #00251a;
    color: #c2d419;
    text-align: center;
    padding: 20px 0;
    border-top: 3px solid #388e3c;
    font-size: 18px;
}
  .btn-whatsapp {
    display: inline-block;
    background-color: #076a2b;
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 5px;
    box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1); 
    transition: background-color 0.3s ease;
  }

  .btn-whatsapp:hover {
    background-color: #1ebe57;
  }



