body {
    font-family: 'Inter', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Only H1 gets the Serif font */
h1 {
    font-family: 'Playfair Display', serif;
}

/* All other headings reset to Sans */
h2, h3, h4, h5, h6 {
    font-family: 'Inter', sans-serif;
}

/* Custom Glass Border Effect */
.hero-glass-border {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 
        0 20px 25px -5px rgba(0, 0, 0, 0.05), 
        0 8px 10px -6px rgba(0, 0, 0, 0.01),
        inset 0 0 0 1px rgba(255, 255, 255, 0.5); /* Inner light border */
}

.gradient-text {
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    background-image: linear-gradient(90deg, #4f46e5, #ec4899);
}



html {
    scroll-behavior: smooth;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 1s ease-out forwards;
}

.animate-fade-in-right {
    animation: fadeInRight 1s ease-out forwards;
}
