/* Минималистичный футер */
.footer {
    background: #585842;
    color: white;
    padding: 40px 0 20px;
    border-top: 1px solid #555555;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

/* Логотип в футере – теперь flex с иконкой и текстом */
.footer .logo {
    font-family: 'MyFont', 'Jura', sans-serif;   /* ваш фирменный шрифт */
    font-weight: normal;
    font-size: 1.7rem;
    color: white;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: none;
    outline: none;
    background: none;
}

.footer .logo-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
}
.footer .logo:hover .logo-icon {
    filter: brightness(0.7) saturate(0.8);
    transition: filter 0.3s ease;
}

.footer .logo:hover {
    color: #cccccc;
}

.footer-links {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 8px 0;
    font-size: 0.95rem;
    position: relative;
}

.footer-link:hover {
    color: white;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #555555;
}

.footer-bottom p {
    color: #999999;
    margin: 0;
    font-size: 0.9rem;
}

/* Адаптивность футера */
@media (max-width: 768px) {
    .footer-main {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }
    
    .footer-links {
        justify-content: center;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
}