body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.navbar {
    background: #2d8a9f;
    padding: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

.navbar ul li a {
    color: white;
    text-decoration: none;
}

.hero {
    background: url('Gambar\ Background.webp') no-repeat center/cover;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    flex-direction: column;
}

.hero-text .bold {
    font-size: 200px;
    font-weight: bold;
    font-family: 'Times New Roman', Times, serif;
}
.hero-text .p {
    text-align: center;
    font-size: 25px;

}
.hero button {
    background: #007acc;
    color: white;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    margin-top: 10px;
}

.hero button:hover {
    background: #005a99;
}

.intro {
    text-align: center;
    padding: 20px;
}

.produk {
    padding: 20px;
    background: #f3f3f3;
    text-align: center;
}

.produk-container{
    display: flex;
    justify-content: center;
    gap: 20px;
}

.produk-card {
    background: white;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    max-width: 300px;
}

.produk-card img {
    width: 100%;
    border-radius: 8px;
}




.produk-lainnya h2 {
    text-align: center;
    font-size: 32px;
    margin-bottom: 20px;
    color: #2d8a9f;
}

.produk-container {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.produk-card {
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    max-width: 300px;
    text-align: center;
    transition: transform 0.3s ease;
}





.produk-card .harga {
    font-size: 18px;
    font-weight: bold;
    margin-top: 10px;
    color: #007acc;
}


.produk-card:hover {
    transform: scale(1.05);
}


footer {
    text-align: center;
    padding: 15px;
    background: #004f7c;
    color: white;
    margin-top: 20px;
}
.produk-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
}

.produk-item {
    border: 1px solid #ccc;
    padding: 15px;
    border-radius: 8px;
    background-color: #f9f9f9;
}

.produk-item img {
    max-width: 100%;
    height: auto;
}