/* Body umum */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background: #f9f6f2; /* Warna latar lebih soft */
    color: #4e3629; /* Warna teks lebih kalem dan hangat */
}

/* Judul utama */
h1 {
    color: #ffffff;
}

/* Navigasi */
nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 30px;
}

nav ul li {
    display: inline;
}

/* Link di navigasi */
nav ul li a {
    color: #6b4f3f;
    text-decoration: none;
    font-weight: bold;
    padding: 10px 18px;
    border-radius: 5px;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Efek hover di navbar */
nav ul li a:hover {
    background: #b48464;
    transform: translateY(-2px);
}

/* Konten utama */
.content {
    padding: 40px 20px;
    text-align: center;
}

/* Footer */
footer {
    background: #6b4f3f;
    color: #fff;
    text-align: center;
    padding: 15px 0;
    position: relative;
    width: 100%;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

/* Hero section */
.hero-section {
    background: url('../gambar/background.jpg') no-repeat center center/cover;
    padding: 120px 0;
    color: #fff;
    animation: fadeIn 2s ease-in;
    text-align: center;
}

/* Animasi fade in di hero */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Section fitur */
.features-section h3 {
    color: #8a6a50;
    transition: transform 0.3s, color 0.3s;
}

/* Efek hover di fitur */
.features-section h3:hover {
    transform: scale(1.1);
    color: #b48464;
}

/* CTA Section */
.cta-section h2 {
    color: #8a6a50;
    margin: 20px 0;
    font-size: 2em;
}

/* Tombol Call to Action */
.cta-button {
    background: #8a6a50;
    color: #fff;
    padding: 15px 30px;
    border: none;
    border-radius: 20px;
    font-size: 1.2em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
}

/* Hover tombol CTA */
.cta-button:hover {
    background: #b48464;
    transform: translateY(-2px);
}

/* Responsif layar kecil */
@media (max-width: 600px) {
    nav ul {
        flex-direction: column;
        gap: 15px;
    }

    .hero-section {
        padding: 80px 0;
    }

    .cta-button {
        padding: 12px 20px;
        font-size: 1em;
    }

    .features-section h3 {
        font-size: 1.2rem;
    }
}
