/* 
 * Royal Cahaya Travel - Custom Styles
 * 
 * PANDUAN MENGEDIT WARNA:
 * Ubah kode warna (hex code) di bawah ini untuk mengganti tema website secara global.
 * 
 * --rct-gold: Warna Emas Utama (Tombol, Highlight)
 * --rct-blue: Warna Biru Tua Utama (Background Header/Footer)
 * --rct-dark: Warna Background Gelap
 */

:root {
    /* -- WARNA UTAMA -- */
    --rct-gold: #D4AF37;
    /* Emas - Ubah ini untuk warna tombol */
    --rct-gold-hover: #b5952f;
    /* Emas Gelap - Warna tombol saat disentuh mouse */

    --rct-blue: #1a365d;
    /* Biru Tua Royal */
    --rct-dark: #0b121f;
    /* Hitam Kebiruan (Background Utama) */

    --rct-text-light: #f3f4f6;
    /* Warna Teks Terang */
    --rct-text-muted: #9ca3af;
    /* Warna Teks Abu-abu */
}

/* Helper Classes */
.text-primary {
    color: var(--rct-gold) !important;
}

.bg-primary {
    background-color: var(--rct-gold) !important;
}

.border-primary {
    border-color: var(--rct-gold) !important;
}

.bg-brand-blue {
    background-color: var(--rct-blue) !important;
}

.bg-background-dark {
    background-color: var(--rct-dark) !important;
}

/* Custom Overrides can go here */