/* Font Awesome 6 Solid (İkonlar için) */
@font-face {
    font-family: 'Font Awesome 6 Free';
    font-style: normal;
    font-weight: 900;
    font-display: swap;
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-solid-900.woff2') format('woff2');
}

/* Font Awesome 6 Brands (Instagram, WhatsApp logoları için) */
@font-face {
    font-family: 'Font Awesome 6 Brands';
    font-style: normal;
    font-weight: 400;
    font-display: swap; /* Kritik satır */
    src: url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/webfonts/fa-brands-400.woff2') format('woff2');
}



/* Telefon Sabit İkon CSS (EN ÜSTTE) */
.phone-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 190px; /* Instagram'ın 75px yukarısında (115 + 75 = 190) */
    right: 40px;
    background-color: #007bff; /* Mavi renk (Telefon için) */
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    text-decoration: none;
}

.phone-float:hover {
    background-color: #0056b3;
}

/* Instagram Sabit İkon CSS (ORTADA) */
.instagram-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 115px; /* WhatsApp'ın 75px yukarısında */
    right: 40px;
    background-color: #E1306C;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    text-decoration: none;
}

.instagram-float:hover {
    background-color: #C135A1;
}

/* WhatsApp Sabit İkon CSS (EN ALTTA) */
.whatsapp-float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px; /* En altta 40px yukarıda */
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s;
    text-decoration: none;
}

.whatsapp-float:hover {
    background-color: #128c7e;
    color: #FFF;
}

/* Mobil Cihazlar İçin Boyut ve Pozisyon Küçültme (768px ve altı) */
@media (max-width: 768px) {
    
    /* Telefon Mobil Ayarları (EN ÜSTTE) */
    .phone-float {
        width: 50px;
        height: 50px;
        bottom: 150px; /* 85px (Instagram) + 50px (İkon boyu) + 15px (Boşluk) = 150px */
        right: 20px;
        font-size: 24px;
    }
    
    /* Instagram Mobil Ayarları (ORTADA) */
    .instagram-float {
        width: 50px;
        height: 50px;
        bottom: 85px; 
        right: 20px;
        font-size: 24px;
    }
    
    /* WhatsApp Mobil Ayarları (EN ALTTA) */
    .whatsapp-float {
        width: 50px;
        height: 50px;
        bottom: 20px; /* Mobil altta 20px */
        right: 20px;
        font-size: 24px;
    }
}