body{
    background:#f5f5f5;
    font-family:Arial;
}

.hero{
    height:100vh;

    /* Tetap tampil bagus walau gambar belum ada */
    background:
    linear-gradient(rgba(0,0,0,0.45), rgba(0,0,0,0.45)),
    url('../img/bg-home.jpg');

    background-size:cover;
    background-position:center;
}

.overlay{
    background:rgba(0,0,0,0.6);
    height:100%;
    display:flex;
    align-items:center;
}

.card{
    border:none;
    border-radius:15px;
    overflow:hidden;
}

.card img{
    height:250px;
    object-fit:cover;
}