/**
 * Footer Customizable Styles
 * 
 * CSS for customizable footer
 *
 * @package TattooEdu
 * @version 1.0.0
 */

/* ===== FOOTER CUSTOMIZABLE ===== */

.footer-customizable {
    background-color: var(--footer-bg-color, #333333);
    color: var(--footer-text-color, #ffffff) !important;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background image */
.footer-customizable::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: var(--footer-bg-image, none);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.3;
    z-index: 0;
}

.footer-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0;
}



.footer-widget-title {
    color: var(--footer-text-color, #ffffff);
    font-size: 1.2em;
    margin-bottom: 15px;
    font-weight: 600;
}

.footer-widget p,
.footer-widget li,
.footer-widget a {
    color: var(--footer-text-color, #ffffff);
}

.footer-widget a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Default content */
.footer-default-content {
    margin-bottom: 30px;
}

.footer-info b {
    color: var(--footer-text-color, #ffffff);
    display: block;
    margin-bottom: 10px;
}

.footer-info h3  {
    color: var(--footer-text-color, #ffffff) !important;
    margin: 5px 0;
}

.footer-copyright p {
    color: var(--footer-text-color, #ffffff);
    margin: 0;
    font-size: 0.9em;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 100px) {
    .footer-customizable {
        padding: 30px;
    }
    
    .footer-info big {
        font-size: 1.1em;
    }
    
}

/* Widget specific styles */
.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    margin-bottom: 8px;
}

.footer-widget .textwidget {
    line-height: 1.6;
}

/* Social links in footer */
.footer-widget .red-social-link {
    margin: 0 10px;
}

.footer-widget .red-social-link svg {
    fill: var(--footer-text-color, #ffffff);
}

.footer-widget .red-social-link:hover svg {
    fill: var(--theme-primary-color, #007cba);
}

/* ===== TOP FOOTER ===== */

.top-footer {
    background-color: var(--top-footer-bg-color, #f8f9fa);
    color: var(--top-footer-text-color, #333333);
    padding: 30px 20px;
    border-bottom: 1px solid #e9ecef;
}

.top-footer-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.top-footer-widget {
    margin-bottom: 20px;
}

.top-footer-widget:last-child {
    margin-bottom: 0;
}

.top-footer-widget-title {
    color: var(--top-footer-text-color, #333333);
    font-size: 1.3em;
    margin-bottom: 15px;
    font-weight: 700;
}

.top-footer-widget p,
.top-footer-widget li,
.top-footer-widget a {
    color: var(--top-footer-text-color, #333333);
}

.top-footer-widget a:hover {
    color: var(--theme-primary-color, #007cba);
    text-decoration: underline;
}

.top-footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-footer-widget ul li {
    margin-bottom: 8px;
}

.top-footer-widget .textwidget {
    line-height: 1.6;
}

/* Social links in top footer */
.top-footer-widget .red-social-link {
    margin: 0 10px;
}

.top-footer-widget .red-social-link svg {
    fill: var(--top-footer-text-color, #333333);
}

.top-footer-widget .red-social-link:hover svg {
    fill: var(--theme-primary-color, #007cba);
}

/* Responsive top footer */
@media (max-width: 768px) {
    .top-footer {
        padding: 20px 15px;
    }
    
    .top-footer-widget-title {
        font-size: 1.1em;
    }
}