/* assets/css/custom.css */

/* Google Fonts imports */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --font-outfit: 'Outfit', sans-serif;
    --font-inter: 'Inter', sans-serif;
}

body {
    font-family: var(--font-inter);
    scroll-behavior: smooth;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-outfit);
}

/* Glassmorphism Class */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.dark .glass-panel {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

::-webkit-scrollbar-track {
    background: rgba(241, 245, 249, 1);
}

.dark ::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 1);
}

::-webkit-scrollbar-thumb {
    background: rgba(203, 213, 225, 1);
    border-radius: 4px;
}

.dark ::-webkit-scrollbar-thumb {
    background: rgba(51, 65, 85, 1);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(148, 163, 184, 1);
}

/* Animations */
@keyframes bounce-short {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.animate-bounce-short {
    animation: bounce-short 2s infinite ease-in-out;
}

/* Gradient text utility */
.text-gradient-emerald {
    background: linear-gradient(135deg, #059669 0%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Progress steps indicator styling for Apply Multi-Step Form */
.step-dot.active {
    background-color: #059669; /* Emerald 600 */
    box-shadow: 0 0 0 4px rgba(167, 243, 208, 0.6);
}

.step-dot.completed {
    background-color: #059669;
}

.step-line.completed {
    background-color: #059669;
}

/* Card hover glow */
.card-hover-glow {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover-glow:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.05), 0 0 30px 2px rgba(5, 150, 105, 0.1);
}

.dark .card-hover-glow:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3), 0 0 30px 2px rgba(5, 150, 105, 0.15);
}
