/* =========================================================================
   IVENTO SHARED FOOTER
   Минималистичный футер для всех проектов.
   Подстраивается под цвет текста родительского контейнера (использует currentColor).
   Универсален: красиво смотрится и на темном, и на светлом фоне.
   ========================================================================= */

.ivento-footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px 40px;
    font-family: inherit;
    /* Использует шрифт основного проекта */
    color: currentColor;
    /* Цвет автоматически подстроится под секцию */
    opacity: 0.7;
    /* Делает футер ненавязчивым */
    text-align: center;
    transition: opacity 0.3s ease;
}

.ivento-footer:hover {
    opacity: 0.9;
    /* Слегка проявляется при наведении */
}

/* Разделительная линия сверху (если нужна) */
.ivento-footer-divider {
    width: 60px;
    height: 1px;
    background-color: currentColor;
    opacity: 0.3;
    margin-bottom: 30px;
}

/* Логотип или название (Ivento) */
.ivento-footer-brand {
    font-size: 1.2rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.ivento-footer-brand svg {
    width: 18px;
    height: 18px;
    fill: currentColor;
}

/* Социальные сети (Инстаграм, WhatsApp) */
.ivento-footer-social {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-bottom: 24px;
}

.ivento-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: currentColor;
    text-decoration: none;
    border: 1px solid transparent;
    transition: all 0.3s ease;
}

.ivento-social-link svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
    transition: transform 0.3s ease;
}

.ivento-social-link:hover {
    border-color: currentColor;
    background-color: rgba(128, 128, 128, 0.1);
}

.ivento-social-link:hover svg {
    transform: scale(1.1);
}

/* Копирайт и "все права защищены" */
.ivento-footer-legal {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    display: flex;
    flex-direction: column;
    gap: 6px;
    opacity: 0.8;
}

.ivento-footer-legal p {
    margin: 0;
}

/* --- АДАПТИВНОСТЬ --- */
@media (max-width: 600px) {
    .ivento-footer {
        padding: 50px 20px 30px;
    }

    .ivento-footer-brand {
        font-size: 1.1rem;
    }

    .ivento-footer-legal {
        font-size: 0.75rem;
    }
}