/* Custom Styles for Bub's BBQ */

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

/* Geometric Clip Paths */
.clip-path-slant {
    clip-path: polygon(10% 0, 100% 0, 90% 100%, 0% 100%);
}

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

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

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

::-webkit-scrollbar-thumb {
    background: #C04838;
    border-radius: 6px;
}

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

/* Utility for image aspect ratio override */
img {
    max-width: 100%;
    height: auto;
}
