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

.footer {
    background: linear-gradient(135deg, var(--black) 0%, var(--dark-gray) 100%);
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 215, 0, 0.35);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
}

.footer-section p,
.footer-section li {
    color: var(--silver-light);
    margin-bottom: 12px;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li a {
    color: var(--silver-light);
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-section .social {
    display: flex;
    gap: 15px;
}

.footer-section .social a {
    color: var(--silver-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.footer-section .social a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 215, 0, 0.25);
    color: var(--silver);
}
