/*
Theme Name: ProTranslates Theme
Theme URI: http://localhost/protranslates
Author: Kodlama Desteği
Description: Tailwind CSS ve özel PHP çoklu dil desteği içeren tema.
Version: 1.0
*/


.glass-nav {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
}

.fade-in-up {
    animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    opacity: 0;
    transform: translateY(30px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}