/* Footer Styles for Shower Escape Co */

.site-footer {
    background-color: #333;
    color: #fff;
}

.footer-heading {
    font-family: var(--font-serif);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: var(--turquoise);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.5rem;
}

.footer-links a {
    color: #ccc;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--turquoise);
}

.contact-info {
    list-style: none;
    padding: 0;
    margin: 0;
}

.contact-info li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: #ccc;
}

.contact-info i {
    margin-right: 0.5rem;
    color: var(--turquoise);
    width: 20px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #fff;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: var(--turquoise);
    transform: translateY(-3px);
}

.footer-bottom-links a {
    color: #ccc;
    transition: color 0.3s ease;
    text-decoration: none;
}

.footer-bottom-links a:hover {
    color: var(--turquoise);
}

/* Animation for footer */
.site-footer {
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(to right, var(--turquoise), #3498db, #9b59b6, #e74c3c, #f1c40f, var(--turquoise));
    background-size: 1000% 100%;
    animation: footerGradient 15s linear infinite;
}

@keyframes footerGradient {
    0% { background-position: 0% 0%; }
    100% { background-position: 100% 0%; }
}

/* Responsive */
@media (max-width: 768px) {
    .footer-col {
        margin-bottom: 2rem;
    }
    
    .site-footer {
        text-align: center;
    }
    
    .footer-heading::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .social-icons {
        justify-content: center;
    }
    
    .contact-info li {
        justify-content: center;
    }
}