/**
 * DarMatch Footer (landing-style) - site-wide
 * Prefixed with .dmf- to avoid theme conflicts
 */

.dmf-footer {
    --dmf-primary: #e8931a;
    --dmf-secondary: #4a90d9;
    --dmf-text-dark: #1a1a1a;
    --dmf-white: #ffffff;

    padding: 64px 0 32px;
    background: var(--dmf-text-dark);
    color: rgba(255,255,255,0.7);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.6;
    font-size: 15px;
    margin-top: 0;
}

.dmf-footer *, .dmf-footer *::before, .dmf-footer *::after {
    box-sizing: border-box;
}

.dmf-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.dmf-grid {
    display: grid;
    gap: 48px;
    margin-bottom: 48px;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .dmf-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr;
    }
}

.dmf-brand {
    max-width: 300px;
}

.dmf-brand p {
    margin: 0;
    color: rgba(255,255,255,0.7);
}

.dmf-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.dmf-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--dmf-primary), var(--dmf-secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dmf-white);
    font-weight: bold;
    font-size: 18px;
}

.dmf-logo-text {
    font-size: 24px;
    font-weight: 700;
    color: var(--dmf-white);
    letter-spacing: -0.5px;
}

.dmf-column h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    color: var(--dmf-white);
    margin: 0 0 16px;
    font-size: 16px;
}

.dmf-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 0;
    margin: 0;
}

.dmf-links li {
    list-style: none;
    padding: 0;
    margin: 0;
}

.dmf-links a {
    color: rgba(255,255,255,0.7);
    transition: color 0.2s;
    text-decoration: none;
}

.dmf-links a:hover {
    color: var(--dmf-primary);
    text-decoration: none;
}

.dmf-bottom {
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
}

.dmf-bottom p {
    margin: 0;
    color: rgba(255,255,255,0.6);
    font-size: 14px;
}

@media (min-width: 768px) {
    .dmf-bottom {
        flex-direction: row;
        justify-content: space-between;
    }
}

.dmf-social {
    display: flex;
    gap: 16px;
}

.dmf-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dmf-white);
    transition: all 0.2s;
    text-decoration: none;
}

.dmf-social a:hover {
    background: var(--dmf-primary);
    color: var(--dmf-white);
    transform: translateY(-2px);
}
