/* Footer Styles */
.footer {
    background: var(--footer-background); 
    color: var(--footer-text); 
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-xl);
    gap: var(--spacing-xl);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    font-family: var(--font-family-display);
    font-weight: 600;
    font-size: 1.2rem;
    margin-bottom: var(--spacing-md);
    color: var(--footer-text); 
}

.footer-logo i {
    font-size: 1.3rem;
    color: var(--accent-blue);
}

.footer-description {
    color: var(--footer-text); 
    max-width: 300px;
    line-height: 1.6;
}

.footer-section h4 {
    font-family: var(--font-family-display);
    font-weight: 600;
    color: var(--footer-text); 
    margin-bottom: var(--spacing-md);
}

.social-links {
    display: flex;
    gap: var(--spacing-sm);
}

.social-link {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1); 
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text); 
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--accent-blue);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid var(--navbar-border-color); 
    color: var(--footer-text); 
}

.footer-bottom p {
    margin-bottom: var(--spacing-xs);
}

.footer-bottom a {
    color: var(--accent-blue);
    text-decoration: none;
}

.footer-bottom a:hover {
    text-decoration: underline;
}