/* Custom Styles for RB Donuts */

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

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Navbar Glassmorphism */
.nav-scrolled {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

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

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

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

/* Image Hover Effects */
img {
    max-width: 100%;
    height: auto;
}

/* Selection Color */
::selection {
    background: #E8A87C;
    color: #fff;
}
