/* style.css */
@import 'tailwindcss';

html {
    scroll-behavior: smooth;
}

body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-up {
    animation: fadeInUp 1s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

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

/* Navbar Scrolled State for White Premium Theme */
.navbar-scrolled {
    box-shadow: 0 10px 40px -10px rgba(0, 0, 0, 0.08);
}
.navbar-scrolled #nav-container {
    height: 5.5rem !important;
}
.navbar-scrolled img {
    height: 3rem !important;
}
