/* Pulse Animasyonu */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Sosyal Medya İkonları */
.social-media-icons {
    position: fixed;
    bottom: 40px; /* İlk ikonun alt kısmının başlayacağı mesafe */
    z-index: 1000;
    transition: left 0.5s ease; /* Geçiş süresi ve efekt tipi */
}

.social-media-icons.left {
    left: 5px;
}

.social-media-icons.right {
    right: 5px;
}

.social-media-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    margin: 9px; /* İkonlar arasındaki boşluk */
    border-radius: 50%;
    background-color: #fff;
    transition: transform 0.3s;
    animation: pulse 2s infinite; /* Sürekli animasyon */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Gölgelendirme efekti */
}

.social-media-icons a:hover {
    transform: scale(1.1); /* Hover animasyonu */
}

.fab,
.fas {
    font-size: 25px;
}

/* Pulse Animasyonu */
@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

/* Efektler */
.social-media-icons a.effect1:hover {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Gölgelendirme efekti */
}

.social-media-icons a.effect2:hover {
    transform: scale(1.5); /* Hafif büyüme efekti */
    transition: transform 0.2s ease, box-shadow 0.2s ease; /* Geçiş süresi ve efekt tipi */
    transform: rotate(15deg);
}
