/* Custom Styles for Artie's Auto Place */

/* Smooth scroll behavior handled by Tailwind, but adding fallback */
html {
    scroll-behavior: smooth;
}

/* Custom Selection Color */
::selection {
    background-color: #800020; /* Brand Burgundy */
    color: white;
}

/* Subtle animation for fade-in elements */
.fade-in-up {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Navbar transition class */
.nav-scrolled {
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

/* Asymmetric image hover effect */
.hover-rotate:hover {
    transform: rotate(0deg) scale(1.02);
}

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

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

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

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