/*
 * BuddyX → UKTG Gold Variable Bridge
 * ====================================
 * Maps BuddyX CSS custom properties to the UK Therapy Guild gold palette.
 * Scoped to BuddyPress and bbPress pages so it doesn't bleed into Astra pages.
 *
 * UKTG Gold Palette (from uktg-consolidated.css):
 *   --uktg-gold:       #BFAA7C
 *   --uktg-gold-soft:  #d8c6a0
 *   --uktg-gold-deep:  #8f7a4f
 *   --uktg-gold-link:  #6b5a32
 *   --uktg-gold-hover: #4f4326
 */

/* Apply BuddyX variables only on BuddyPress / bbPress pages */
body.buddypress,
body.bbpress,
body.bp-user,
body.groups,
body.directory,
body.group-create,
body.single-item {
    /* Primary theme color */
    --color-theme-primary: #BFAA7C;
    --color-theme-loader: #BFAA7C;
    --color-theme-secondary: #8f7a4f;

    /* Body & layout */
    --color-theme-body: #f9f7f2;
    --color-theme-white-box: #fff;
    --global-body-lightcolor: #faf8f3;

    /* Text */
    --global-font-color: #505050;
    --color-link: #6b5a32;
    --color-link-hover: #BFAA7C;
    --color-link-active: #8f7a4f;

    /* Headings */
    --color-h1: #2b2b2b;
    --color-h2: #2b2b2b;
    --color-h3: #333333;
    --color-h4: #333333;

    /* Borders */
    --global-border-color: #e5e0d5;
    --global-border-radius: 8px;

    /* Buttons — deeper gold for better contrast on white text */
    --button-text-color: #fff;
    --button-text-hover-color: #fff;
    --button-background-color: #9a7e42;
    --button-background-hover-color: #6b5a32;
    --button-border-color: #9a7e42;
    --button-border-hover-color: #6b5a32;
    --button-border-radius: 6px;

    /* Form elements */
    --form-border-radius: 6px;
}
