/* assets/css/style.css */

/* 1. Google Font (Inter - Like Stripe/Apple) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased; /* Apple Smooth Font */
    -moz-osx-font-smoothing: grayscale;
}

/* 2. Glassmorphism Effect (The Premium Look) */
.glass {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.dark .glass {
    background: rgba(15, 23, 42, 0.6); /* Slate-900 with opacity */
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* 3. Custom Scrollbar (Apple Style) */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

::-webkit-scrollbar-track {
    background: transparent;
}

::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
}

.dark ::-webkit-scrollbar-thumb {
    background: #334155; /* Dark Slate */
}

::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* 4. Smooth Fade In Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.animate-fade-in {
    animation: fadeIn 0.4s ease-out forwards;
}

/* 5. Gradient Text (For Logo or Highlights) */
.text-gradient {
    background: linear-gradient(135deg, #6366f1 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}