/* Footer Fix CSS */

/* Main footer container */
#SITE_FOOTER {
    background-color: rgb(38,38,38) !important;
    color: white !important;
    padding: 40px 0 20px 0 !important;
    position: relative !important;
    z-index: 100 !important;
}

/* Footer wrapper */
.SITE_FOOTER_WRAPPER {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 20px !important;
}

/* Footer inner container */
.SITE_FOOTER_INNER {
    display: flex !important;
    flex-direction: column !important;
    gap: 30px !important;
}

/* Footer content area */
.SITE_FOOTER_CONTENT {
    display: grid !important;
    grid-template-columns: 1fr 2fr 1fr !important;
    gap: 40px !important;
    align-items: start !important;
}

/* Logo section */
.SITE_FOOTER_LOGO {
    text-align: center !important;
    padding: 20px 0 !important;
}

.SITE_FOOTER_LOGO_IMG {
    max-width: 150px !important;
    height: auto !important;
    display: block !important;
    margin: 0 auto !important;
}

/* Logo text styling */
.SITE_FOOTER_LOGO div {
    font-size: 24px !important;
    font-weight: bold !important;
    color: white !important;
    text-align: center !important;
}

/* Footer info section */
.SITE_FOOTER_INFO {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 30px !important;
}

.SITE_FOOTER_ADDRESS h3,
.SITE_FOOTER_HOURS h3 {
    color: #f5f6fa !important;
    font-size: 18px !important;
    margin-bottom: 15px !important;
    font-weight: 600 !important;
}

.SITE_FOOTER_ADDRESS p,
.SITE_FOOTER_HOURS p {
    color: #cccccc !important;
    line-height: 1.6 !important;
    margin: 0 !important;
    font-size: 14px !important;
}

.SITE_FOOTER_HOURS p strong {
    color: #f5f6fa !important;
    font-weight: 600 !important;
}

/* Footer links section */
.SITE_FOOTER_LINKS {
    display: flex !important;
    flex-direction: column !important;
    gap: 15px !important;
    align-items: center !important;
    justify-content: center !important;
}

.SITE_FOOTER_LINK {
    color: #cccccc !important;
    text-decoration: none !important;
    font-size: 14px !important;
    transition: color 0.3s ease !important;
    padding: 8px 16px !important;
    border-radius: 4px !important;
}

.SITE_FOOTER_LINK:hover {
    color: #f5f6fa !important;
    background-color: rgba(255,255,255,0.1) !important;
}

/* Footer bottom section */
.SITE_FOOTER_BOTTOM {
    border-top: 1px solid #555555 !important;
    padding-top: 20px !important;
    text-align: center !important;
}

.SITE_FOOTER_BOTTOM p {
    color: #999999 !important;
    font-size: 12px !important;
    margin: 0 !important;
}

/* Responsive design */
@media (max-width: 768px) {
    .SITE_FOOTER_CONTENT {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        text-align: center !important;
    }
    
    .SITE_FOOTER_INFO {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .SITE_FOOTER_LINKS {
        flex-direction: row !important;
        flex-wrap: wrap !important;
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    #SITE_FOOTER {
        padding: 30px 0 15px 0 !important;
    }
    
    .SITE_FOOTER_WRAPPER {
        padding: 0 15px !important;
    }
    
    .SITE_FOOTER_CONTENT {
        gap: 25px !important;
    }
} 