/* ========================================
   FOOTER.CSS - Footer Component Styles
   ======================================== */

.site-footer {
    background: linear-gradient(180deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
    color: var(--text-muted);
    padding: var(--spacing-lg) 0 var(--spacing-sm);
    margin-top: 0;
    border-top: 2px solid var(--gold-primary);
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent 0%, 
        var(--gold-primary) 50%, 
        transparent 100%);
}

.site-footer .row {
    margin-bottom: var(--spacing-sm);
}

/* Footer Columns */
.footer-column {
    margin-bottom: var(--spacing-sm);
}

.footer-column h3 {
    color: var(--gold-primary);
    font-size: 1.2rem;
    margin-bottom: var(--spacing-sm);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    padding-bottom: 12px;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-column p {
    line-height: 1.8;
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: var(--spacing-sm);
}

.footer-column a {
    color: var(--text-muted);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
}

.footer-column a:hover {
    color: var(--gold-primary);
    transform: translateX(3px);
}

.footer-column i {
    color: var(--gold-secondary);
    margin-right: 10px;
    font-size: 1.1rem;
    transition: all var(--transition-fast);
}

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

/* Footer Bottom */
.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-sm);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    margin-top: var(--spacing-md);
}

.footer-bottom p {
    font-style: italic;
    color: var(--gold-secondary);
    font-size: 0.95rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-copyright {
    color: var(--text-dim);
    font-size: 0.85rem;
    margin-top: var(--spacing-sm);
}

/* Social Links (if added) */
.social-links {
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: var(--spacing-md);
}

.social-link {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--border-gold);
    border-radius: 50%;
    color: var(--gold-primary);
    transition: all var(--transition-normal);
}

.social-link:hover {
    background: var(--gold-primary);
    color: var(--primary-dark);
    transform: translateY(-3px) rotate(5deg);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* ========================================
   Responsive Design
   ======================================== */

@media (max-width: 768px) {
    .site-footer {
        padding: var(--spacing-lg) 0 var(--spacing-sm);
        margin-top: 0;
    }
    
    .footer-column {
        text-align: center;
    }
    
    .footer-column h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 480px) {
    .footer-column h3 {
        font-size: 1rem;
    }
    
    .footer-column p {
        font-size: 0.9rem;
    }
}
