/* Custom CSS Desa Tialai */
:root {
    --primary-color: #0b3323;     /* Hijau Tua Khas Desa Tialai */
    --primary-hover: #144733;
    --accent-color: #e2cb94;      /* Warna Emas/Kuning Tombol */
    --bg-light: #f9fafb;
}

body {
    font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: var(--bg-light);
    color: #1f2937;
}

/* Background Hero Section dengan Gradient Overlay */
.hero-bg {
    background: linear-gradient(rgba(11, 51, 35, 0.65), rgba(11, 51, 35, 0.75)), 
                url('https://images.unsplash.com/photo-1500382017468-9049fed747ef?q=80&w=1200&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
}

/* Utility Class Tambahan */
.text-primary-dark {
    color: var(--primary-color);
}

.bg-primary-dark {
    background-color: var(--primary-color);
}