/**
 * CreatorDock Framework - Footer Widgets CSS
 * Styling for footer widget system
 */

/* Footer Container */
.site-footer {
    background: #1a1a1a;
    color: #fff;
    padding: 40px 0 20px;
    margin-top: 60px;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Footer Areas */
.footer-area {
    margin-bottom: 30px;
}

.footer-main {
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* Footer Widgets Row */
.footer-widgets-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
}

.footer-widget-column {
    flex: 1;
    min-width: 200px;
}

/* Responsive Columns */
@media (max-width: 768px) {
    .footer-widget-column {
        flex: 1 1 100%;
        margin-bottom: 30px;
    }
}

/* Widget Styles */
.footer-widget {
    margin-bottom: 20px;
}

.footer-widget .widget-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-widget .widget-content {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-widget .widget-content p {
    margin-bottom: 10px;
}

.footer-widget .widget-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-widget .widget-content a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Text Widget */
.footer-widget-text .widget-content {
    font-size: 14px;
}

/* Menu Widget */
.footer-widget-menu .footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget-menu .footer-menu-item {
    margin-bottom: 8px;
}

.footer-widget-menu .footer-menu-link {
    display: block;
    padding: 5px 0;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: padding-left 0.3s, color 0.3s;
}

.footer-widget-menu .footer-menu-link:hover {
    padding-left: 5px;
    color: #fff;
}

/* Social Links Widget */
.footer-widget-social .social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-widget-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    text-decoration: none;
    transition: background 0.3s, transform 0.3s;
}

.footer-widget-social .social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

/* Contact Widget */
.footer-widget-contact .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-widget-contact .contact-item i {
    margin-right: 10px;
    color: rgba(255, 255, 255, 0.6);
    width: 20px;
    text-align: center;
}

.footer-widget-contact .contact-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-widget-contact .contact-item a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Newsletter Widget */
.footer-widget-newsletter .newsletter-description {
    margin-bottom: 15px;
    font-size: 14px;
}

.footer-widget-newsletter .newsletter-form {
    display: flex;
    gap: 10px;
}

.footer-widget-newsletter .newsletter-input-group {
    display: flex;
    flex: 1;
    gap: 0;
}

.footer-widget-newsletter .newsletter-input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 4px 0 0 4px;
    font-size: 14px;
}

.footer-widget-newsletter .newsletter-input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-widget-newsletter .newsletter-submit {
    padding: 10px 20px;
    background: #8b5cf6;
    color: #fff;
    border: none;
    border-radius: 0 4px 4px 0;
    cursor: pointer;
    transition: background 0.3s;
}

.footer-widget-newsletter .newsletter-submit:hover {
    background: #7c3aed;
}

/* Responsive */
@media (max-width: 768px) {
    .footer-widget-newsletter .newsletter-form {
        flex-direction: column;
    }
    
    .footer-widget-newsletter .newsletter-input-group {
        flex-direction: row;
    }
    
    .footer-widget-newsletter .newsletter-input {
        border-radius: 4px 0 0 4px;
    }
}

