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

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.footer-logo i,
.footer-logo img {
    margin-right: 0.75rem;
    font-size: 1.75rem;
    height: 2rem;
    width: auto;
}

.logo-text {
    font-family: 'Copperplate Gothic Bold', 'Copperplate Gothic', serif;
    font-size: 2.5rem;
    letter-spacing: 0.05em;
    margin-right: 0.75rem;
    text-transform: uppercase;
}

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

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

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

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