/* ==========================================================================
   SITE FOOTER
   ========================================================================== */

.site-footer {
    background: var(--footer-bg);
    padding: 70px 90px;
    border-top: none;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.footer-brand .brand-name {
    font-size: 18px;
    font-weight: 500;
    color: var(--footer-text-main);
}

.footer-brand .footer-tagline {
    font-size: 14px;
    color: var(--footer-text-tagline);
}

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

.footer-links a {
    color: var(--footer-text-muted);
    font-size: 14px;
    text-decoration: none;
    transition: color 0.2s ease;
}

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

.footer-contact {
    font-size: 14px;
    color: var(--footer-text-muted);
    font-weight: 400;
}

/* Адаптивност за мобилни устройства */
@media (max-width: 768px) {
    .site-footer {
        padding: 60px 20px; /* Малко повече въздух горе/долу */
    }

    .footer-container {
        flex-direction: column;
        gap: 48px; /* По-ясно разделение между трите секции */
        text-align: center;
        align-items: center;
    }

    .footer-links {
        gap: 16px; /* Малко по-лесни за кликане с пръст (Touch target) */
    }

    .footer-links a {
        font-size: 15px; /* Една идея по-големи за мобилно */
    }

    .footer-contact {
        font-size: 13px;
        opacity: 0.8; /* Леко омекотяване на най-долния текст */
    }
}