@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;700&display=swap');

html {
    scroll-behavior: smooth;
}

body { 
    font-family: 'Jost', sans-serif; 
    animation: fadeIn 0.5s ease-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9; 
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1; 
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8; 
}

/* Background gradient for inner pages - Vibrant and rich */
.liquid-bg-static {
    background: linear-gradient(135deg, #e0e7ff 0%, #f3e8ff 50%, #fce7f3 100%);
    background-attachment: fixed;
}

/* Specific background for the homepage - Mesh gradient or vibrant gradient */
body.home-page {
    background: linear-gradient(135deg, #eff6ff 0%, #f3e8ff 50%, #fce7f3 100%);
    background-attachment: fixed;
}

/* Glassmorphism utility class for cards */
.glass-card {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
/* Beautiful separators for sections */
.separator-fade {
    height: 4px;
    width: 100%;
    max-width: 500px;
    border-radius: 9999px;
    margin-bottom: 2.5rem;
    background-image: linear-gradient(to right, var(--tw-gradient-from), transparent);
}

/* Smooth reveal animation for scrolling */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}
