/* HERO */

.hunian-hero {
    position: relative;

    padding: 150px 0 120px;

    background: url("/assets/img/cover1.jpeg") center/cover no-repeat;

    color: white;

    text-align: center;
}

.hero-overlay {
    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, 0.45);
}

.hunian-hero .container {
    position: relative;

    z-index: 2;
}

.hunian-hero h1 {
    font-size: 46px;

    margin-bottom: 10px;
}

.hunian-hero p {
    opacity: 0.9;
}

/* SECTION */

.hunian-section {
    background: #e7e7e7;

    padding: 80px 0;
}

/* GRID */

.hunian-grid {
    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 40px;
}

/* CARD */

.hunian-card {
    background: white;

    border-radius: 18px;

    overflow: hidden;

    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);

    transition: 0.25s;
}

.hunian-card:hover {
    transform: translateY(-6px);
}

/* IMAGE */

.hunian-card img {
    width: 100%;

    height: 220px;

    object-fit: cover;
}

/* INFO */

.hunian-info {
    padding: 16px;

    text-align: center;
}

.hunian-info h3 {
    margin: 0;

    font-size: 15px;
}

.price {
    color: #f7931e;

    font-size: 13px;

    font-weight: 600;
}

/* RESPONSIVE */

@media (max-width: 992px) {
    .hunian-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hunian-grid {
        grid-template-columns: 1fr;
    }
}
