/**
 * Footer Styles
 * Premium minimalist footer design
 */

footer {
    background: var(--primary-color);
    color: rgba(255, 255, 255, 0.6);
    text-align: center;
    padding: 60px var(--spacing-2xl);
    font-size: 13px;
    letter-spacing: 0.5px;
}

footer p {
    font-weight: 400;
    margin-bottom: 0;
    line-height: 1.8;
}

footer p + p {
    margin-top: 14px;
}

footer a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-normal);
}

footer a:hover {
    color: white;
}

/* Footer with multiple sections */
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 500;
    color: white;
    margin-bottom: var(--spacing-lg);
    letter-spacing: 0;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-xl);
    flex-wrap: wrap;
}

.footer-nav a {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 500;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-xl);
}

.footer-social a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: white;
    color: var(--primary-color);
    border-color: white;
}

.footer-social i {
    font-size: 16px;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 0 auto var(--spacing-xl);
}

.footer-legal {
    font-size: 12px;
    opacity: 0.5;
}

.footer-legal a {
    margin: 0 8px;
}

@media (max-width: 768px) {
    footer {
        padding: 50px var(--spacing-md);
    }

    .footer-nav {
        flex-direction: column;
        gap: var(--spacing-md);
    }
}
