﻿/* Footer */
footer {
    background-color: #050505;
    border-top: 1px solid rgba(201, 168, 76, 0.3);
    padding: 5rem 0 2rem 0;
}

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand p {
    color: var(--clr-text-muted);
    margin-top: 1.5rem;
    font-size: 0.95rem;
    max-width: 350px;
    line-height: 1.7;
}

.footer-links h4, .footer-social h4 {
    font-family: var(--font-body);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 2rem;
    color: var(--clr-white);
}

.footer-links li {
    margin-bottom: 1rem;
}

.footer-links a {
    color: var(--clr-text-muted);
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--clr-gold);
    padding-left: 5px;
}

.social-icons {
    display: flex;
    gap: 1.2rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background-color: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    font-size: 1.3rem;
    color: var(--clr-text);
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background-color: var(--clr-gold);
    border-color: var(--clr-gold);
    color: var(--clr-bg);
    transform: translateY(-5px);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 2.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.85rem;
}

.legal-links {
    display: flex;
    gap: 2rem;
}

.legal-links a:hover {
    color: var(--clr-gold);
}

