/* Mobil Navigation Stilleri */
@media (max-width: 767px) {
    /* Footer için padding */
    footer.bg-dark {
        padding-bottom: 80px !important;
    }
    
    /* Main content için padding */
    main {
        padding-bottom: 80px;
    }
    
    /* Mobil nav hover efektleri */
    .fixed-bottom a:hover {
        background-color: rgba(255, 255, 255, 0.1);
    }
    
    /* Aktif sayfa ikonu animasyonu */
    .fixed-bottom a.text-primary i {
        animation: pulse 2s infinite;
    }
    
    @keyframes pulse {
        0% {
            transform: scale(1);
        }
        50% {
            transform: scale(1.1);
        }
        100% {
            transform: scale(1);
        }
    }
    
    /* Kamera butonu gölge efekti */
    .fixed-bottom .bg-primary {
        box-shadow: 0 4px 15px rgba(0, 123, 255, 0.4);
        transition: all 0.3s ease;
    }
    
    .fixed-bottom .bg-primary:hover {
        transform: scale(1.1);
        box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
    }
}
