/* Custom styles for Moose Point Camps */

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

/* Navbar scroll effect */
#navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #6b1a3b;
}

/* Animation classes (progressive enhancement) */
.animate-on-scroll {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

/* Reduced motion preference */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
    
    .animate-bounce {
        animation: none;
    }
    
    img, .group-hover\:scale-110:hover img {
        transition: none;
    }
}

/* Print styles */
@media print {
    #navbar, .animate-bounce {
        display: none;
    }
}
