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

body {
    background-color: #FFFCF2; /* Sand-light */
}

/* Custom scrollbar for webkit */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F4EBC1;
}
::-webkit-scrollbar-thumb {
    background: #E07A5F;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #C9184A;
}

/* Animation for hero elements */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

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

/* Utility to ensure navbar is readable over gradient */
.nav-scrolled {
    background-color: rgba(255, 252, 242, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}
