/* Custom styles for Deep River Camp */

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

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

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

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

::-webkit-scrollbar-thumb:hover {
    background: #7A2830;
}

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

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

/* Navigation scroll effect */
nav.scrolled {
    background: rgba(253, 251, 249, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(88, 27, 34, 0.1);
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Image hover effects */
.group:hover .group-hover\:scale-105 {
    transform: scale(1.05);
}

/* Button focus states */
button:focus, a:focus {
    outline: 2px solid #581B22;
    outline-offset: 2px;
}

/* Form focus states */
input:focus, textarea:focus {
    box-shadow: 0 0 0 3px rgba(88, 27, 34, 0.1);
}
