/* Prof. Dr. Kürşat Karadayı - Custom Styles 
*/

@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap');

body { 
    font-family: 'Manrope', sans-serif; 
}

/* Glass Header Effect */
.glass-header {
    backdrop-filter: blur(12px);
    background-color: rgba(250, 250, 249, 0.8);
}

.dark .glass-header {
    background-color: rgba(34, 38, 42, 0.8);
}

/* Custom Scrollbar */
.custom-scrollbar::-webkit-scrollbar {
    width: 4px;
    height: 4px;
}
.custom-scrollbar::-webkit-scrollbar-thumb {
    background: #1f6b7a;
    border-radius: 10px;
}

/* WordPress Admin Barı için Düzeltme (Sticky Header) */
.admin-bar .sticky.top-0 {
    top: 32px !important;
}

@media screen and (max-width: 782px) {
    .admin-bar .sticky.top-0 {
        top: 46px !important;
    }
}