/* ============================================================================
 * FILE: assets/css/custom.css
 * DESCRIPTION: Global and custom styling for EduGlobal Academy admin and 
 *              front-end interfaces, supporting custom typography and smooth scrolling.
 * ============================================================================
 */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,400&family=Playfair+Display:ital,wght@0,600;0,700;0,800;1,600&display=swap');

/* Typography Font Classes */
.font-sans-custom {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

.font-serif-custom {
    font-family: 'Playfair Display', serif !important;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif !important;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f8fafc;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Smooth Transition Effects */
.transition-all {
    transition: all 0.3s ease-in-out;
}