@tailwind base;
@tailwind components;
@tailwind utilities;

/* Custom Styles complementing Tailwind */

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Form Styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(242, 152, 40, 0.1);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: all 0.3s ease-in-out;
}

/* Hero Gradient Overlay */
.hero-overlay {
    background: linear-gradient(90deg, rgba(0,94,128,0.9) 0%, rgba(0,94,128,0.7) 50%, rgba(0,94,128,0.4) 100%);
}
