/* Custom Styles for Caddyshack Inn */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #f5f5f4;
}
::-webkit-scrollbar-thumb {
    background: #d6d3d1;
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: #a8a29e;
}

/* Animation Utilities */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar Transition */
.nav-scrolled #nav-bg {
    opacity: 1;
}
.nav-scrolled #nav-logo {
    color: #1c1917; /* stone-900 */
    mix-blend-mode: normal;
}

/* Form Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 1px #db2777;
}
