@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Outfit', sans-serif;
    background-color: #fefce8; /* Match bg-primary-50 */
    color: #1e1b4b; /* Match text-primary-800 */
    -webkit-font-smoothing: antialiased;
}

/* Glassmorphism utilities */
.glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* Micro animations */
.hover-scale {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hover-scale:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.06);
}

/* Mobile drawer transition */
#mobile-drawer {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.drawer-open {
    transform: translateX(0) !important;
}

.drawer-closed {
    transform: translateX(-100%) !important;
}

/* Button default focus state removal for clean look */
button:focus {
    outline: none;
}
