/* New Color Scheme - Comprehensive Override */
:root {
    --primary-light: #000105;
    --primary-text-light: #ffffff;
}

/* Light theme colors */
.bg-primary-main,
.bg-\[#000105\],
.bg-gradient-to-r.from-\[#2e7d32\].to-\[#43a047\],
.bg-gradient-to-r.from-\[#1b5e20\].to-\[#2e7d32\] {
    background-color: #000105 !important;
}

/* Button styles with new colors */
.btn-primary,
button[class*="bg-\[#000105\]"] {
    background-color: #000105 !important;
    color: white !important;
}

.btn-primary:hover,
button[class*="bg-\[#000105\"]:hover"] {
    background-color: #000105 !important;
    opacity: 0.9 !important;
}

/* Focus ring colors */
.focus\:ring-primary-main:focus,
input:focus,
button:focus {
    --tw-ring-color: #000105 !important;
    border-color: #000105 !important;
}

/* Text colors for primary elements */
.text-primary-main,
.text-\[#000105\] {
    color: #000105 !important;
}

/* Border colors */
.border-primary-main,
.border-\[#000105\] {
    border-color: #000105 !important;
}

/* Checkbox and form elements */
input[type="checkbox"]:checked {
    background-color: #000105 !important;
    border-color: #000105 !important;
}

/* Links */
a.text-primary-main,
a.text-\[#000105\] {
    color: #000105 !important;
}

/* Hover effects */
.hover\:text-primary-main:hover,
a:hover {
    color: #000105 !important;
}

/* Ensure proper contrast for buttons */
button.bg-\[#000105\] {
    color: white !important;
}

/* Footer specific styles - Simplified */
.footer-container {
    background: transparent;
    padding: 1rem 0;
    margin-top: 2rem;
    text-align: center;
}

.footer-logo {
    height: 2rem;
    width: auto;
    margin-bottom: 0.5rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.footer-logo:hover {
    opacity: 1;
}

.footer-text {
    color: #6b7280;
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-link {
    color: #6b7280;
    text-decoration: none;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
    transition: color 0.2s ease;
}

.footer-link:hover {
    color: #000105;
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .footer-container {
        padding: 0.75rem 0;
        margin-top: 1.5rem;
    }
    
    .footer-links {
        gap: 0.75rem;
    }
    
    .footer-link {
        font-size: 0.7rem;
        padding: 0.2rem 0.4rem;
    }
    
    .footer-text {
        font-size: 0.7rem;
    }
}
