/* Custom CSS for saitebis-damzadeba portal */
@font-face {
    font-family: 'bpgMrgvlovani';
    src: url("fonts/bpgmrgvlovani.woff2") format("woff2"),
         url("fonts/bpgmrgvlovani.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bpgMrgvlovaniCaps';
    src: url("fonts/bpgmrgvlovanicaps.woff2") format("woff2"),
         url("fonts/bpgmrgvlovanicaps.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'bpgMrgvlovaniCaps Fallback';
    src: url("fonts/bpgmrgvlovani.woff2") format("woff2"),
         url("fonts/bpgmrgvlovani.woff") format("woff");
    font-weight: normal;
    font-style: normal;
}

html {
    
    background-color: #0b111e;
}

body {
    font-family: 'bpgMrgvlovaniCaps', 'bpgMrgvlovaniCaps Fallback', sans-serif !important;
    background-color: #0b111e;
}

/* Custom scrollbar matching dark theme */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0b111e;
}

::-webkit-scrollbar-thumb {
    background: #4b5563; /* Made lighter to be clearly visible */
    border-radius: 4px;
    border: 2px solid #0b111e;
}

::-webkit-scrollbar-thumb:hover {
    background: #ccff00;
}

/* Typography styles */
* {
    font-family: 'bpgMrgvlovaniCaps', 'bpgMrgvlovaniCaps Fallback', sans-serif !important;
}

/* Navbar transitions */
#navbar {
    transition: all 0.3s ease;
}

/* Smooth transitions for interactive components */
.transition-all {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Custom shadow glow for lime-green accent buttons */
.accent-glow {
    box-shadow: 0 0 20px rgba(204,255,0,0.2);
}

.accent-glow:hover {
    box-shadow: 0 0 30px rgba(204,255,0,0.4);
}

/* Utility Animations */
.animate-slide-up {
    animation: slideUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes slideUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}