/* Custom Styles for RedFish Condominiums */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fdf4f6;
}
::-webkit-scrollbar-thumb {
    background: #db788e;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a8364e;
}

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

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

/* Utility for text gradient if needed */
.text-gradient {
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Form Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(194, 74, 102, 0.1);
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Geometric Decor Elements */
.geometric-shape {
    position: absolute;
    z-index: 0;
}
