    /* Custom styles for Bailey Creek Campground */

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

    /* Selection color */
    ::selection {
        background-color: rgba(251, 191, 36, 0.3);
        color: #FBBF24;
    }

    /* Scrollbar styling */
    ::-webkit-scrollbar {
        width: 8px;
    }
    ::-webkit-scrollbar-track {
        background: #1A0A22;
    }
    ::-webkit-scrollbar-thumb {
        background: #5B2C6F;
        border-radius: 4px;
    }
    ::-webkit-scrollbar-thumb:hover {
        background: #7E22CE;
    }

    /* Reveal animations (progressive enhancement) */
    .reveal {
        opacity: 1;
        transform: translateY(0);
        transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }

    /* Mobile menu animations */
    #mobileMenu {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    #mobileMenu.open {
        max-height: 400px;
    }

    /* Mobile link animation */
    .mobile-link {
        opacity: 0;
        transform: translateX(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, color 0.2s ease;
    }
    #mobileMenu.open .mobile-link {
        opacity: 1;
        transform: translateX(0);
    }
    #mobileMenu.open .mobile-link:nth-child(1) { transition-delay: 0.05s; }
    #mobileMenu.open .mobile-link:nth-child(2) { transition-delay: 0.1s; }
    #mobileMenu.open .mobile-link:nth-child(3) { transition-delay: 0.15s; }
    #mobileMenu.open .mobile-link:nth-child(4) { transition-delay: 0.2s; }
    #mobileMenu.open .mobile-link:nth-child(5) { transition-delay: 0.25s; }

    /* Navbar glass effect */
    #navbar.scrolled {
        background: rgba(26, 10, 34, 0.92);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border-bottom: 1px solid rgba(91, 44, 111, 0.3);
    }

    /* Floating cards animation */
    @media (prefers-reduced-motion: no-preference) {
        .absolute.top-28.left-0 {
            animation: float1 6s ease-in-out infinite;
        }
        .absolute.bottom-20.right-8 {
            animation: float2 7s ease-in-out infinite;
        }
        .absolute.bottom-0.left-8 {
            animation: float3 5s ease-in-out infinite;
        }
    }

    @keyframes float1 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-12px); }
    }
    @keyframes float2 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-8px); }
    }
    @keyframes float3 {
        0%, 100% { transform: translateY(0px); }
        50% { transform: translateY(-10px); }
    }

    /* Custom select dropdown arrow */
    select {
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239333EA' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 1rem center;
        padding-right: 2.5rem;
    }

    /* Focus visible for accessibility */
    a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
        outline: 2px solid #FBBF24;
        outline-offset: 2px;
        border-radius: 4px;
    }
