/* Custom Styles for Downtown Garage */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #0d9488;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #0f766e;
}

/* Geometric Pattern Animation */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 4s ease-in-out infinite;
}

/* Text Selection Color */
::selection {
    background: #0d9488;
    color: white;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Service Card Hover Effects */
.group:hover .group-hover\:bg-dg-teal {
    background-color: #0d9488;
}
.group:hover .group-hover\:text-white {
    color: white;
}

/* Responsive Typography Adjustments */
@media (max-width: 768px) {
    .font-display {
        font-size: 2.5rem;
    }
}
