* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: Arial, sans-serif;
    background: #fffaf2;
    color: #3b2415;
    line-height: 1.6;
}

/* ================= NAVBAR ================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #3b2415;
    color: white;
    padding: 15px 7%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 3px 12px rgba(0,0,0,0.15);
}

.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: bold;
    font-size: 18px;
}

.brand img {
    width: 45px;
    height: 45px;
    object-fit: cover;
    border-radius: 50%;
}

.nav-menu {
    display: flex;
    gap: 20px;
}

.nav-menu a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-menu a:hover {
    color: #f4c542;
}

/* ================= HERO ================= */

.hero {
    min-height: 90vh;
    padding: 60px 7%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, #fff8e8, #f7e4bd);
}

.hero-text {
    max-width: 550px;
}

.small-title {
    color: #b7791f;
    font-weight: bold;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.hero h1 {
    font-size: 55px;
    color: #3b2415;
    margin-bottom: 5px;
}

.hero h2 {
    font-size: 28px;
    color: #8b5a2b;
    margin-bottom: 15px;
}

.hero p {
    font-size: 18px;
    margin-bottom: 25px;
}

.hero-image img {
    width: 420px;
    max-width: 100%;
    border-radius: 25px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
}

/* ================= BUTTON ================= */

.btn {
    display: inline-block;
    background: #d89b25;
    color: white;
    text-decoration: none;
    padding: 13px 25px;
    border-radius: 30px;
    font-weight: bold;
    transition: 0.3s;
}

.btn:hover {
    background: #a96f12;
    transform: translateY(-2px);
}

/* ================= PRODUK ================= */

.produk-section {
    padding: 80px 7%;
    text-align: center;
}

.produk-section h2 {
    font-size: 36px;
    margin-bottom: 40px;
}

.produk-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.produk-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    text-align: left;
    transition: 0.3s;
}

.produk-card:hover {
    transform: translateY(-5px);
}

.produk-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.produk-info {
    padding: 22px;
}

.produk-info h3 {
    font-size: 21px;
    margin-bottom: 10px;
}

.produk-info p {
    color: #666;
    margin-bottom: 15px;
}

.produk-info strong {
    color: #b7791f;
    font-size: 18px;
}

/* ================= PROMO ================= */

.promo-section {
    padding: 80px 7%;
    text-align: center;
    background: #3b2415;
    color: white;
}

.promo-section h2 {
    font-size: 36px;
    margin-bottom: 30px;
}

.promo-box {
    max-width: 600px;
    margin: auto;
    background: #fff8e8;
    color: #3b2415;
    padding: 35px;
    border-radius: 25px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.promo-box h3 {
    font-size: 38px;
    color: #c47c16;
    margin-bottom: 10px;
}

.promo-box p {
    margin-bottom: 10px;
}

/* ================= KONTAK ================= */

.kontak-section {
    padding: 80px 7%;
    text-align: center;
}

.kontak-section h2 {
    font-size: 35px;
    margin-bottom: 15px;
}

.kontak-section p {
    margin-bottom: 10px;
}

.kontak-buttons {
    margin-top: 25px;
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-lokasi {
    background: #3b2415;
}

/* ================= FOOTER ================= */

footer {
    background: #24150d;
    color: white;
    text-align: center;
    padding: 35px 20px;
}

footer img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 50%;
    margin-bottom: 10px;
}

/* ================= HP ================= */

@media (max-width: 768px) {

    .navbar {
        padding: 12px 5%;
    }

    .brand span {
        font-size: 15px;
    }

    .nav-menu {
        gap: 10px;
    }

    .nav-menu a {
        font-size: 13px;
    }

    .hero {
        min-height: auto;
        padding: 50px 6%;
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero h1 {
        font-size: 42px;
    }

    .hero h2 {
        font-size: 23px;
    }

    .hero p {
        font-size: 16px;
    }

    .hero-image img {
        width: 330px;
    }

    .produk-section {
        padding: 60px 6%;
    }

    .produk-section h2,
    .promo-section h2,
    .kontak-section h2 {
        font-size: 29px;
    }

    .produk-container {
        grid-template-columns: 1fr;
    }

    .produk-card img {
        height: 280px;
    }

    .promo-box h3 {
        font-size: 30px;
    }
  }
