/* Custom styles to supplement Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    /* Fallback font stack */
    font-family: 'Open Sans', sans-serif;
}

h1, h2, h3, h4, .font-heading {
    font-family: 'Montserrat', sans-serif;
}

/* Custom clip path for the hero bottom */
.clip-path-slant {
    clip-path: polygon(0 100%, 100% 100%, 100% 0);
}

/* Animation for background blobs */
@keyframes blob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.1); }
    66% { transform: translate(-20px, 20px) scale(0.9); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.animate-blob {
    animation: blob 7s infinite;
}

.animation-delay-2000 {
    animation-delay: 2s;
}

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

::-webkit-scrollbar-track {
    background: #FFF0F2;
}

::-webkit-scrollbar-thumb {
    background: #900C3F;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #580829;
}
