/* Footer Trendy 2025: Gradient bg, flex responsive, hover anims */
.post, .page {
    margin: 0;
}

.footer_section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    margin: 4rem 0 0 0;
    padding: 2rem 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer_section p {
    color: #ffffff;
    margin: 0;
    text-align: center;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-left, .footer-center, .footer-right {
    flex: 1;
    text-align: center;
}

.footer-left p, .footer-center p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.heart-icon {
    color: #ef4444;
    animation: beat 1.5s infinite;
}

@keyframes beat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-links li a {
    display: block;
    transition: transform 0.3s ease;
}

.social-links li a:hover {
    transform: scale(1.2);
}

.social-links img {
    width: 24px;
    height: 24px;
    filter: brightness(0) invert(1); /* White icons for dark bg */
}

@media (max-width: 768px) {
    .footer-content {
        flex-direction: column;
    }
}