/* Custom CSS */

html {
    scroll-behavior: smooth;
}

/* Ensure Oswald feels punchy for headings */
h1,
h2,
h3 {
    letter-spacing: -0.02em;
}

/* Custom selection color to match branding */
::selection {
    background: #dc2626;
    /* red-600 */
    color: white;
}

/* Optional: Animation for the hero text */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

header h1 {
    animation: fadeInUp 1s ease-out forwards;
}