/* Custom Styles for 301 Auto Sales */

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

/* Marquee Animation */
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.animate-marquee {
    animation: marquee 20s linear infinite;
}

.animate-marquee:hover {
    animation-play-state: paused;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

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

::-webkit-scrollbar-thumb {
    background: #047857;
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: #064e3b;
}

/* Form Focus States */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(4, 120, 87, 0.2);
}

/* Mobile Menu Transition */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

#mobile-menu.open {
    max-height: 400px;
    transition: max-height 0.5s ease-in;
}

/* Image Hover Zoom */
img {
    max-width: 100%;
    height: auto;
}

/* Utility for hard shadow offset */
.shadow-hard {
    box-shadow: 8px 8px 0px 0px rgba(4, 120, 87, 1);
}

.shadow-hard-hover {
    box-shadow: 12px 12px 0px 0px rgba(4, 120, 87, 1);
}
