/* 
 * Custom Styles for Mark Orr Real Estate
 * Additional utility classes and animation overrides
 */

html {
    scroll-behavior: smooth;
}

body {
    /* Prevent horizontal scroll */
    overflow-x: hidden;
}

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

::-webkit-scrollbar-track {
    background: #05101C;
}

::-webkit-scrollbar-thumb {
    background: #112240;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #4DB6AC;
}

/* Animation Utilities */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Asymmetric Layout Tweaks */
@media (min-width: 1024px) {
    .lg\:col-span-5 {
        margin-top: 4rem;
    }
}

/* Image Hover Effects */
img {
    will-change: transform;
}

/* Form Focus States */
input:focus, textarea:focus {
    outline: none;
    box-shadow: 0 1px 0 0 #4DB6AC;
}

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

#mobile-menu.open {
    transform: translateX(0);
}

#mobile-menu.closed {
    transform: translateX(100%);
}
