body {
    font-family: Arial, sans-serif;
}

.hero-section {
    padding: 100px 0;
    background: linear-gradient(
        135deg,
        #f8fff9,
        #e9f7ec
    );
}

.hero-icon {
    padding: 70px;
}

.card {
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

footer {
    margin-top: 0;
}

/* =====================================================
   HERO BALAI DESA
===================================================== */

.hero-section {
    position: relative;

    min-height: 600px;

    display: flex;
    align-items: center;

    background-image: url('../img/balai-desa.jpg');

    background-size: cover;
    background-position: center;

    overflow: hidden;
}


/* Overlay agar tulisan mudah dibaca */

.hero-overlay {
    position: absolute;

    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(0, 0, 0, 0.75) 0%,
            rgba(0, 0, 0, 0.55) 45%,
            rgba(0, 0, 0, 0.20) 100%
        );
}


/* Tinggi hero */

.min-vh-75 {
    min-height: 600px;
}


/* Deskripsi */

.hero-description {
    max-width: 700px;
}


/* Mobile */

@media (max-width: 768px) {

    .hero-section {
        min-height: 550px;

        background-position: center;
    }

    .min-vh-75 {
        min-height: 550px;
    }

    .hero-section h1 {
        font-size: 2.5rem;
    }

}