/* ============================================
   FOOTER STYLES
   ============================================ */

.footer {
    background: #0D0D0D;
    color: white;
    padding: 60px 0 30px;
    border-top: 3px solid var(--primary-gold);
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 12px rgba(201, 168, 106, 0.3));
}

.footer-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.footer-title {
    color: var(--primary-gold);
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links a {
    color: #CCC;
    text-decoration: none;
    transition: var(--transition-fast);
    font-weight: 500;
    position: relative;
    display: block;
    margin-bottom: 0.5rem;
}

.footer-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-gold);
    transition: width 0.3s ease;
}

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

.footer-links a:hover::after {
    width: 100%;
}

.footer-divider {
    border-color: rgba(201, 168, 106, 0.3);
    margin: 2rem 0;
}

.copyright {
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}
