/* Custom Styles for Gordon's Roofing */

html {
    scroll-behavior: smooth;
}

/* Smooth fade-in animation for elements */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

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

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

::-webkit-scrollbar-thumb {
    background: #2C2C2C;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #E07A5F;
}

/* Form Input Focus Styles */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(224, 122, 95, 0.2);
}

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