/* Footer Styles */
.site-footer {
    background: var(--dark-gray);
    color: white;
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}

.footer-section h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--accent-gold);
}

.footer-section p {
    line-height: var(--line-height-relaxed);
}

.footer-section a {
    color: white;
    text-decoration: none;
}

.footer-section a:hover {
    color: var(--accent-gold);
}

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

.social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: var(--white);
    border: 3px solid var(--dark-gray);
    border-radius: 50%;
    transition: all var(--transition-base);
    color: var(--white);
}

.social-links a svg {
    fill: var(--white);
    stroke: var(--dark-gray);
    stroke-width: 1;
    filter: drop-shadow(0 0 1px rgba(0,0,0,0.8));
}

.social-links a:hover {
    background: var(--accent-gold);
    border-color: var(--accent-gold);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 4px 12px rgba(244, 165, 34, 0.4);
}

.social-links a:hover svg {
    fill: var(--white);
    stroke: var(--dark-gray);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1rem;
    font-size: 0.9rem;
    color: rgba(255,255,255,0.7);
}

.footer-links {
    display: flex;
    gap: 1.5rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
}

.footer-links a:hover {
    color: white;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .footer-content {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}
