/* Footer Styles - Centralized for all pages */
.site-footer {
    background: #8B2E16;
    color: #fff;
    padding: 60px 0 0;
}

.footer-main {
    padding-bottom: 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-column h3 {
    color: #fff;
    font-size: 1.3rem;
    margin-bottom: 20px;
}

.footer-column p {
    color: #a8dadc;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #a8dadc;
    transition: color 0.3s ease, transform 0.3s ease;
    text-decoration: none;
}

.footer-column ul li a:hover {
    color: #fff;
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background: #A0442C;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-links a:hover {
    background: #E8652D;
    transform: translateY(-3px);
}

/* Active state for better mobile feedback */
.social-links a:active {
    transform: translateY(-1px) scale(0.95);
    background: #D84315;
}

/* Respect reduced motion preferences for social link animations */
@media (prefers-reduced-motion: reduce) {
    .social-links a {
        transition: none;
    }

    .social-links a:hover,
    .social-links a:active {
        transform: none;
    }
}

.footer-bottom {
    background: #6B1F0F;
    padding: 25px 0;
    text-align: center;
}

.footer-bottom p {
    color: #a8dadc;
    margin: 5px 0;
    font-size: 0.95rem;
}

.footer-bottom a {
    color: #E8652D;
    text-decoration: none;
}

.footer-bottom a:hover {
    color: #fff;
}

/* Span elements styled as links for placeholders */
.social-links span.placeholder {
    background: #6c757d;
    opacity: 0.5;
    cursor: not-allowed;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
}

.social-links span.placeholder:hover {
    background: #6c757d;
    transform: none;
}

/* Responsive styles */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}
