/* Custom styles to complement Tailwind */
html {
    scroll-behavior: smooth;
}

body {
    /* Custom soft background color */
    background-color: #f5f3f7;
}

/* Subtle animation for the hero image floating card */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.floating-card {
    animation: float 4s ease-in-out infinite;
}

/* Focus styles for accessibility */
button:focus, input:focus, select:focus, textarea:focus {
    outline: none;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f5f3f7;
}
::-webkit-scrollbar-thumb {
    background: #d1c8d8;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #b09fb8;
}
