/* ===== Footer Styles ===== */
.site-footer {
        background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 40%, #2D2B55 100%);
    color: white;
    padding: 3rem 2rem;
    margin-top: 5rem;
    position: relative;
    border-top: 1px solid rgba(var(--primary-rgb), 0.1);
}

.footer-gradient {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
}

/* Footer Main Content */
.footer-main {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
    gap: 2rem;
    align-items: center;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

/* Branding Section */
.footer-brand {
    text-align: left;
}

.footer-logo-container {
    display: inline-block;
    border-radius: 50%;
    padding: 8px;
    background: linear-gradient(145deg, 
        rgba(var(--primary-rgb), 0.1) 0%, 
        rgba(var(--secondary-rgb), 0.1) 100%);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1), 
                0 0 0 2px rgba(var(--primary-rgb), 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.footer-logo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: contain;
    padding: 12px;
    background: var(--background);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.1));
    transform: scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-logo-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 
                0 0 0 3px var(--primary);
}

.footer-logo-container:hover .footer-logo {
    transform: scale(1);
    filter: drop-shadow(0 6px 16px rgba(0, 0, 0, 0.1)) brightness(1.05);
}

.footer-tagline {
    color: white;
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 500px;
    line-height: 1.5;
    margin: 1rem auto;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
    flex-wrap: wrap;
}

.social-link {
    color: white !important;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.social-link:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.social-link i {
    font-size: 1.2rem;
}

/* Footer Bottom */
.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.copyright {
    color: white;
    font-size: 0.9rem;
    opacity: 0.8;
}

.crafted-with {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: white;
    font-size: 0.9rem;
}

.heartbeat {
    animation: heartbeat 1.5s infinite;
}

.coffee {
    font-size: 1.2rem;
    margin-left: 0.5rem;
}

/* Animations */
@keyframes rotateBorder {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    15% { transform: scale(1.3); }
    30% { transform: scale(1); }
    45% { transform: scale(1.15); }
    60% { transform: scale(1); }
}

/* ===== Responsive Styles ===== */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.5rem;
    }

    .footer-brand {
        text-align: center;
    }

    .footer-tagline {
        max-width: 100%;
    }

    .social-links {
        gap: 1rem;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
