/* Reset margin dan padding dasar */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: #FAF9F6; /* Warna latar off-white yang hangat */
    color: #3e362e; /* Warna teks coklat gelap */
    line-height: 1.6;
}

/* --- Bagian Header & Navigasi --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

header .logo h1 {
    font-family: 'Georgia', serif;
    font-size: 24px;
    color: #8C6239; /* Warna aksen coklat tanah */
    letter-spacing: 1px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

nav ul li a {
    text-decoration: none;
    color: #3e362e;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #8C6239;
}

/* --- Bagian Hero (Spanduk Utama) --- */
.hero {
    text-align: center;
    padding: 100px 20px;
    background-color: #EADDCA; /* Warna krem hangat */
    border-bottom: 2px solid #dfc7a9;
}

.hero h2 {
    font-family: 'Georgia', serif;
    font-size: 40px;
    margin-bottom: 20px;
    color: #4A3B2C;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.btn-primary {
    display: inline-block;
    padding: 12px 30px;
    background-color: #8C6239;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background-color: #6b4a29;
}

/* --- Bagian Produk Unggulan --- */
.featured {
    padding: 60px 50px;
    text-align: center;
}

.featured h3 {
    font-family: 'Georgia', serif;
    font-size: 30px;
    margin-bottom: 40px;
    color: #4A3B2C;
}

.product-grid {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.product-item {
    background-color: #ffffff;
    padding: 20px;
    border-radius: 8px;
    width: 300px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item h4 {
    margin: 15px 0 5px 0;
    font-size: 20px;
}

.product-item p {
    color: #8C6239;
    font-weight: bold;
    margin-bottom: 15px;
}

.btn-secondary {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid #8C6239;
    color: #8C6239;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #8C6239;
    color: #ffffff;
}

/* --- Bagian Footer --- */
footer {
    background-color: #3e362e;
    color: #f1f1f1;
    text-align: center;
    padding: 30px 20px;
    margin-top: 40px;
}

footer p {
    font-size: 14px;
    margin-bottom: 5px;
}