/*
Theme Name: Beaver Builder Child Theme
Theme URI: https://www.wpbeaverbuilder.com
Version: 1.0
Description: An example child theme that can be used as a starting point for custom development.
Author: The Beaver Builder Team
Author URI: https://www.fastlinemedia.com
template: bb-theme
*/

/* Add your custom styles here...Remember to change the Version number above! */ 
/* ==========================================================================
   Color Accessibility Fixes
   ========================================================================== */

/* Fix Gold Text - original #deb60d fails accessibility */
[style*="color: #deb60d"],
[style*="color:#deb60d"] {
    color: #8a7000 !important;
}

/* Fix Orange Text for small text */
p[style*="color: #da7625"],
span[style*="color: #da7625"],
a[style*="color: #da7625"] {
    color: #a85a17 !important;
}

/* Gold backgrounds - ensure dark text */
[style*="background: #deb60d"],
[style*="background-color: #deb60d"] {
    color: #1a1a1a !important;
}

/* Orange backgrounds - ensure white text */
[style*="background: #da7625"],
[style*="background-color: #da7625"] {
    color: #ffffff !important;
}