@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');

/* Base Styles */
body {
    background-color: #cfe2ce;
    color: #1A202C;
    font-family: 'Montserrat', sans-serif;
    -webkit-font-smoothing: antialiased;
}

/* Scroll Behavior */
html {
    scroll-behavior: smooth;
}

/* Animations */
@keyframes float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

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

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

/* Intersection Observer Animation Classes */
.animate-on-scroll {
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    /* Smoother bezier */
    opacity: 0;
    transform: translateY(20px);
    will-change: transform, opacity;
    /* Optimization */
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* Utility / Helpers that were previously in tailwind config but good to have as standard CSS fallbacks or specific overrides */
.shadow-glass {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.07);
}

.shadow-glass-hover {
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

.shadow-glow-orange {
    box-shadow: 0 10px 20px -5px rgba(249, 115, 22, 0.4);
}

.shadow-glow-blue {
    box-shadow: 0 10px 20px -5px rgba(59, 130, 246, 0.4);
}