
/* Dnaromance Site-Specific Contrast Fixes */

/* Primary color contrast */
.bg-primary {
    background-color: #D91A72 !important;
    color: #ffffff !important;
}

.text-primary {
    color: #D91A72 !important;
}

.bg-dark .text-primary,
.bg-secondary .text-primary {
    color: #ff2194 !important;
}

/* Secondary color contrast */
.bg-secondary {
    background-color: #F72C93 !important;
    color: #ffffff !important;
}

.text-secondary {
    color: #F72C93 !important;
}

/* Button overrides for brand colors */
.btn-primary {
    background-color: #D91A72 !important;
    border-color: #D91A72 !important;
    color: #ffffff !important;
}

.btn-primary:hover {
    background-color: #c31766 !important;
    border-color: #c31766 !important;
    color: #ffffff !important;
}

.btn-outline-primary {
    color: #D91A72 !important;
    border-color: #D91A72 !important;
}

.btn-outline-primary:hover {
    background-color: #D91A72 !important;
    border-color: #D91A72 !important;
    color: #ffffff !important;
}

/* Link colors with proper contrast */
a {
    color: #D91A72 !important;
}

a:hover {
    color: #ad145b !important;
}

.bg-dark a:not(.btn),
.bg-primary a:not(.btn),
.bg-secondary a:not(.btn) {
    color: #ff27ab !important;
}
