:root {
    --header-bg: transparent;
    --header-text: #000000;
    --header-hover: #d4a373;
    --header-scrolled-bg: #000000;
    --header-scrolled-link: #79A342;
    --header-scrolled-hover: #b22222;
    --header-navbar-toggler: #000000;

    --text-primary: #79A342;
    --text-second: #B0B9AE;
    --text-light: #fff;
    --text-dark: #000;
    --text-blue: #0866FF;

    --bg-primary: #79A342;
    --bg-soft-gradient: linear-gradient(
            to bottom,
            #E8C2C6 0%,    /* Hồng bắt đầu ở đỉnh */
            #D2B49B 25%,   /* Chuyển tiếp mượt sang tông be */
            #91A376 50%,   /* Bắt đầu vào màu xanh từ giữa */
            #91A376 100%   /* Giữ màu xanh chiếm trọn 50% còn lại ở đáy */
    );
}

.text-primary{
    color: var(--text-primary) !important;
}

.text-light{
    color: var(--text-light) !important;
}

.text-second{
    color: var(--text-second) !important;
}

.text-dark{
    color: var(--text-dark) !important;
}

.text-blue{
    color: var(--text-blue) !important;
}

.bg-primary{
    background-color: var(--bg-primary) !important;
}

.text-justify {
    text-align: justify !important;
}