/*
 * MAI Home - Footer
 * Elegant footer section styles
 */

/* Footer */
.site-footer {
    background-color: var(--primary-bg);
    color: var(--text-primary);
    padding: var(--spacing-xxl) 0 var(--spacing-lg);
}

.footer-content {
    text-align: left;
}

/* Footer Main - Two Column Layout */
.footer-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
    font-weight: 300;
    font-size: 1.2rem;
    font-family: var(--font-serif);
}

.footer-section p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: var(--text-primary);
    text-decoration: underline;
    text-decoration-color: var(--text-light);
    text-underline-offset: 4px;
    text-decoration-thickness: 1px;
    transition: all 0.3s ease;
}

.footer-section a:hover {
    opacity: 0.7;
    text-decoration-color: var(--text-primary);
}

/* Footer Brand */
.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.6;
    max-width: 320px;
}

/* Footer Bottom */
.footer-bottom {
    position: relative;
    padding-top: var(--spacing-lg);
    text-align: center;
}

.footer-bottom::before {
    content: '';
    position: absolute;
    top: 0;
    left: var(--spacing-xl);
    right: var(--spacing-xl);
    height: 1px;
    background-color: rgba(26, 26, 26, 0.1);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .footer-section {
        align-items: center;
    }
    
    .footer-brand p {
        max-width: none;
    }
} 