body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f4f4f4;
}

header {
    background: #090404;
    color: white;
    padding: 20px;
    text-align: center;
}

nav {
    background: #e63946;
    padding: 10px;
    text-align: center;
}

nav a {
    color: white;
    margin: 10px;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    text-align: center;
    padding: 30px;
    background: white;
}

.hero img {
    width: 80%;
    max-width: 600px;
    border-radius: 10px;
}

.hero button {
    padding: 10px 20px;
    background: #e63946;
    color: white;
    border: none;
    cursor: pointer;
}

section {
    padding: 30px;
    background: white;
    margin: 20px;
    border-radius: 10px;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.card {
    background: #ddd;
    padding: 20px;
    text-align: center;
    border-radius: 10px;
}

.produk {
    background: #eee;
    padding: 15px;
    text-align: center;
    border-radius: 10px;
}

.produk img {
    width: 100%;
    border-radius: 10px;
}

.produk button {
    margin-top: 10px;
    padding: 8px;
    background: #1d3557;
    color: white;
    border: none;
    cursor: pointer;
}

footer {
    background: #111;
    color: white;
    text-align: center;
    padding: 15px;
}

.hero {
    height: 90vh;
    background-image: url("background.jpeg"); /* FOTO KAMU */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    color: white;
    text-align: center;
    z-index: 1;
}

.hero-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
}

.hero-content button {
    padding: 15px 30px;
    font-size: 16px;
    background: #e63946;
    color: white;
    border: none;
    cursor: pointer;
    border-radius: 5px;
}

