/* Custom font for a clean, modern look */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Momo+Trust+Display&display=swap');

body {
    font-family: 'Inter', sans-serif;
    min-height: 100vh;
    /* Set the background to solid white for maximum contrast */
    background-color: #ffffff; 
}

.nav-font {
  font-family: "Momo Trust Display", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* .gradient-text {
    font-weight: 800;
    background: linear-gradient(45deg, #DE0F0F, #FF7B2C,#FAA300, #3A2D78);
    background-size: 200% 200%;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradientMove 3s ease-in-out infinite;
}
@keyframes gradientMove {
    0%, 100% { background-position: 0% 50%;}
    50% { background-position: 100% 50%;}
} */


 /* Floating Blob Animation */
.blob {
    position: absolute;
    border-radius: 9999px;
    filter: blur(80px);
    animation: float 20s infinite ease-in-out alternate;
    mix-blend-mode: multiply;
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(30px, -50px) scale(1.2);
    }
    100% {
        transform: translate(-30px, 50px) scale(1);
    }
}

/* Optional: Gradient text for “Coming Soon” */
.gradient-text {
    font-weight: 600;
    background: linear-gradient(90deg, #DE0F0F, #FF7B2C,#FAA300, #FFE7BB);
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: shine 3s infinite ease-in-out;
    background-size: 200%;
}

@keyframes shine {
    0%, 100% { background-position: 0% 50%;}
    50% { background-position: 100% 50%;}
}