﻿.footer {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 0 20px 0;
    background: var(--bg-footer);
    gap: 30px;
}

.footer-inner {
    display: flex;
    align-items: start;
    justify-content: space-between;
    width: 100%;
}

.footer-logo {
    width: 230px;
    display: flex;
    gap: 10px;
    transition: opacity var(--transition) ease;
}
.footer-logo:hover {
    opacity: 0.8;
}

.footer-logo-svg {
    width: 66px;
    height: 50px;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: start;
    justify-content: center;
}

.footer-logo-title {
    font-weight: 300;
    font-size: 18px;
    color: var(--text-white);
}

.footer-logo-subtitle {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-column-title {
    font-weight: 700;
    font-size: 20px;
    color: var(--text-white);
}

.footer-column-link {
    font-weight: 400;
    font-size: 16px;
    color: var(--text-muted);
    transition: color var(--transition) ease;
}
.footer-column-link:hover {
    color: var(--color-green);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.footer-bottom-copy {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-link {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition) ease;
}
.footer-bottom-link:hover {
    color: var(--color-green);
}

.footer-bottom-dev {
    font-weight: 400;
    font-size: 14px;
    color: var(--text-muted);
    transition: color var(--transition) ease;
}
.footer-bottom-dev:hover {
    color: var(--color-green);
}

@media (max-width: 1440px) {
    .footer-inner { gap: 24px; }
}

@media (max-width: 1200px) {
    .footer-inner { flex-wrap: wrap; gap: 40px 24px; }
    .footer-logo { width: 100%; margin-bottom: 8px; }
    .footer-column { flex: 1 1 140px; }
}

@media (max-width: 768px) {
    .footer { padding: 40px 0 24px; }
    .footer-inner { gap: 32px 20px; }
    .footer-column { flex: 1 1 calc(50% - 10px); }
    .footer-column-title { font-size: 16px; }
    .footer-column-link { font-size: 13px; }
    .footer-bottom {
        flex-direction: column;
        gap: 12px;
        align-items: center;
        text-align: center;
        padding-top: 16px;
        border-top: 1px solid var(--color-green-20);
    }
    .footer-bottom-links { flex-direction: column; align-items: center; gap: 6px; }
}

@media (max-width: 480px) {
    .footer { padding: 32px 0 20px; }
    .footer-inner { gap: 24px 16px; }
    .footer-column { flex: 1 1 calc(50% - 8px); }
    .footer-column-title { font-size: 15px; }
    .footer-column-link { font-size: 13px; }
    .footer-logo-title { font-size: 16px; }
}

@media (max-width: 375px) {
    .footer-column { flex: 1 1 100%; }
    .footer-bottom-copy { font-size: 12px; }
    .footer-bottom-link, .footer-bottom-dev { font-size: 12px; }
}

@media (max-width: 320px) {
    .footer { padding: 24px 0 16px; }
}

.footer-bottom-dev-link {
    text-decoration: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}
.footer-bottom-dev-text {
    text-decoration: none !important;
    font-weight: 400;
    text-align: center;
    font-size: 14px;
    color: var(--text-muted);
}
.footer-bottom-dev-text:hover {
    color: var(--color-green);
}
.footer-bottom-dev-logo {
    max-height: 80px;
}