/* Contact.css */

.contact-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.5);
}

.contact-container {
    background-color: #333; /* Непрозрачный фон контейнера */
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.contact-info h2 {
    font-size: 1.8em;
    margin-bottom: 20px;
    color: #fff;
}

.contact-info p {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 10px;
}

.contact-links p {
    font-size: 1.2em;
    color: #fff;
    margin-bottom: 10px;
}

.contact-links a {
    color: #ff6600; /* Цвет ссылок, как на главной странице */
    text-decoration: none;
    transition: color 0.3s ease;
}

    .contact-links a:hover {
        color: #e65c00; /* Цвет ссылок при наведении */
    }

.social-buttons {
    display: flex;
    justify-content: center;
    gap: 10px; /* Расстояние между кнопками */
    margin-top: 20px;
}

.social-button {
    display: inline-block;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease;
}

    .social-button img {
        width: 24px;
        height: 24px;
    }

    .social-button.vk:hover {
        background-color: #4a76a8; /* Цвет ВКонтакте */
    }

    .social-button.youtube:hover {
        background-color: #ff0000; /* Цвет YouTube */
    }
