/*
 * Footer Styles - Compact Layout
 */

/* Base Styles */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    font-size: 14px;
    line-height: 1.6;
    padding: 25px 0;
    margin-top: 40px;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Footer Grid Layout */
.footer-content {
    display: grid;
    grid-template-columns: 2fr 1.5fr 2fr;
    gap: 30px;
    align-items: center;
}

/* Footer Columns */
.footer-column {
    padding: 0 10px;
}

/* Brand Column */
.footer-brand .footer-logo {
    max-width: 120px;
    margin-bottom: 10px;
}

.footer-brand .footer-logo img {
    max-width: 100%;
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.footer-brand .footer-logo img:hover {
    opacity: 1;
}

.footer-brand .site-title {
    color: #fff;
    font-size: 18px;
    margin: 0 0 5px;
    font-weight: 600;
}

.footer-brand .site-description {
    color: #bdc3c7;
    font-size: 13px;
    margin: 0 0 15px;
}

.footer-contact {
    margin-top: 10px;
}

.contact-item {
    margin: 5px 0;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #bdc3c7;
}

.contact-item a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ffffff;
}

.contact-item i {
    width: 16px;
    text-align: center;
    color: #3498db;
}

.footer-contact p {
    margin: 5px 0;
}

.footer-contact a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.footer-contact a:hover {
    color: #3498db;
}

/* Links Column */
.footer-links .footer-title {
    color: #fff;
    font-size: 16px;
    margin: 0 0 15px;
    font-weight: 600;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 8px;
}

.footer-menu a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
    display: block;
    padding: 2px 0;
    position: relative;
}

.footer-menu a::before {
    content: '•';
    margin-right: 8px;
    color: #3498db;
    font-size: 16px;
    line-height: 1;
    position: relative;
    top: -1px;
}

.footer-menu a:hover {
    color: #3498db;
    padding-left: 3px;
}

/* Copyright Column */
.footer-copyright {
    text-align: right;
}

.copyright-text {
    color: #bdc3c7;
    margin-bottom: 10px;
    line-height: 1.5;
}

.developer-credit {
    color: #bdc3c7;
    font-size: 12px;
    margin-top: 8px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.developer-credit:hover {
    opacity: 1;
}

.sep {
    margin: 0 5px;
    color: #7f8c8d;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 20px;
        text-align: center;
    }
    
    .footer-column {
        border-bottom: 1px solid #34495e;
        padding-bottom: 20px;
        text-align: center;
    }
    
    .footer-column:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }
    
    .footer-copyright {
        text-align: center;
    }
    
    .footer-menu {
        display: inline-block;
        text-align: left;
    }
    
    .footer-brand .footer-logo {
        margin: 0 auto 15px;
    }
}

/* Print Styles */
@media print {
    .site-footer {
        display: none;
    }
}
