* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Comic Sans MS, cursive, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.site-footer {
    background-image: url('../images/footer.png');
    background-repeat: no-repeat;
    background-size: cover;
    padding: 2rem 0;
    margin-top: auto;
    width: 100%;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.footer-left {
    flex: 1;
    min-width: 250px;
}

.copyright {
    font-size: 1rem;
    font-weight: 500;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-right {
    flex: 1;
    min-width: 300px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.quick-links,
.social-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.links-title,
.social-title {
    font-weight: 600;
    margin-right: 0.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-link:hover {
    text-decoration: underline;
    color: #fff;
    filter: brightness(1.2);
    transform: translateY(-1px);
}

.divider {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
    margin: 0 0.25rem;
}

/* Responsive design */
@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }
    
    .footer-right {
        align-items: center;
        width: 100%;
    }
    
    .quick-links,
    .social-links {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .copyright {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .site-footer {
        padding: 1.5rem 0;
    }
    
    .footer-content {
        padding: 0 1rem;
    }
    
    .quick-links,
    .social-links {
        font-size: 0.9rem;
        gap: 0.3rem;
    }
    
    .links-title,
    .social-title {
        font-size: 0.9rem;
        margin-right: 0.3rem;
    }
    
    .divider {
        margin: 0 0.15rem;
    }
}