/* Custom styles that extend Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    /* Prevent layout shift on mobile by setting base font size if needed */
    font-feature-settings: "cv02", "cv03", "cv04", "cv11";
}

/* Custom animation for hero elements */
@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;
}

/* Soft shadow for cards */
.card-soft {
    box-shadow: 0 10px 40px -10px rgba(0,0,0,0.05);
}

/* Hide scrollbar for clean look in specific containers if needed */
.no-scrollbar::-webkit-scrollbar {
    display: none;
}
.no-scrollbar {
    -ms-overflow-style: none;
    scrollbar-width: none;
}
