/* Custom Styles for Spring Street Auto Inc */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #051610;
    color: #fdfbf7;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #051610;
}
::-webkit-scrollbar-thumb {
    background: #064e3b;
    border: 1px solid #d4af37;
}
::-webkit-scrollbar-thumb:hover {
    background: #d4af37;
}

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

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

/* Input Autofill Style Override for Dark Theme */
input:-webkit-autofill,
input:-webkit-autofill:hover, 
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
textarea:-webkit-autofill:hover,
textarea:-webkit-autofill:focus {
    -webkit-text-fill-color: #fdfbf7;
    -webkit-box-shadow: 0 0 0px 1000px #064e3b inset;
    transition: background-color 5000s ease-in-out 0s;
}

/* Selection Color */
::selection {
    background: #d4af37;
    color: #051610;
}
