/* Custom Styles for Mio Pond State Forest Campground */

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

/* Custom Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(40px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

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

.animate-fade-in-right {
    animation: fadeInRight 0.8s ease-out forwards;
}

.delay-200 {
    animation-delay: 0.2s;
}

/* Gold Metallic Gradient Text Helper */
.text-gold-metallic {
    color: #d4af37;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #0f172a;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #14b8a6;
}

/* Mobile Menu Transition */
#mobile-menu {
    transition: opacity 0.3s ease-in-out, visibility 0.3s ease-in-out;
}

#mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

#mobile-menu.closed {
    opacity: 0;
    visibility: hidden;
}

/* Input Focus Styles */
input:focus, select:focus, textarea:focus {
    box-shadow: 0 0 0 2px rgba(20, 184, 166, 0.2);
}

/* Image Aspect Ratio Utilities */
img {
    max-width: 100%;
    height: auto;
}
