/* --- SOSYAL MEDYA BUTON ALANI --- */
.social-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 40px;
    margin: 0 auto 20px auto;
    font-size: 0;
}

/* Sosyal Buton Temel Yapısı */
.social-btns .btn {
    min-width: auto;
    transition: all 0.5s ease;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    position: relative;
    overflow: hidden;
    border-radius: 28%; /* Özel yuvarlatılmış kare formu */
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.1);
    border: none;
    outline: none;
    opacity: 0.99;
    z-index: 2;
    padding: 0; /* İç boşluğu sıfırla */
}

/* Arka Plan Kayma Efekti (İç Dolgu) */
.social-btns .btn:before {
    transition: all 0.5s ease;
    content: "";
    width: 120%;
    height: 120%;
    position: absolute;
    transform: rotate(45deg);
    top: 90%;
    left: -110%;
    z-index: 1;
}

/* İkon Ayarları */
.social-btns .btn i {
    margin-right: 0;
    transition: all 0.5s ease;
    font-size: 24px;
    transform: scale(0.8);
    z-index: 2;
    color: inherit;
    vertical-align: middle;
}

/* --- MARKA RENKLERİ VE İKON AYARLARI --- */

/* Facebook */
.social-btns .btn.facebook:before {
    background-color: #3b5998;
}
.social-btns .btn.facebook i {
    color: #3b5998;
}
.social-btns .btn.facebook:hover {
    background-color: #3b5998;
}

/* Instagram */
.social-btns .btn.instagram:before {
    background-color: #e1306c;
}
.social-btns .btn.instagram i {
    color: #e1306c;
}
.social-btns .btn.instagram:hover {
    background-color: #e1306c;
}

/* Linkedin */
.social-btns .btn.linkedin:before {
    background-color: #0077b5;
}
.social-btns .btn.linkedin i {
    color: #0077b5;
}
.social-btns .btn.linkedin:hover {
    background-color: #0077b5;
}

/* --- HOVER VE FOCUS DURUMLARI --- */

/* Üzerine gelindiğinde veya tıklandığında arka planı içeri sürükle */
.social-btns .btn:focus:before,
.social-btns .btn:hover:before {
    top: -10%;
    left: -10%;
}

.social-btns .btn:hover {
    background-color: transparent;
}

.social-btns .btn:focus,
.social-btns .btn:hover {
    background-color: transparent;
}

/* Hover durumunda tüm ikonlar beyaz olur */
.social-btns .btn.facebook:hover i,
.social-btns .btn.instagram:hover i,
.social-btns .btn.linkedin:hover i {
    color: #fff !important;
    opacity: 1;
    transform: scale(1); /* Hoverda ikon hafif büyür */
}

.social-btns .btn:focus i,
.social-btns .btn:hover i {
    color: #fff !important;
    /* İkon rengi beyaz olsun */
}
