/* ===== FOOTER ENHANCED STYLES ===== */

.site-footer {
    background: linear-gradient(135deg, #3f111c 0%, #2a0e1a 100%);
    color: #d9d0bd;
    padding: 60px 0 30px;
    margin-top: 50px;
}

.site-footer h4 {
    color: #d9d0bd;
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    text-align: center;
}

.site-footer .footer-section {
    margin-bottom: 2rem;
}

/* Contact Info Styles */
.site-footer .list-unstyled {
    padding: 0;
    margin: 0;
}

.site-footer .list-unstyled li {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}

.site-footer .list-unstyled li i {
    color: #d9d0bd;
    width: 20px;
    text-align: center;
    margin-right: 10px;
}

.site-footer .list-unstyled li a {
    color: #d9d0bd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-footer .list-unstyled li a:hover {
    color: #f4f0e6;
    text-decoration: none;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: rgba(217, 208, 189, 0.1);
    border: 2px solid rgba(217, 208, 189, 0.3);
    border-radius: 50%;
    color: #d9d0bd !important;
    font-size: 1.2rem;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.social-links a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: #d9d0bd;
    border-radius: 50%;
    transition: all 0.3s ease;
    transform: translate(-50%, -50%);
    z-index: 0;
}

.social-links a:hover::before {
    width: 100%;
    height: 100%;
}

.social-links a:hover {
    color: #3f111c !important;
    border-color: #d9d0bd;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(217, 208, 189, 0.3);
}

.social-links a i {
    position: relative;
    z-index: 1;
}

/* Specific social media hover colors */
.social-links a[href*="instagram"]:hover::before {
    background: linear-gradient(45deg, #e1306c, #fd1d1d, #f77737, #fcaf45, #ffdc80);
}

.social-links a[href*="facebook"]:hover::before {
    background: #1877f2;
}

.social-links a[href*="spotify"]:hover::before {
    background: #1db954;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(217, 208, 189, 0.2);
    padding-top: 30px;
    margin-top: 40px;
}

.footer-bottom p {
    margin: 0;
    color: rgba(217, 208, 189, 0.8);
    font-size: 0.9rem;
}

.footer-bottom .text-danger {
    color: #d9d0bd !important;
    animation: heartbeat 1.5s ease-in-out infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

/* Responsive Design */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 20px;
        text-align: center;
    }
    
    .site-footer .row {
        flex-direction: column;
        align-items: center;
    }
    
    .site-footer .col-lg-6 {
        margin-bottom: 2rem;
    }
    
    .social-links {
        margin-bottom: 2rem;
    }
    
    .social-links a {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
    
    .footer-bottom {
        text-align: center;
    }
    
    .footer-bottom .col-md-6 {
        margin-bottom: 1rem;
    }
}

/* Animation on scroll */
.site-footer .footer-section {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.site-footer .footer-section.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger animation */
.site-footer .footer-section:nth-child(1).animate-in {
    animation-delay: 0.1s;
}

.site-footer .footer-section:nth-child(2).animate-in {
    animation-delay: 0.2s;
}

/* Contact info hover effects */
.site-footer .list-unstyled li {
    transition: transform 0.3s ease;
}

.site-footer .list-unstyled li:hover {
    transform: translateX(5px);
}

/* Logo/Name styling */
.site-footer h4:first-child {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, #d9d0bd 0%, #f4f0e6 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2rem;
}