/* ========================================
   FOOTER STYLING
   ======================================== */

:root {
    --footer-bg:  #89073d;
    --footer-text: #ffffff;
    --footer-link: #ffd700;
    --footer-link-hover: #ffffff;
    --footer-heart: #ff5b0c;
    --footer-social-bg: rgba(255, 255, 255, 0.1);
    --footer-social-bg-hover: rgba(255, 255, 255, 0.2);
}

.site-footer {
    width: 100%;
    background: var(--footer-bg);
    color: var(--footer-text);
    text-align: center;
    padding: 40px 20px;
    /* margin-top: 60px; */
}

.footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.footer-branding {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.footer-logo-link {
    display: inline-block;
    transition: opacity 0.3s ease;
}

.footer-logo-link:hover {
    opacity: 0.8;
}

.footer-logo {
    max-width: 200px;
    max-height: 80px;
    height: auto;
    width: auto;
}

.footer-company-name {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--footer-text);
}

.footer-text {
    font-size: 0.9rem;
    color: var(--footer-text);
    opacity: 0.8;
    margin: 0;
}

.footer-text p {
    margin: 0;
}

.site-footer .footer-copyright .heart {
        color: var(--footer-heart);
        display: inline-block;
        animation: lf-heartbeat 1.5s ease infinite;
}

@keyframes lf-heartbeat {
    0% {
        transform: scale(1);
    }
    10% {
        transform: scale(1.1);
    }
    20% {
        transform: scale(0.95);
    }
    30% {
        transform: scale(1.15);
    }
    40% {
        transform: scale(0.95);
    }
    50% {
        transform: scale(1.1);
    }
    60%, 100% {
        transform: scale(1);
    }
}

/* Footer Navigation */
.footer-navigation {
    display: flex;
    justify-content: center;
    margin: 1rem 0;
}

.footer-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-menu li {
    margin: 0;
}

.footer-menu a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-menu a:hover {
    color: var(--footer-link-hover);
}

/* Social Icons */
.footer-social-icons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-top: 1rem;
}

.footer-social-icons .social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--footer-social-bg);
    border-radius: 50%;
    color: var(--footer-text);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social-icons .social-icon:hover {
    background: var(--footer-social-bg-hover);
    transform: translateY(-2px);
}

.footer-social-icons .social-icon i {
    font-size: 1.1rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.footer-links a {
    color: var(--footer-link);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--footer-link-hover);
}

/* Responsive */
@media (max-width: 768px) {
    .site-footer {
        padding: 30px 15px;
        margin-top: 40px;
    }
    
    .footer-inner {
        gap: 1rem;
    }
    
    .footer-logo {
        max-width: 150px;
        max-height: 60px;
    }
    
    .footer-company-name {
        font-size: 1.1rem;
    }
    
    .footer-text {
        font-size: 0.85rem;
    }
    
    .footer-menu {
        gap: 1rem;
        font-size: 0.9rem;
    }
    
    .footer-social-icons {
        gap: 0.75rem;
    }
    
    .footer-social-icons .social-icon {
        width: 36px;
        height: 36px;
    }
    
    .footer-social-icons .social-icon i {
        font-size: 1rem;
    }
    
    .footer-links {
        gap: 1rem;
    }
}
