/* Custom Styles for Morris Team Website */

html {
    scroll-behavior: smooth;
}

body {
    /* Prevent horizontal scroll if any element slightly overflows */
    overflow-x: hidden;
}

/* Custom scrollbar for webkit browsers */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #F8FAFC;
}
::-webkit-scrollbar-thumb {
    background: #0F172A;
}
::-webkit-scrollbar-thumb:hover {
    background: #2DD4BF;
}

/* Animation Utility Classes */
.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 Hero Image Tilt */
@media (min-width: 1024px) {
    .hero-image-tilt {
        transform: rotate(2deg);
        transition: transform 0.5s ease;
    }
    .hero-image-tilt:hover {
        transform: rotate(0deg);
    }
}

/* Form Focus Styles */
input:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(45, 212, 191, 0.2);
}
