* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #fcfaf8;
    color: #333;
}

/* Navigation */
header {
    background: #fff;
    padding: 20px 10%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: bold;
    color: #8d6e63;
}

.logo span { color: #d7ccc8; }

nav ul { display: flex; list-style: none; }
nav ul li { margin-left: 30px; }
nav ul li a { 
    text-decoration: none; 
    color: #555; 
    font-weight: 600;
    transition: 0.3s;
}
nav ul li a:hover { color: #8d6e63; }

/* Hero Section */
.hero {
    height: 80vh;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), 
                url('https://images.unsplash.com/photo-1554118811-1e0d58224f24?auto=format&fit=crop&w=1350&q=80');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background: #c1a35f;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 20px;
    transition: 0.3s;
}

.btn:hover { background: #a68b4d; }

/* Features */
.features {
    display: flex;
    justify-content: space-around;
    padding: 80px 10%;
    background: #3e4444; /* Warna gelap modis */
    color: #fff;
}

.feature-card {
    text-align: center;
    max-width: 250px;
}

.feature-card .icon { font-size: 40px; margin-bottom: 15px; }

footer {
    text-align: center;
    padding: 40px;
    background: #2c3e50;
    color: #bdc3c7;
    font-size: 14px;
}