/* Custom Styles for DG Detailing */

html {
    scroll-behavior: smooth;
}

body {
    background-color: #fdfcf8; /* cream-50 */
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #2d5733; /* forest-600 */
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #224427; /* forest-700 */
}

/* Animation Utilities */
.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
    opacity: 0;
    transform: translateY(20px);
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Form focus styles */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 4px rgba(45, 87, 51, 0.1);
}
