/* Custom Styles for C J's Lakeview Resort */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #F9F9F7; /* Brand Cream */
}

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

/* Gradient Text Utility */
.text-gradient {
    background: linear-gradient(to right, #FF6B6B, #FF8E8E);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Focus Styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(255, 107, 107, 0.2);
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
