/* Footer Styles */
footer {
    margin-top: 0px;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.305);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-brand {
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.footer-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.footer-links a {
    color: rgba(0, 0, 0, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

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

.footer-links .divider {
    color: rgba(0, 0, 0, 0.3);
}

.footer-copyright {
    color: rgba(0, 0, 0, 0.5);
    font-size: 0.85rem;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    footer {
        margin-top: 60px;
        padding: 30px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 15px;
    }

    .footer-links .divider {
        display: none;
    }
}
