/* ZenBook Custom Premium Stylesheet */

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');

:root {
    --primary-color: #2E4233;
    --primary-hover: #1F2E23;
    --secondary-color: #CBEF43;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    scroll-behavior: smooth;
}

/* Custom Serif Typography */
.font-serif {
    font-family: 'Playfair Display', Georgia, serif;
}

/* Custom Glassmorphism */
.glass-effect {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.glass-dark-effect {
    background: rgba(46, 66, 51, 0.85);
    backdrop-filter: blur(16px) saturate(180%);
    -webkit-backdrop-filter: blur(16px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

/* Smooth Transitions & Micro-interactions */
.transition-premium {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Scale & shadow hover */
.hover-premium {
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.hover-premium:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px -15px rgba(46, 66, 51, 0.15);
}

/* Step Wizard Progress Bar styling */
.step-circle {
    transition: all 0.4s ease;
}
.step-circle.active {
    box-shadow: 0 0 0 4px rgba(46, 66, 51, 0.25);
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}
.step-circle.completed {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--primary-color) !important;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
::-webkit-scrollbar-track {
    background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #94a3b8;
}

/* Glowing Checkmark Animation */
@keyframes checkmark {
    0% { transform: scale(0.5); opacity: 0; }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); opacity: 1; }
}

.animate-checkmark {
    animation: checkmark 0.6s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

/* Custom input style focus */
.input-premium:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(46, 66, 51, 0.15);
}

/* Shimmer pulse for loading */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
.loading-shimmer {
    background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}
