/* Custom styles and overrides */

html {
    scroll-behavior: smooth;
}

/* Ensure all content is visible by default - no hidden reveal animations */
body {
    opacity: 1;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f5f5f4;
}
::-webkit-scrollbar-thumb {
    background: #d1d1d4;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #ababaf;
}

/* Selection color */
::selection {
    background: #ff6b52;
    color: white;
}

/* Smooth image loading */
img {
    background-color: #e8e8e9;
}

/* Mobile menu transitions */
#mobile-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
#mobile-menu.active {
    max-height: 400px;
}

/* Focus visible for accessibility */
*:focus-visible {
    outline: 2px solid #ff6b52;
    outline-offset: 2px;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Service card hover glow */
.group:hover .w-16 {
    box-shadow: 0 0 20px rgba(255, 107, 82, 0.3);
}
