/* Custom Styles for Redline Motors */

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #991B1B;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #7F1D1D;
}

/* Utility for image aspect ratios to prevent layout shift */
img {
    max-width: 100%;
    height: auto;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}

/* Subtle hover lift for service cards */
.group:hover {
    transform: translateY(-5px);
}
