/* Custom Styles for Daniels Collision Center */

html {
    scroll-behavior: smooth;
}

body {
    /* Fallback background if Tailwind fails to load */
    background-color: #fdf4fc;
}

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

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translate3d(0, -40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

.fade-in-down {
    animation: fadeInDown 0.8s ease-out forwards;
}

/* Stagger animations for hero elements */
.fade-in-up {
    animation-delay: 0.2s;
}
.fade-in-down {
    animation-delay: 0s;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #fdf4fc;
}
::-webkit-scrollbar-thumb {
    background: #a13263;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #80254e;
}
