/* ============================================
   Pacific Lumber & Truss - Animations
   ============================================ */

/* Fade In Up */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.fadeInUp {
    animation: fadeInUp 0.6s ease-out;
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Shrink on hover */
.animation-shrink {
    transition: transform 0.3s ease;
}
.animation-shrink:hover {
    transform: scale(0.95);
}

/* Sink on hover */
.animation-sink {
    transition: transform 0.3s ease;
}
.animation-sink:hover {
    transform: translateY(4px);
}

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