/* ===========================
   KY Icons - Social Media Icons
   =========================== */

/* Temel yapı */
.social-media-icons {
    position: fixed;
    bottom: 40px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.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: 6px;
    border-radius: 50%;
    background-color: #fff;
    text-decoration: none;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    position: relative;
    overflow: hidden;
}

.fab,
.fas {
    font-size: 22px;
    position: relative;
    z-index: 1;
}

/* ===========================
   EFEKT 1: Float (Hafif Yüzme)
   Yukarı-aşağı nazikçe salınır
   =========================== */
@keyframes ky-float {
    0%   { transform: translateY(0px); }
    50%  { transform: translateY(-5px); }
    100% { transform: translateY(0px); }
}

.social-media-icons.efekt-float a {
    animation: ky-float 3s ease-in-out infinite;
}

/* Her ikon biraz gecikmeli başlasın → dalgalanma hissi */
.social-media-icons.efekt-float a:nth-child(1) { animation-delay: 0s; }
.social-media-icons.efekt-float a:nth-child(2) { animation-delay: 0.3s; }
.social-media-icons.efekt-float a:nth-child(3) { animation-delay: 0.6s; }
.social-media-icons.efekt-float a:nth-child(4) { animation-delay: 0.9s; }
.social-media-icons.efekt-float a:nth-child(5) { animation-delay: 1.2s; }
.social-media-icons.efekt-float a:nth-child(6) { animation-delay: 1.5s; }

.social-media-icons.efekt-float a:hover {
    animation: none;
    transform: translateY(-6px) scale(1.1);
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* ===========================
   EFEKT 2: Glow (Işık Parıltısı)
   Yumuşak bir ışık etrafında titreşir
   =========================== */
@keyframes ky-glow {
    0%   { box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
    50%  { box-shadow: 0 2px 16px rgba(0,0,0,0.15), 0 0 18px rgba(255,255,255,0.5); }
    100% { box-shadow: 0 2px 8px rgba(0,0,0,0.2); }
}

.social-media-icons.efekt-glow a {
    animation: ky-glow 2.5s ease-in-out infinite;
}

.social-media-icons.efekt-glow a:nth-child(1) { animation-delay: 0s; }
.social-media-icons.efekt-glow a:nth-child(2) { animation-delay: 0.4s; }
.social-media-icons.efekt-glow a:nth-child(3) { animation-delay: 0.8s; }
.social-media-icons.efekt-glow a:nth-child(4) { animation-delay: 1.2s; }
.social-media-icons.efekt-glow a:nth-child(5) { animation-delay: 1.6s; }
.social-media-icons.efekt-glow a:nth-child(6) { animation-delay: 2.0s; }

.social-media-icons.efekt-glow a:hover {
    animation: none;
    transform: scale(1.15);
    box-shadow: 0 4px 20px rgba(0,0,0,0.35), 0 0 25px rgba(255,255,255,0.6);
}

/* ===========================
   EFEKT 3: Bounce (Hafif Zıplama)
   Hafif, canlı bir titreme
   =========================== */
@keyframes ky-bounce {
    0%, 80%, 100% { transform: scale(1); }
    40%           { transform: scale(1.12); }
    60%           { transform: scale(0.96); }
}

.social-media-icons.efekt-bounce a {
    animation: ky-bounce 4s ease-in-out infinite;
}

.social-media-icons.efekt-bounce a:nth-child(1) { animation-delay: 0s; }
.social-media-icons.efekt-bounce a:nth-child(2) { animation-delay: 0.5s; }
.social-media-icons.efekt-bounce a:nth-child(3) { animation-delay: 1.0s; }
.social-media-icons.efekt-bounce a:nth-child(4) { animation-delay: 1.5s; }
.social-media-icons.efekt-bounce a:nth-child(5) { animation-delay: 2.0s; }
.social-media-icons.efekt-bounce a:nth-child(6) { animation-delay: 2.5s; }

.social-media-icons.efekt-bounce a:hover {
    animation: none;
    transform: scale(1.18);
    box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* ===========================
   EFEKT YOK
   =========================== */
.social-media-icons.efekt-yok a:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 14px rgba(0,0,0,0.3);
}
