﻿/* === Контактна сторінка === */
.contact-card {
    background: #fff;
    border: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 16px;
}

    .contact-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
    }

.contact-body p {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-body strong {
    color: #081a40;
}

/* === Соцмережі === */
.social-links {
    text-align: center;
    margin-top: 20px;
}

    .social-links a {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        text-decoration: none;
    }

    .social-links img,
    .social-links svg {
        width: 42px;
        height: 42px;
        margin: 0 10px;
        transition: transform 0.3s ease, filter 0.3s ease;
        filter: drop-shadow(0 2px 3px rgba(0, 0, 0, 0.2));
    }

    .social-links a:hover img,
    .social-links a:hover svg {
        transform: translateY(-4px) scale(1.15);
        filter: brightness(1.3) drop-shadow(0 0 10px rgba(255, 221, 0, 0.7));
    }

/* 🔹 Анімація появи */
.fade-in {
    opacity: 0;
    transform: translateY(15px);
    animation: fadeUp 0.8s ease forwards;
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 🔹 Підсвічування заголовку */
.glow-text {
    text-shadow: 0 0 10px rgba(255, 216, 90, 0.4);
}
/* 🌟 М’яке золоте світіння при наведенні */
.social-links a {
    position: relative;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}

    .social-links a:hover {
        transform: translateY(-4px) scale(1.12);
        filter: brightness(1.2);
        box-shadow: 0 0 14px 4px rgba(255, 210, 90, 0.55), 0 0 30px 8px rgba(255, 230, 150, 0.25);
    }

    /* Додатковий “ореол” через псевдоелемент */
    .social-links a::after {
        content: "";
        position: absolute;
        inset: 0;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255, 220, 120, 0.6) 0%, rgba(255, 210, 70, 0.1) 70%, transparent 100%);
        opacity: 0;
        transform: scale(0.8);
        transition: all 0.35s ease;
        z-index: -1;
    }

    .social-links a:hover::after {
        opacity: 1;
        transform: scale(1.3);
    }

