/* Стили для социальных иконок */
.social-icon {
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
    opacity: 0.8;
}

.social-icon:hover {
    transform: scale(1.2);
    opacity: 1;
}

/* Иконка ВКонтакте */
.vk-icon {
    background-image: url('/assets/images/icons/vk.svg');
}

/* Иконка YouTube */
.youtube-icon {
    background-image: url('/assets/images/icons/youtube.svg');
}

/* Иконка Telegram */
.telegram-icon {
    background-image: url('/assets/images/icons/tg.svg');
}

/* Скрытый текст для доступности */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Стили для контейнера социальных иконок */
.footer-social {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-social h2 {
    margin-bottom: 15px;
}

.footer-social a {
    display: inline-block;
    margin-bottom: 10px;
} 