:root {
    --brand: #d2b654;
    --dark: #222;
}

body {
    font-family: 'Lato', sans-serif;
    color: var(--dark);
    padding-right: 0px !important;
}



.hero {
    color: white;
    padding: 120px 0;
}

.hero h1 {
    font-size: 2.8rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.btn-primary {
    padding: 12px 30px;
    border-radius: 30px;
    font-size: 1.1rem;
    background: var(--brand);
    border: none;
    color: #222;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(210, 182, 84, 0.4);
    /* color: #111; */
}

.income-card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    height: 100%;
    background: #fff;
}

.income-card:hover {
    transform: translateY(-8px);
}

.income-card .card-body {
    padding: 30px;
}

.icon-box {
    font-size: 45px;
    color: var(--brand);
    margin-bottom: 15px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--brand);
    margin: 12px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #555;
}

.img-rounded {
    border-radius: 15px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

/* Animasi Panah */
.arrow-down {
    font-size: 2rem;
    color: var(--brand);
    animation: bounce 1.5s infinite;
}

a.btn.btn-primary:hover {
    color: white;
}

.hero {
    height: 100vh;
    /* full screen */
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
        url('../hero-desktop.jpeg') center/cover no-repeat;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Desktop (>= 992px) aktifkan parallax */
@media (min-width: 992px) {
    .hero {
        background-attachment: fixed;
    }
}

/* Mobile (max 991px) no parallax, biar smooth */
@media (max-width: 991px) {
    .hero {
        background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
            url('../hero-mobile.jpeg');
        background-attachment: scroll;
        /* default */
    }
}


@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }
}