/* Custom Styles for Sam's Smoke and Vape */
html {
    scroll-behavior: smooth;
}

body {
    background-color: #FFF8F4;
}

/* Custom Animation for floating card */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

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

/* Smooth transition for navbar */
.nav-scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #521e2b;
}
