/* ===== FOOTER СТИЛИ ===== */
.viaduk-footer {
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 40px 0 20px;
    margin-top: auto;
    border-top: 3px solid #e74c3c;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    font-family: 'Georgia', serif;
}

/* Логотип убран из footer'а */

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0;
}

.footer-link {
    color: #bdc3c7;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.footer-link:hover {
    color: #e74c3c;
    background: rgba(231, 76, 60, 0.1);
    transform: translateY(-2px);
    text-decoration: none;
}

.footer-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.footer-link:hover::before {
    left: 100%;
}

.footer-copyright {
    text-align: center;
}

.footer-copyright p {
    font-size: 16px;
    font-weight: 600;
    color: #ecf0f1;
    margin-bottom: 5px;
}

.footer-credit {
    color: #95a5a6;
    font-size: 11px;
    opacity: 0.7;
    font-style: italic;
    transition: opacity 0.3s ease;
}

.footer-credit:hover {
    opacity: 1;
}

/* Адаптивность для мобильных устройств */
@media (max-width: 768px) {
    .viaduk-footer {
        padding: 30px 0 15px;
    }
    
    .footer-nav {
        gap: 15px;
        margin-bottom: 20px;
    }
    
    .footer-link {
        font-size: 13px;
        padding: 6px 10px;
    }
    
    .footer-copyright p {
        font-size: 14px;
    }
    
    .footer-credit {
        font-size: 10px;
    }
}

@media (max-width: 480px) {
    .viaduk-footer {
        padding: 25px 0 12px;
    }
    
    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }
    
    .footer-link {
        font-size: 12px;
        padding: 8px 15px;
        min-width: 200px;
        text-align: center;
    }
}

/* Стили для body чтобы footer был внизу */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.main-content {
    flex: 1;
}
