/**
 * Home Hero Color
 * Generated at: 1772491196
 */

:root {
    --home-primary-color: #0071bc;
    --home-secondary-color: #29abe2;
}

/* Target the hero section on the home page specifically */
body:not(.news-page):not(.events-page):not(.announcements-page) .hero-section {
    background: linear-gradient(rgba(0, 113, 188, 0.8), rgba(41, 171, 226, 0.8)), url('assets/img/hero-bg.jpg') !important;
    background: linear-gradient(
        rgba(#0071bc, 0.8), 
        rgba(#29abe2, 0.8)
    ), url('assets/img/hero-bg.jpg') !important;
    background-size: cover !important;
    background-position: center !important;
}

/* Remove any ::before pseudo-elements */
body:not(.news-page):not(.events-page):not(.announcements-page) .hero-section::before {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Force white text in hero sections */
body:not(.news-page):not(.events-page):not(.announcements-page) .hero-section h1, 
body:not(.news-page):not(.events-page):not(.announcements-page) .hero-section h2, 
body:not(.news-page):not(.events-page):not(.announcements-page) .hero-section h3, 
body:not(.news-page):not(.events-page):not(.announcements-page) .hero-section h4, 
body:not(.news-page):not(.events-page):not(.announcements-page) .hero-section h5, 
body:not(.news-page):not(.events-page):not(.announcements-page) .hero-section h6, 
body:not(.news-page):not(.events-page):not(.announcements-page) .hero-section p, 
body:not(.news-page):not(.events-page):not(.announcements-page) .hero-section div {
    color: white !important;
}