/* Custom styles beyond Tailwind */

:root {
    --primary-blue: #2563eb;
    --primary-purple: #7c3aed;
}

/* Smooth scroll */
html {
    scroll-behavior: smooth;
}

/* Custom transitions */
* {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}
