/* Custom Styles for Bear Hollow Camp */

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

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: #0F766E;
    border-radius: 5px;
}
::-webkit-scrollbar-thumb:hover {
    background: #14B8A6;
}

/* Geometric Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

.animate-float {
    animation: float 6s ease-in-out infinite;
}

/* Mobile Menu Transitions */
#mobile-menu {
    transition: transform 0.3s ease-in-out;
}

/* Hover Effects for Cards */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

/* Geometric Background Elements */
.geometric-shape {
    position: absolute;
    z-index: -1;
}

/* Utility for the geometric aesthetic */
.border-geometric {
    border: 3px solid #0F766E;
    box-shadow: 8px 8px 0px #1E293B;
}

.border-geometric:hover {
    box-shadow: 4px 4px 0px #1E293B;
    transform: translate(4px, 4px);
}
