/* 
    Custom Styles for Hollow Mountain ATV RV Campground
    Complementary to Tailwind CSS
*/

html {
    scroll-behavior: smooth;
}

body {
    /* Subtle texture or solid color handled by Tailwind bg-sand */
}

/* 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;
}

/* Asymmetric Image Shape override for specific browsers if needed */
.rounded-t-[200px] {
    border-top-left-radius: 200px;
    border-top-right-radius: 200px;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

/* Form Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(128, 0, 32, 0.1);
}

/* Hero Image Stack Z-Index */
.lg\:order-2 {
    z-index: 10;
}

/* Gradient Text Utility (if needed elsewhere) */
.text-gradient {
    background: linear-gradient(to right, #800020, #9d174d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
