/* Compact Professional Footer - Dark site branding (DreamHub aesthetic) */
/* Override all conflicting styles from saaspik theme and other CSS files */

#footer,
#footer.footer-two,
footer#footer,
footer.footer-two {
    width: 100% !important;
    background: #000000 !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    color: #c7c7d0 !important;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    position: relative;
    z-index: 1;
}

#footer .container,
#footer.footer-two .container,
footer#footer .container,
footer.footer-two .container {
    max-width: 1400px !important;
    margin: 0 auto !important;
    padding: 20px 80px !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.footer-inner,
#footer .footer-inner,
.footer-two .footer-inner {
    margin: 0 !important;
    padding: 0 !important;
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

/* Horizontal Footer Layout - Single Line */
.footer-horizontal {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px !important;
    padding: 0 !important;
    padding-bottom: 0 !important;
    border-bottom: none !important;
}

/* Footer Links - Compact */
.footer-links,
.footer-horizontal .footer-links {
    display: flex !important;
    align-items: center;
    gap: 0 !important;
    flex-wrap: wrap;
}

.footer-links a {
    font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #e5e5ea;
    text-decoration: none;
    padding: 4px 12px;
    transition: color 0.15s ease;
    position: relative;
}

.footer-links a:hover {
    color: #ffffff;
}

.footer-links a:not(:last-child)::after {
    content: '·';
    position: absolute;
    right: -2px;
    color: rgba(255, 255, 255, 0.25);
    font-weight: normal;
}

/* Social Media Icons - Smaller */
.footer-social-link,
.footer-horizontal .footer-social-link {
    display: flex !important;
    gap: 12px !important;
    align-items: center;
}

.footer-social-link a {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e5e5ea;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    font-size: 13px;
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease;
    text-decoration: none;
}

.footer-social-link a:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.22);
}

/* Site Info Section - Inline with Footer */
.site-info {
    display: flex !important;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px !important;
    border-top: 1px solid rgba(255, 255, 255, 0.08) !important;
    margin-top: 16px !important;
}

.copyright,
.site-info .copyright,
.footer-two .copyright {
    font-size: 12px !important;
    margin: 0 !important;
    margin-bottom: 0 !important;
    color: #a1a1aa !important;
    font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
}

.copyright p,
.site-info .copyright p,
.footer-two .copyright p {
    margin: 0 !important;
    margin-bottom: 0 !important;
}

.copyright a,
.copyright a:link,
.copyright a:visited,
#footer.footer-two .site-info p a,
#footer.footer-two .site-info p a:link,
#footer.footer-two .site-info p a:visited {
    color: #e5e5ea !important;
    text-decoration: none;
    transition: color 0.15s ease;
}

.copyright a:hover,
.copyright a:focus,
#footer.footer-two .site-info p a:hover,
#footer.footer-two .site-info p a:focus {
    color: #ffffff !important;
    text-decoration: underline;
}

#footer.footer-two .site-info-menu li a:hover {
    color: #ffffff !important;
}

.site-info-menu {
    display: flex;
    align-items: center;
    gap: 0;
    list-style: none;
    padding: 0;
    margin: 0;
    font-size: 12px;
    color: #a1a1aa;
    font-family: "Inter", "Segoe UI", -apple-system, BlinkMacSystemFont, "Roboto", "Helvetica Neue", sans-serif;
}

.site-info-menu li {
    position: relative;
}

.site-info-menu li:not(:last-child)::after {
    content: '·';
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.25);
}

.site-info-menu a,
.site-info-menu a:link,
.site-info-menu a:visited {
    color: #e5e5ea;
    text-decoration: none;
    transition: color 0.15s ease;
}

.site-info-menu a:hover,
.site-info-menu a:focus {
    color: #ffffff;
}

.footer-links a,
.footer-links a:link,
.footer-links a:visited {
    color: #e5e5ea;
}

.footer-links a:hover,
.footer-links a:focus {
    color: #ffffff;
}

/* Override saaspik theme footer styles */
#footer .footer-inner {
    padding: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

#footer .widget.footer-widget,
#footer .footer-menu,
#footer .footer-logo {
    display: none !important; /* Hide old footer widgets */
}

/* Responsive Design */
@media (max-width: 1024px) {
    #footer .container,
    #footer.footer-two .container {
        padding: 18px 40px !important;
    }
}

@media (max-width: 768px) {
    #footer .container {
        padding: 16px 24px;
    }
    
    .footer-horizontal {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
    
    .footer-links {
        flex-wrap: wrap;
    }
    
    .site-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
    
    .site-info-menu {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    #footer .container {
        padding: 14px 16px;
    }
    
    .footer-links a {
        font-size: 12px;
        padding: 4px 8px;
    }
    
    .copyright {
        font-size: 11px;
    }
    
    .site-info-menu {
        font-size: 11px;
    }
}

