/* Hero Section */
/* Untuk section hero */
.hero {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    transition: background-image 1s ease-in-out;
    min-height: 95vh;
    display: flex;
    align-items: center; /* Menengahkan konten vertikal di hero */
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;

    /* Tambahan: Overlay gelap agar teks lebih kontras */
    /* Ini akan membuat background gambar terlihat, tapi teks lebih mudah dibaca */
    /* Anda bisa menyesuaikan warna dan opacity */
    box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.6);
}

/* MODIFIKASI: Hapus background di .hero .container, biarkan background hero yang terlihat */
/* Jika Anda tetap ingin ada kotak di sekitar teks, sesuaikan opacity agar background image terlihat */
.hero .container {
    background-color: transparent; /* Ubah menjadi transparan */
    padding: 30px;
    border-radius: 10px;
    /* Optional: Tambahkan text-shadow untuk readability jika background sangat sibuk */
    /* text-shadow: 1px 1px 3px rgba(0,0,0,0.7); */
    z-index: 2; /* Pastikan konten di atas overlay */
}

/* Jika Anda menggunakan ikon, atur warnanya agar kontras dengan background */
.hero .content-image .fas.fa-home {
    color: rgba(255, 255, 255, 0.9); /* Warna terang agar terlihat */
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5); /* Bayangan agar lebih menonjol */
    font-size: 10rem; /* Ukuran lebih besar */
}

/* Pastikan warna teks cocok dengan background gelap/overlay */
.hero h1 {
    font-weight: 800;
    color: var(--white); /* Ubah ke putih atau warna terang lainnya */
    margin-bottom: 20px;
    line-height: 1.3;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.7); /* Tambah text-shadow untuk readability */
}

.hero p {
    color: rgba(255, 255, 255, 0.9); /* Ubah ke putih semi-transparan */
    font-size: 1.1rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5); /* Tambah text-shadow */
}
