/*
Custom Css
*/

/* Footer Color Schemes */
.footer-orange-green-gradient {
    background: linear-gradient(135deg, #FF8C00 0%, #FFA500 25%, #FFFFFF 50%, #32CD32 75%, #228B22 100%);
    color: #212529;
}

.footer-orange-green-gradient .text-light,
.footer-orange-green-gradient h2,
.footer-orange-green-gradient .h2 {
    color: #212529 !important;
}

.footer-orange-green-gradient a {
    color: #0066cc !important;
}

.footer-orange-green-gradient a:hover {
    color: #004499 !important;
}

.footer-bottom-orange {
    background: linear-gradient(90deg, #FF8C00 0%, #FF7F50 50%, #FFA500 100%);
    color: #ffffff;
}

.footer-bottom-orange .text-light {
    color: #ffffff !important;
}

.footer-bottom-orange a {
    color: #ffffff !important;
}

.footer-bottom-orange a:hover {
    color: #f0f0f0 !important;
}

/* Alternative solid color scheme */
.footer-orange-section {
    background-color: #FF8C00;
    color: #ffffff;
}

.footer-white-section {
    background-color: #f8f9fa;
    color: #212529;
}

.footer-green-section {
    background-color: #228B22;
    color: #ffffff;
}

/* Ensure proper contrast for all text elements */
.footer-orange-section .text-light,
.footer-orange-section h2,
.footer-orange-section .h2,
.footer-green-section .text-light,
.footer-green-section h2,
.footer-green-section .h2 {
    color: #ffffff !important;
}

.footer-white-section .text-light,
.footer-white-section h2,
.footer-white-section .h2 {
    color: #212529 !important;
}

.footer-orange-section a,
.footer-green-section a {
    color: #ffffff !important;
}

.footer-white-section a {
    color: #0066cc !important;
}

/* Border adjustments for new color scheme */
.footer-orange-green-gradient .border-light,
.footer-orange-section .border-light,
.footer-green-section .border-light {
    border-color: rgba(255, 255, 255, 0.3) !important;
}

.footer-white-section .border-light {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* Form styling adjustments */
.footer-orange-green-gradient .form-control,
.footer-orange-section .form-control,
.footer-green-section .form-control {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.footer-white-section .form-control {
    background-color: #ffffff;
    border-color: #ced4da;
    color: #212529;
}

/* Social media icons styling */
.footer-orange-green-gradient .footer-icons li,
.footer-orange-section .footer-icons li,
.footer-green-section .footer-icons li {
    border-color: rgba(255, 255, 255, 0.5) !important;
}

.footer-white-section .footer-icons li {
    border-color: rgba(0, 0, 0, 0.2) !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-orange-green-gradient {
        background: linear-gradient(180deg, #FF8C00 0%, #FFA500 30%, #FFFFFF 50%, #32CD32 70%, #228B22 100%);
    }
}
