/* Custom styles for Black Canyon Gulch LLC */

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

/* Custom animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Apply animations */
.animate-float {
    animation: float 3s ease-in-out infinite;
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* Intersection Observer animations */
.observe-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* Staggered animation delays */
.observe-animate.delay-100 { transition-delay: 100ms; }
.observe-animate.delay-200 { transition-delay: 200ms; }
.observe-animate.delay-300 { transition-delay: 300ms; }
.observe-animate.delay-400 { transition-delay: 400ms; }
.observe-animate.delay-500 { transition-delay: 500ms; }

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

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

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

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

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

/* Image optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Print styles */
@media print {
    nav, button, form {
        display: none;
    }
    
    body {
        color: #000;
        background: #fff;
    }
}
