/* Gaya Umum */
body {
    font-family: 'Playfair Display', serif;
    background-color: #853d0e;
}

html, body {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
}

main {
    flex: 1; /* Agar mengambil sisa tinggi layar */
}

footer {
    flex-shrink: 0; /* Mencegah footer mengecil */
}

h1, h2, h3, h4, h5 {
    font-weight: 600;
}

/* Hero Section */
.hero {
    background-color: #fef6ed;
    padding: 80px 20px;
}

.hero h1 {
    font-size: 48px;
    color: #5e412f;
}

.hero p {
    font-size: 18px;
    color: #8a716a;
}

.btn-warning {
    background-color: #f2b95b;
    border: none;
}
.btn-warning:hover {
    background-color: #e0a84f;
}

/* Produk Card */
.card {
    border: none;
    border-radius: 10px;
    transition: 0.3s ease;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}
.card-img-top {
    height: 200px;
    object-fit: cover;
}

/* Kategori Box */
.bg-kategori {
    background-color: white;
    border-radius: 10px;
    padding: 15px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    transition: 0.3s ease;
}
.bg-kategori:hover {
    background-color: #ffe6c7;
    transform: scale(1.05);
}
