/* high-contrast.css */

/* Reglas generales para el modo de alto contraste */
body.high-contrast {
    background-color: #000000 !important;
    color: #FFFFFF !important;
}

body.high-contrast div,
body.high-contrast .hero-section{
    background-color: #000000 !important;
}

/* Sobrescribir fondos claros y textos oscuros */
body.high-contrast .bg-light,
body.high-contrast .bg-white {
    background-color: #000000 !important;
}

body.high-contrast .text-dark {
    color: #FFFFFF !important;
}

body.high-contrast .text-muted {
    color: #dddddd !important; 
}

/* Botón principal: un color de alto contraste como amarillo sobre negro */
body.high-contrast .btn-ucsc,
body.high-contrast button[type="submit"] {
    background-color: #FFFF00 !important; 
    color: #000000 !important;
    border: 2px solid #FFFF00 !important;
}

body.high-contrast .btn-ucsc:hover {
    background-color: #FFFFAA !important;  
}

/* Tarjetas y secciones */
body.high-contrast .card-ucsc,
body.high-contrast .card,
body.high-contrast .accordion-item {
    background-color: #000000 !important;
    border: 1px solid #FFFFFF !important;
}

/* Enlaces y textos con color primario */
body.high-contrast .text-danger,
body.high-contrast .text-primary-color,
body.high-contrast .accordion-body,
body.high-contrast li,
body.high-contrast .benefits-highlight-content,
body.high-contrast p,
body.high-contrast .container,
body.high-contrast label,
body.high-contrast .text-muted,
body.high-contrast .card-header,
body.high-contrast h5,
body.high-contrast a,
body.high-contrast .nav-link,
body.high-contrast .badge{
    color: #FFFF00 !important; 
}

body.high-contrast .navbar {
    background-color: #000 !important;
    border-bottom: 1px solid #fff !important;
}

body.high-contrast textarea,
body.high-contrast input[type="text"],
body.high-contrast select,
body.high-contrast input[type="checkbox"]{
    background-color: #292828 !important;
    color: #FFFF00 !important;
    border: 1px solid #FFFFFF !important;
}
body.high-contrast .navbar-brand img {
   background-color: #fff; 
   border-radius: 4px;
   padding: 2px;
}
