/* Footer Styles */
.footer {
    margin-top: 40px;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
}

.footer p {
    margin-bottom: 10px;
    color: var(--off-white);
    opacity: 0.8;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 15px;
}

.footer-links a {
    color: var(--off-white);
    font-size: 1.5rem;
    transition: color 0.3s ease;
}

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

/* Footer responsive styles */
@media (max-width: 768px) {
    .footer {
        margin-top: 30px;
        padding: 15px;
    }
    
    .footer-links {
        gap: 15px;
    }
    
    .footer-links a {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    .footer {
        margin-top: 25px;
        padding: 12px;
    }
    
    .footer p {
        font-size: 0.85rem;
    }
    
    .footer-links {
        gap: 12px;
    }
    
    .footer-links a {
        font-size: 1.2rem;
    }
}

@media (max-width: 360px) {
    .footer-links {
        gap: 10px;
    }
    
    .footer-links a {
        font-size: 1.1rem;
    }
}