@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&display=swap');

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

#sticky-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(248, 248, 248, 0.95);
    display: flex;
    padding: 0;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
    z-index: 9999; /* Yüksek bir z-index değeri ekleyin */
    height: 60px; /* Yüksekliği azalttık */
}

.menu-button {
    flex: 1;
    padding: 5px 0; /* Padding'i azalttık */
    text-decoration: none;
    color: white;
    font-weight: 600;
    text-align: center;
    border: none;
    font-size: 12px; /* Font boyutunu küçülttük */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease; /* Tüm özelliklere geçiş efekti eklendi */
    position: relative;
}

.menu-button i {
    font-size: 18px; /* İkon boyutunu küçülttük */
    margin-bottom: 2px; /* Margin'i azalttık */
    transition: transform 0.3s ease; /* İkon için geçiş efekti eklendi */
}

.menu-button:hover i {
    transform: scale(1.1); /* Hover durumunda ikonu büyüt */
}

.call-button {
    background-color: #007AFF;
}

.call-button:hover {
    background-color: #0056b3; /* Hover rengi eklendi */
}

.call-button:active {
    background-color: #004494; /* Active rengi güncellendi */
}

.whatsapp-button {
    background-color: #25D366;
}

.whatsapp-button:hover {
    background-color: #1da851; /* Hover rengi eklendi */
}

.whatsapp-button:active {
    background-color: #168c44; /* Active rengi güncellendi */
}

.info-bubble {
    position: fixed;
    left: -150px;
    bottom: 65px; /* Sticky menü yüksekliği (60px) + 5px boşluk */
    width: 100px;
    height: 100px;
    background-color: #007AFF;
    color: white;
    border-radius: 50%;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    transition: left 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 10px;
    box-sizing: border-box;
    cursor: pointer;
    z-index: 9998; /* Sticky menünün altında kalması için z-index'i bir azalttık */
}

.info-bubble.show {
    left: 10px;
}

.info-bubble-close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 18px;
    color: white;
    cursor: pointer;
}

.info-bubble::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    border: 7px solid transparent;
    border-top-color: #007AFF;
    transform: translateX(-50%);
}

@media (min-width: 768px) {
    #sticky-menu, .info-bubble {
        display: none;
    }
}

