/* =======================================================================
 *    footer.css – Footer styles
 * ======================================================================= */

.site-footer {
    background: #000;
    color: #fff;
    padding: 1.5rem 0 1rem;
    border-top: 1px solid #333;
}

.site-footer .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0;
}

/* Footer Logo - COMPLETELY NO SPACE */
.footer-logo {
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important; /* Critical: removes line height space */
    font-size: 0 !important; /* Removes any font-based spacing */
    display: block;
}

.footer-logo img {
    height: 180px;
    width: auto;
    transition: opacity var(--trans);
    display: block; /* Remove inline image space */
    margin: 0 !important;
    padding: 0 !important;
    vertical-align: bottom; /* Ensures no extra space below */
}

.footer-logo img:hover {
    opacity: 0.9;
}

/* Ensure no parent containers add spacing */
.footer-logo a {
    display: block;
    line-height: 0;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

.footer-email {
    line-height: 1.3;
    margin: 0.2rem 0 0;
    padding: 0;
}

.footer-email a {
    color: #fff;
    font-size: 1.2rem;
    transition: color var(--trans);
    text-decoration: none;
    display: inline-block;
    font-weight: 500;
}

.footer-email a:hover {
    color: var(--accent);
}

.footer-copyright {
    line-height: 1.3;
    margin: 0.1rem 0 0;
    padding: 0;
}

.footer-copyright p {
    margin: 0;
    padding: 0;
    font-size: 1.2rem;
    color: #ccc;
    line-height: 1.3;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1.2rem;
    margin-top: 0.3rem;
    line-height: 1.3;
}

.footer-links a {
    color: #fff;
    transition: color var(--trans);
    text-decoration: none;
    font-weight: 500;
}

.footer-links a:hover {
    color: var(--accent);
    text-decoration: underline;
}

.footer-links .separator {
    color: #666;
}

/* Responsive adjustments for footer */
@media (max-width: 480px) {
    .site-footer {
        padding: 1rem 0 0.8rem;
    }
    
    .footer-logo img {
        height: 120px;
    }
    
    .footer-logo {
        margin: 0 !important;
        padding: 0 !important;
    }
    
    .footer-email a {
        font-size: 1rem;
    }
    
    .footer-copyright p {
        font-size: 0.95rem;
    }
    
    .footer-links {
        font-size: 0.95rem;
        gap: 0.4rem;
        margin-top: 0.2rem;
    }
}



/* Add these styles to your existing footer.css */

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1rem 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #333;
    color: #fff;
    transition: all var(--trans);
}

.social-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.facebook:hover {
    background-color: #1877f2;
}

.social-icon.instagram:hover {
    background: linear-gradient(45deg, #f09433, #d62976, #962fbf, #4f5bd5);
}

.social-icon.youtube:hover {
    background-color: #ff0000;
}

/* Responsive adjustments */
@media (max-width: 480px) {
    .footer-social {
        gap: 1rem;
        margin: 0.8rem 0;
    }

    .social-icon {
        width: 36px;
        height: 36px;
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }
}
