/* Custom Styles & Animations */

html {
    scroll-behavior: smooth;
}

body {
    /* Custom font setup via Tailwind, but ensuring base styles */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Custom Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f9f5f7;
}

::-webkit-scrollbar-thumb {
    background: #d6b3bb;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ab6977;
}

/* Subtle hover effects for images */
img {
    transition: transform 0.5s ease;
}

/* Form focus styles */
input:focus, select:focus, textarea:focus {
    outline: none;
}
