/**
 * @file
 * Subtheme specific CSS.
 */
/* Header */
header, .navbar, .region-header {
    background-color: #000000 !important;
    color: #ffffff !important;
}
header a, .navbar a {
    color: #ff6200 !important;
}
header a:hover, .navbar a:hover {
    color: #e65a00 !important;
}

/* Footer */
footer, .region-footer {
    background-color: #000000 !important;
    color: #ffffff !important;
}
footer a {
    color: #ff6200 !important;
}
footer a:hover {
    color: #e65a00 !important;
}

/* Body */
body, .region-content {
    background-color: #ffffff !important; /* Or #f8f9fa for light gray */
    color: #000000 !important;
}
.region-content h1, .region-content h2, .region-content h3 {
    color: #000000 !important;
}
.region-content a {
    color: #ff6200 !important;
}
.region-content a:hover {
    color: #e65a00 !important;
}

/* Buttons */
.btn, .btn-primary {
    background-color: #ff6200 !important;
    border-color: #ff6200 !important;
    color: #ffffff !important;
}
.btn:hover, .btn-primary:hover {
    background-color: #e65a00 !important;
    border-color: #e65a00 !important;
}